Modding Help Custom Dungeon Question [SOLVED]

Discussion in 'Starbound Modding' started by projectmayhem, May 29, 2017.

  1. projectmayhem

    projectmayhem Spaceman Spiff

    Is it possible to "force" a dungeon/microdungeon to spawn? Trying to test out my imperial base and wookie watchtower.

    Do you have to make a new character for it to generate them on planets? Or just visit new planets?

    I set a pretty high weight for them, but still can't get them to spawn.


    Code:
    [
      {
        "op": "add",
        "path": "/planetTypes/garden/layers/surface/dungeons/-",
        "value": [
          10,
          "imperialbase"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/forest/layers/surface/dungeons/-",
        "value": [
          30,
          "imperialbase"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/desert/layers/surface/dungeons/-",
        "value": [
          20,
          "imperialbase"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/savannah/layers/surface/dungeons/-",
        "value": [
          20,
          "imperialbase"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/snow/layers/surface/dungeons/-",
        "value": [
          20,
          "imperialbase"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/jungle/layers/surface/dungeons/-",
        "value": [
          20,
          "imperialbase"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/tundra/layers/surface/dungeons/-",
        "value": [
          20,
          "imperialbase"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/midnight/layers/surface/dungeons/-",
        "value": [
          20,
          "imperialbase"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/volcanic/layers/surface/dungeons/-",
        "value": [
          20,
          "imperialbase"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/scorchedcity/layers/surface/dungeons/-",
        "value": [
          20,
          "imperialbase"
        ]
      },
     
     
     
     
     
      {
        "op": "add",
        "path": "/planetTypes/garden/layers/surface/dungeons/-",
        "value": [
          10,
          "wookiewatchtower"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/forest/layers/surface/dungeons/-",
        "value": [
          4,
          "wookiewatchtower"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/desert/layers/surface/dungeons/-",
        "value": [
          20,
          "wookiewatchtower"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/savannah/layers/surface/dungeons/-",
        "value": [
          20,
          "wookiewatchtower"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/snow/layers/surface/dungeons/-",
        "value": [
          20,
          "wookiewatchtower"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/jungle/layers/surface/dungeons/-",
        "value": [
          5,
          "wookiewatchtower"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/tundra/layers/surface/dungeons/-",
        "value": [
          20,
          "wookiewatchtower"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/midnight/layers/surface/dungeons/-",
        "value": [
          20,
          "wookiewatchtower"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/volcanic/layers/surface/dungeons/-",
        "value": [
          20,
          "wookiewatchtower"
        ]
      },
      {
        "op": "add",
        "path": "/planetTypes/scorchedcity/layers/surface/dungeons/-",
        "value": [
          20,
          "wookiewatchtower"
        ]
      }
    ]
     
  2. Nexus Of Chaos

    Nexus Of Chaos Parsec Taste Tester

    it has to be new planets, unless visiting the dungeon is only available through a mission, then it is tied to a quest giver or player progression
     
  3. Cyel

    Cyel Scruffy Nerf-Herder

    Code:
    /spawndungeon imperialbase
    ?

    The game will generate new planets with the current rules as you explore parts of the starmap you haven't seen before (the "loading"/"scanning" thingy), you don't need to make a new character
     
  4. projectmayhem

    projectmayhem Spaceman Spiff

    hmm weird. I dont know why i cant get them to spawn then.
     
  5. bk3k

    bk3k Oxygen Tank

    It is actually
    Code:
    /placedungeon imperialbase
    
    I find help.config to be very helpful
     
    projectmayhem likes this.
  6. projectmayhem

    projectmayhem Spaceman Spiff

    I got this error, but looking at my JSON I can't tell which object is rotated.

    ERROR LOG

    Code:
    [13:19:52.159] [Error] UniverseServer: exception caught: (DungeonException) Error loading dungeon '/dungeons/imperialbase/imperialbase1.dungeon': (StarException) At 163,82: object is rotated, which is not supported
    [0] 13f8b3d13 Star::captureStack
    [1] 13f8b2a9e Star::StarException::StarException
    [2] 13f9a9a2a Star::DungeonException::format<Star::String,Star::OutputProxy>
    [3] 140182fee `Star::DungeonDefinitions::readDefinition'::`1'::catch$73
    [4] 7fef9cec220 _C_specific_handler
    [5] 7fef9ce29b2 _FrameUnwindFilter
    [6] 76e0b681 RtlRestoreContext
    [7] 13f9c2854 Star::DungeonDefinitions::readDefinition
    [8] 13f9b216a <lambda_475708549715a500cc90681f474fe533>::operator()
    [9] 13f9a9eb1 Star::LruCacheBase<Star::OrderedMapWrapper<std::unordered_map,Star::String,std::shared_ptr<Star::DungeonDefinition>,Star::BlockAllocator<std::pair<Star::String const ,std::shared_ptr<Star::DungeonDefinition> >,1024>,Star::hash<Star::String,void>,std::equal_to<Star::String> > >::get<<lambda_475708549715a500cc90681f474fe533> >
    [10] 13f9bdb44 Star::DungeonDefinitions::get
    [11] 13f9af889 Star::DungeonGenerator::DungeonGenerator
    [12] 13fdffcd7 Star::WorldServer::forcePlaceDungeon
    [13] 13f97e1df <lambda_661ef65b91e1a01f03ecce1ce22b1b86>::operator()
    [14] 13fd275eb std::_Func_class<void,Star::WorldServer * __ptr64,std::shared_ptr<Star::Player> >::operator()
    [15] 13fd22c1e <lambda_20f0259dbef9ecda253d6c189a402755>::operator()
    [16] 13fe13cff Star::WorldServerThread::executeAction
    [17] 13fd32ee1 Star::UniverseServer::executeForClient
    [18] 13f984204 Star::CommandProcessor::placeDungeon
    [19] 13f98274c Star::CommandProcessor::handleCommand
    [20] 13f987d87 Star::CommandProcessor::userCommand
    [21] 13fd1342b std::_Invoker_pmf_pointer::_Call<Star::String (__cdecl Star::CommandProcessor::*)(unsigned short,Star::String const & __ptr64,Star::String const & __ptr64) __ptr64,Star::CommandProcessor * __ptr64 & __ptr64,unsigned short,Star::String,Star::String>
    [22] 13fd1942d std::invoke<Star::String (__cdecl Star::CommandProcessor::*& __ptr64)(unsigned short,Star::String const & __ptr64,Star::String const & __ptr64) __ptr64,Star::CommandProcessor * __ptr64 & __ptr64,unsigned short,Star::String,Star::String>
    [23] 13fd1585b std::_Invoke_ret<Star::String (__cdecl Star::CommandProcessor::*& __ptr64)(unsigned short,Star::String const & __ptr64,Star::String const & __ptr64) __ptr64,Star::CommandProcessor * __ptr64 & __ptr64,unsigned short,Star::String,Star::String>
    [24] 13fd1349a std::_Call_binder<std::_Unforced,0,1,2,3,Star::String (__cdecl Star::CommandProcessor::*)(unsigned short,Star::String const & __ptr64,Star::String const & __ptr64) __ptr64,std::tuple<Star::CommandProcessor * __ptr64,std::_Ph<1>,std::_Ph<2>,std::_Ph<3> >,std::tuple<unsigned short && __ptr64,Star::String && __ptr64,Star::String && __ptr64> >
    [25] 13fd12d3f std::_Binder<std::_Unforced,Star::String (__cdecl Star::CommandProcessor::*)(unsigned short,Star::String const & __ptr64,Star::String const & __ptr64) __ptr64,Star::CommandProcessor * __ptr64,std::_Ph<1> const & __ptr64,std::_Ph<2> const & __ptr64,std::_Ph<3> const & __ptr64>::operator()<unsigned short,Star::String,Star::String>
    [26] 13fd133c9 std::_Invoker_functor::_Call<std::_Binder<std::_Unforced,Star::String (__cdecl Star::CommandProcessor::*)(unsigned short,Star::String const & __ptr64,Star::String const & __ptr64) __ptr64,Star::CommandProcessor * __ptr64,std::_Ph<1> const & __ptr64,std::_Ph<2> const & __ptr64,std::_Ph<3> const & __ptr64> & __ptr64,unsigned short,Star::String,Star::String>
    [27] 13fd194e0 std::invoke<std::_Binder<std::_Unforced,Star::String (__cdecl Star::CommandProcessor::*)(unsigned short,Star::String const & __ptr64,Star::String const & __ptr64) __ptr64,Star::CommandProcessor * __ptr64,std::_Ph<1> const & __ptr64,std::_Ph<2> const & __ptr64,std::_Ph<3> const & __ptr64> & __ptr64,unsigned short,Star::String,Star::String>
    [28] 13fd1595e std::_Invoke_ret<Star::String,std::_Binder<std::_Unforced,Star::String (__cdecl Star::CommandProcessor::*)(unsigned short,Star::String const & __ptr64,Star::String const & __ptr64) __ptr64,Star::CommandProcessor * __ptr64,std::_Ph<1> const & __ptr64,std::_Ph<2> const & __ptr64,std::_Ph<3> const & __ptr64> & __ptr64,unsigned short,Star::String,Star::String>
    [29] 13fd28d0b std::_Func_impl<std::_Binder<std::_Unforced,Star::String (__cdecl Star::CommandProcessor::*)(unsigned short,Star::String const & __ptr64,Star::String const & __ptr64) __ptr64,Star::CommandProcessor * __ptr64,std::_Ph<1> const & __ptr64,std::_Ph<2> const & __ptr64,std::_Ph<3> const & __ptr64>,std::allocator<int>,Star::String,unsigned short,Star::String,Star::String>::_Do_call
    [30] 13f95f6e6 std::_Func_class<Star::String,unsigned short,Star::String,Star::String>::operator()


    Here is the dungeon JSON file


    Code:
    { "backgroundcolor":"#000000",
    "height":159,
    "layers":[
            {
             "compression":"zlib",
             "data":"eJzt3EFu20YYhmFdpcussvM5ii56iJ7BQL3pbXKr5iCBYAtmVcumRuR8\/3CeAA8CB5LDaOZ\/Q9qif55Op58AAAAAAADA7v4dXPr1A2pIt6i69PoA90t3YwbpNYbZpRuALkIv6dlGE6GX9Nyii9BTeiapI70XoZf0rFFfeo\/C1tIzxdjS+xfulZ4Zji29v+Ej6blgLun9DukZgLP0HDCX9H6HW9KzwXGk9zK0Ss8O40rvXdhaeqaoK703oYf0nFFLej9CQnru0D1ISs8gegdJ6blE8yAtPavoHqSlZxftg5T0\/KJ5CT88joX0TKN7vXw7vfbg2wpHe1z6ta8sPd9oXi\/Vz8Oc\/2Wk5538Hji6fyaWfu1HkJ7\/GaXXfBaXDqy5ZjwaDbxPuglHll7bGS3Pg36c1p0vHfVx6bUYRboTR5Nez1lV7VDycek1GUW6GSNLrx31O5R8XHptRpHuyIjSazaTNQ2o3KEqj9PG29I9GU16vWZxmdf09xeORAM\/lm7KSNJrNYNHz3H4+lwxvcaVpJsykvRaHd2tuf1Os1v\/j6TXupJ0V0aRXqcj++y85fn0\/7n+6M++cn7OU+Nze3jk+N6e87L0fLrdPw38r3RbRpBeo6P66rrt+fTehqfFx7\/dadmXe5\/bwyPH9\/aavDy9eV7RPw18l27LCNJrdERrvm6lf\/v1TwPfpftSXXp9jmbt1+31b9\/+aeCrdF+qS6\/Pnu79eSItP39k+Zx7vm+pf\/v3TwNfpRtTWXpt9nJ+f9janzv3rfHxy+fc+74N\/evTPw3MN6ay9Nrsqdf5X8v71rbq3\/L7penWbX18W\/Vv9gamG1NZem32cs9s9LTH+d\/3xuf2Ov9rPb4t+6eBzNK\/y35P35\/12X1b+te\/fzM3MN2ZqtLrslf7WmakZabS17\/6p4H6p3\/X7dO\/Gir2TwM5Wv+2bFOv\/m11\/1vrc3vd\/\/bgv+2u+980UP9m69\/WbUr2r+XcqrWfl3POP67c+rOWz7\/lv+\/yObbqnwaSXo+t2tfy3r0K3\/+4utZruT5svn5u6V\/g+F4WH296\/jdjA9O9qSa9Hlu0b1TX\/ev99bXL89f2L3R8u\/dvpgame1NNej0ebd\/vg7icny5\/1786\/ZulgeneVJNej0fal76ObblPTv\/q9m+GBqZ7U016PVrb1zJLZ+e5+fMLWz5m+ffqX\/3+Hb2B6d5Uk16Pnu3TP\/3TwHxzKkmvxVrnX\/qnf736d+QGpptTSXot1rj0Qv\/0r2f\/jtrAdHMqSa\/Fmvbpn\/6l+nfEBqabU0l6Lda076j9S99fVv3+t+t737a+\/23WBqabU8ner3XLzxS9bp\/+sexpon89GthzbtPdqaJi\/z57\/9yobl3\/Pm1gq8+z\/Hx\/FbE4rpfU9e+eDUzNbro7VVTr32f9SN\/Dscf9H+m+jCbdv60amJ7hdHeq2Lt\/n0nt30rSPRnN5XVL9q+1gZVmOd2dKtLtG\/269lHpnowmvV7L7o7SmorHVIXzPud\/I0mv19rzwPRcfzXr6WOpYqum9TjW9F7Xv7y\/C6zZxflY0vPbOvPpY6iicu+upfe7\/uXpH1uq3Ltr6f2uf3n6x5ZG6N5Fer\/rX57+Mav0fte\/PP1jVun9rn95+ses0vtd\/\/L0j1ml97v+5ekfs0rv971mKOHe5lSSXjP9IyG93\/eQPp8ajf4xq\/R+1788\/WNW6f2uf3n6x6zS+13\/8vSPWaX3u\/7l6R+zSu93\/cvTP2aV3u\/6l6d\/zCq93\/UvT\/+YVXq\/61+e\/jGr9H7Xvzz9Y1bp\/a5\/efrHrNL7Xf\/y9I9Zpfe7\/uXpH7NK73f9y9M\/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARvQLZMkblw==",
             "encoding":"base64",
             "height":159,
             "name":"back",
             "opacity":0.5,
             "type":"tilelayer",
             "visible":true,
             "width":320,
             "x":0,
             "y":0
            },
            {
             "compression":"zlib",
             "data":"eJzt3EGO00AQQNFchxU7TsdiNtyG4yDlAFyEaWksLMtJbMfd1e56TyoxoElkh\/bHg+PcbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABATX8+51fi+fP+Swhc0Lx93xKOBkJOy\/O+37f\/LXg0I36fBkIuaz\/zRncoun8aCON79P990R3qoX8aCNf3qHHPJrpDvfTPtRK4rnn7oq8vjDQaCH1bnvcdOccxj8+NNRD6tPYz73TcfjeH59G\/IxoIfXh1TePn5\/xdzNqfPZv712N+fP163\/n42vPO9k2P\/fz6Yz4\/b4\/7p4EQ79m1jjP7Nz3mx8HHtph3tu9I\/zQQ4ry6zqt\/9fungdDelve46F+b\/mkgtLP1\/X36165\/Ggj17Xlvs\/617Z8GQj177+s4u3\/z94VEt+7s7TurfxpIJkfuNWs1Z\/dv5DmzfxpIBle410z\/YvqngYzs0b1mz+6733uf\/juPcf4X3z8NZETP7jXTv\/W5Vf7+XvungYzk1b1m+qd\/GshoyjGy5V6zXvu3vK9\/ukd26yyfY+05I2dt+97Zv+k5zuqfBnJVy\/aV4yH6usbe6x9rx\/uW86LpcwSWz7G3L7Vnbfvm27\/l\/O\/zez\/mc3b\/NJCreXXed5U58jNhb5\/xcnSO7keN\/mkgVzJvX\/RxfIVm9DpH9qdW\/zSQK9C+sWbvftXsnwbSM+0bc\/bsX+3+aSA90r6xZ881kdr900B6FX2c9tiEUWbL\/rbqnwbSWvTx19Nka9\/W\/W7ZPw2kpehjr5fJ2r4t+9+6fxpIK9HHXQ+TvX2vXoeI\/mkgLUQfcy2nHE\/R96ddYdbuKYnonwZSW3STWravHE\/TZ8O\/O2c9T4fP93FbiOyfBlJTdJdatm\/qH9tFn\/9pIFuNcH9u7dG\/7e5fv\/bQPw3kmat+Lkvr0b9t7rOvy2sW+Xc2764GsuS8z\/nfme6L30\/nf72MBtJK9FrXv7aW7St66x+0Er3W9a+dtfYV+kdW0Wtd\/9p41L5C\/8gqeq3rX33P2lfoH1lFr3X9q+tV+wr9I6vota5\/9WxpX6F\/ZBW91vWvjq3tK\/SPrKLXuv6db0\/7Cv0jq+i1XqN\/vXyuyrOJ\/gyY+egfWUWv9Rr9i7T33KsH+kdW0Wt9tP4VV2ug\/pFV9FofsX\/FlRqof2QVvdZH7V9xlQbqH1lFr\/WR+1dcoYH6R1bRa330\/hW9N1D\/yCp6rWfoX9FzA\/WPrKLXepb+Fb02UP\/IKnqtZ+pf0WMD9Y+sotd6tv4VvTVQ\/8gqeq1n7F\/RUwP1j6yi13rW\/hW9NFD\/yCp6rWfuX9FDA\/WPrKLXeo3+RW\/D1aa31wwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC2+AcjirZ6",
             "encoding":"base64",
             "height":159,
             "name":"front",
             "opacity":1,
             "type":"tilelayer",
             "visible":true,
             "width":320,
             "x":0,
             "y":0
            },
            {
             "color":"#5555ff",
             "draworder":"topdown",
             "height":0,
             "name":"mods",
             "objects":[],
             "opacity":1,
             "type":"objectgroup",
             "visible":true,
             "width":0,
             "x":0,
             "y":0
            },
            {
             "color":"#ff0000",
             "draworder":"topdown",
             "height":0,
             "name":"objects",
             "objects":[
                    {
                     "gid":2097,
                     "height":16,
                     "id":793,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1496,
                     "y":448
                    },
                    {
                     "gid":2097,
                     "height":16,
                     "id":794,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1432,
                     "y":448
                    },
                    {
                     "gid":2097,
                     "height":16,
                     "id":801,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1416,
                     "y":368
                    },
                    {
                     "gid":2097,
                     "height":16,
                     "id":802,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1384,
                     "y":368
                    },
                    {
                     "gid":2097,
                     "height":16,
                     "id":803,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1704,
                     "y":368
                    },
                    {
                     "gid":2097,
                     "height":16,
                     "id":804,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1736,
                     "y":368
                    },
                    {
                     "gid":2097,
                     "height":16,
                     "id":805,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1624,
                     "y":448
                    },
                    {
                     "gid":2097,
                     "height":16,
                     "id":806,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1688,
                     "y":448
                    },
                    {
                     "gid":2097,
                     "height":16,
                     "id":807,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1824,
                     "y":368
                    },
                    {
                     "gid":2097,
                     "height":16,
                     "id":815,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1296,
                     "y":368
                    },
                    {
                     "gid":2097,
                     "height":16,
                     "id":829,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1504,
                     "y":368
                    },
                    {
                     "gid":2097,
                     "height":16,
                     "id":830,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1616,
                     "y":368
                    },
                    {
                     "gid":3021,
                     "height":32,
                     "id":916,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":32,
                     "x":1640,
                     "y":376
                    },
                    {
                     "gid":3086,
                     "height":24,
                     "id":939,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":24,
                     "x":1776,
                     "y":376
                    },
                    {
                     "gid":5648,
                     "height":16,
                     "id":1019,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1320,
                     "y":232
                    },
                    {
                     "gid":5648,
                     "height":16,
                     "id":1020,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1400,
                     "y":232
                    },
                    {
                     "gid":5648,
                     "height":16,
                     "id":1021,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1480,
                     "y":232
                    },
                    {
                     "gid":5648,
                     "height":16,
                     "id":1022,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1560,
                     "y":232
                    },
                    {
                     "gid":5648,
                     "height":16,
                     "id":1023,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1640,
                     "y":232
                    },
                    {
                     "gid":5648,
                     "height":16,
                     "id":1024,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1720,
                     "y":232
                    },
                    {
                     "gid":5648,
                     "height":16,
                     "id":1025,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1800,
                     "y":232
                    },
                    {
                     "gid":2097,
                     "height":16,
                     "id":1026,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1304,
                     "y":448
                    },
                    {
                     "gid":2097,
                     "height":16,
                     "id":1027,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1816,
                     "y":448
                    },
                    {
                     "gid":5691,
                     "height":8,
                     "id":1032,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":16,
                     "x":1080,
                     "y":448
                    },
                    {
                     "gid":4146,
                     "height":32,
                     "id":1046,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":16,
                     "x":1200,
                     "y":520
                    },
                    {
                     "gid":5648,
                     "height":16,
                     "id":1055,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":936,
                     "y":360
                    },
                    {
                     "gid":5648,
                     "height":16,
                     "id":1056,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1032,
                     "y":360
                    },
                    {
                     "gid":5648,
                     "height":16,
                     "id":1057,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1136,
                     "y":360
                    },
                    {
                     "gid":2147487794,
                     "height":32,
                     "id":1058,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":16,
                     "x":960,
                     "y":520
                    },
                    {
                     "gid":5648,
                     "height":16,
                     "id":1085,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":688,
                     "y":512
                    },
                    {
                     "gid":5888,
                     "height":8,
                     "id":1102,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":936,
                     "y":440
                    },
                    {
                     "gid":5888,
                     "height":8,
                     "id":1103,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":896,
                     "y":440
                    },
                    {
                     "gid":795,
                     "height":16,
                     "id":1108,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":24,
                     "x":1296,
                     "y":408
                    },
                    {
                     "gid":1485,
                     "height":8,
                     "id":1114,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":32,
                     "x":1640,
                     "y":456
                    },
                    {
                     "gid":1500,
                     "height":16,
                     "id":1115,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1640,
                     "y":448
                    },
                    {
                     "gid":1161,
                     "height":24,
                     "id":1117,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":24,
                     "x":1616,
                     "y":408
                    },
                    {
                     "gid":716,
                     "height":40,
                     "id":1119,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":40,
                     "x":1424,
                     "y":496
                    },
                    {
                     "gid":2147484129,
                     "height":24,
                     "id":1120,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":32,
                     "x":1632,
                     "y":408
                    },
                    {
                     "gid":627,
                     "height":39,
                     "id":1121,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":32,
                     "x":1416,
                     "y":408
                    },
                    {
                     "gid":1503,
                     "height":24,
                     "id":1122,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":16,
                     "x":1656,
                     "y":448
                    },
                    {
                     "gid":908,
                     "height":56,
                     "id":1124,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":52,
                     "x":1864,
                     "y":280
                    },
                    {
                     "gid":2147484556,
                     "height":56,
                     "id":1125,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":52,
                     "x":1216,
                     "y":280
                    },
                    {
                     "gid":2147484966,
                     "height":24,
                     "id":1126,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":62,
                     "x":1744,
                     "y":496
                    },
                    {
                     "gid":3146,
                     "height":40,
                     "id":1127,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":24,
                     "x":1328,
                     "y":384
                    },
                    {
                     "gid":5091,
                     "height":56,
                     "id":1133,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":48,
                     "x":824,
                     "y":520
                    },
                    {
                     "gid":5283,
                     "height":24,
                     "id":1140,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":56,
                     "x":1264,
                     "y":608
                    },
                    {
                     "gid":5283,
                     "height":24,
                     "id":1141,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":56,
                     "x":1264,
                     "y":584
                    },
                    {
                     "gid":5283,
                     "height":24,
                     "id":1145,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":56,
                     "x":1336,
                     "y":608
                    },
                    {
                     "gid":5283,
                     "height":24,
                     "id":1146,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":56,
                     "x":1336,
                     "y":584
                    },
                    {
                     "gid":5283,
                     "height":24,
                     "id":1147,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":56,
                     "x":1408,
                     "y":608
                    },
                    {
                     "gid":5283,
                     "height":24,
                     "id":1148,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":56,
                     "x":1408,
                     "y":584
                    },
                    {
                     "gid":3743,
                     "height":24,
                     "id":1149,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":24,
                     "x":1280,
                     "y":680
                    },
                    {
                     "gid":3698,
                     "height":39.0365995331322,
                     "id":1150,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":34.2701643855781,
                     "type":"",
                     "visible":true,
                     "width":48.9683640167834,
                     "x":1311.53295397718,
                     "y":660.426119956253
                    },
                    {
                     "gid":4155,
                     "height":40,
                     "id":1152,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":104,
                     "x":1736,
                     "y":688
                    },
                    {
                     "gid":2947,
                     "height":32,
                     "id":1154,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":24,
                     "x":1848,
                     "y":696
                    },
                    {
                     "gid":2947,
                     "height":32,
                     "id":1155,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":24,
                     "x":1688,
                     "y":696
                    },
                    {
                     "gid":2947,
                     "height":32,
                     "id":1157,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":24,
                     "x":1392,
                     "y":696
                    },
                    {
                     "gid":2947,
                     "height":32,
                     "id":1158,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":24,
                     "x":1472,
                     "y":696
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1159,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1264,
                     "y":624
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1160,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1272,
                     "y":624
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1161,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1280,
                     "y":624
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1162,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1280,
                     "y":632
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1163,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1272,
                     "y":640
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1164,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1264,
                     "y":648
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1165,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1264,
                     "y":640
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1166,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1272,
                     "y":632
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1167,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1264,
                     "y":632
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1168,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1288,
                     "y":624
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1169,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1864,
                     "y":624
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1170,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1848,
                     "y":624
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1171,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1856,
                     "y":624
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1172,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1856,
                     "y":632
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1173,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1864,
                     "y":640
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1174,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1864,
                     "y":632
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1175,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1840,
                     "y":624
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1176,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1848,
                     "y":632
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1177,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1856,
                     "y":640
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1178,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1864,
                     "y":640
                    },
                    {
                     "gid":98,
                     "height":8,
                     "id":1179,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1864,
                     "y":648
                    },
                    {
                     "height":8,
                     "id":1182,
                     "name":"",
                     "properties":
                        {
                         "npc":"human",
                         "seed":"50",
                         "typeName":"imperial"
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1744,
                     "y":592
                    },
                    {
                     "height":8,
                     "id":1183,
                     "name":"",
                     "properties":
                        {
                         "npc":"human",
                         "seed":"50",
                         "typeName":"imperial"
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1808,
                     "y":704
                    },
                    {
                     "height":8,
                     "id":1184,
                     "name":"",
                     "properties":
                        {
                         "npc":"human",
                         "seed":"50",
                         "typeName":"imperial2"
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1320,
                     "y":592
                    },
                    {
                     "height":8,
                     "id":1185,
                     "name":"",
                     "properties":
                        {
                         "npc":"human",
                         "seed":"50",
                         "typeName":"imperial2"
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1296,
                     "y":704
                    },
                    {
                     "height":8,
                     "id":1186,
                     "name":"",
                     "properties":
                        {
                         "npc":"human",
                         "seed":"50",
                         "typeName":"imperial2"
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1552,
                     "y":704
                    },
                    {
                     "gid":231,
                     "height":8,
                     "id":1187,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":736,
                     "y":440
                    },
                    {
                     "gid":231,
                     "height":8,
                     "id":1188,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1072,
                     "y":256
                    },
                    {
                     "gid":231,
                     "height":8,
                     "id":1189,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1576,
                     "y":144
                    },
                    {
                     "gid":231,
                     "height":8,
                     "id":1190,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":2072,
                     "y":288
                    }],
             "opacity":1,
             "type":"objectgroup",
             "visible":true,
             "width":0,
             "x":0,
             "y":0
            },
            {
             "color":"#ffff00",
             "draworder":"topdown",
             "height":0,
             "name":"wiring - lights & guns",
             "objects":[],
             "opacity":1,
             "type":"objectgroup",
             "visible":true,
             "width":0,
             "x":0,
             "y":0
            },
            {
             "color":"#ff0000",
             "draworder":"topdown",
             "height":0,
             "name":"monsters & npcs",
             "objects":[
                    {
                     "height":8,
                     "id":1089,
                     "name":"",
                     "properties":
                        {
                         "npc":"human",
                         "seed":"50",
                         "typeName":"imperial"
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1496,
                     "y":480
                    },
                    {
                     "height":8,
                     "id":1096,
                     "name":"",
                     "properties":
                        {
                         "npc":"human",
                         "seed":"170",
                         "typeName":"imperial2"
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1248,
                     "y":480
                    },
                    {
                     "height":8,
                     "id":1097,
                     "name":"",
                     "properties":
                        {
                         "npc":"human",
                         "seed":"50",
                         "typeName":"imperial"
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1728,
                     "y":480
                    },
                    {
                     "height":8,
                     "id":1098,
                     "name":"",
                     "properties":
                        {
                         "npc":"human",
                         "seed":"50",
                         "typeName":"imperial2"
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1720,
                     "y":392
                    },
                    {
                     "height":8,
                     "id":1099,
                     "name":"",
                     "properties":
                        {
                         "npc":"human",
                         "seed":"50",
                         "typeName":"imperial"
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1408,
                     "y":392
                    }],
             "opacity":1,
             "type":"objectgroup",
             "visible":true,
             "width":0,
             "x":0,
             "y":0
            },
            {
             "color":"#00ffff",
             "draworder":"topdown",
             "height":0,
             "name":"wiring - locked door",
             "objects":[],
             "opacity":1,
             "type":"objectgroup",
             "visible":true,
             "width":0,
             "x":0,
             "y":0
            },
            {
             "draworder":"topdown",
             "height":0,
             "name":"outside the map",
             "objects":[],
             "opacity":1,
             "type":"objectgroup",
             "visible":true,
             "width":0,
             "x":0,
             "y":0
            },
            {
             "draworder":"topdown",
             "height":0,
             "name":"anchors etc",
             "objects":[],
             "opacity":1,
             "type":"objectgroup",
             "visible":true,
             "width":0,
             "x":0,
             "y":0
            },
            {
             "draworder":"topdown",
             "height":0,
             "name":"items",
             "objects":[],
             "opacity":1,
             "type":"objectgroup",
             "visible":true,
             "width":0,
             "x":0,
             "y":0
            }],
    "nextobjectid":1191,
    "orientation":"orthogonal",
    "properties":
        {
    
        },
    "renderorder":"right-down",
    "tileheight":8,
    "tilesets":[
            {
             "firstgid":1,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/materials.json"
            },
            {
             "firstgid":191,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/supports.json"
            },
            {
             "firstgid":227,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/miscellaneous.json"
            },
            {
             "firstgid":247,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/liquids.json"
            },
            {
             "firstgid":275,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/objects-by-race\/generic.json"
            },
            {
             "firstgid":2067,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/objects-by-race\/apex.json"
            },
            {
             "firstgid":2435,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/objects-by-race\/avian.json"
            },
            {
             "firstgid":2740,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/objects-by-race\/floran.json"
            },
            {
             "firstgid":2935,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/objects-by-race\/glitch.json"
            },
            {
             "firstgid":3161,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/objects-by-race\/human.json"
            },
            {
             "firstgid":3440,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/objects-by-race\/hylotl.json"
            },
            {
             "firstgid":3671,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/objects-by-category\/decorative.json"
            },
            {
             "firstgid":5031,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/objects-by-category\/door.json"
            },
            {
             "firstgid":5148,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/objects-by-category\/furniture.json"
            },
            {
             "firstgid":5481,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/objects-by-category\/light.json"
            },
            {
             "firstgid":5902,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/objects-by-category\/pot.json"
            },
            {
             "firstgid":6199,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/objects-by-category\/storage.json"
            },
            {
             "firstgid":6420,
             "source":"..\/..\/..\/..\/assets\/packed\/tilesets\/packed\/objects-by-category\/teleporter.json"
            }],
    "tilewidth":8,
    "version":1,
    "width":320
    }


    Line 163 on notepad++ is the height line in this part of the code. Rotation 0 is the default rotation though I would assume, since every object says rotation : 0
    Code:
    {
                     "gid":2097,
                     "height":16,
                     "id":806,
                     "name":"",
                     "properties":
                        {
    
                        },
                     "rotation":0,
                     "type":"",
                     "visible":true,
                     "width":8,
                     "x":1688,
                     "y":448
                    }, 

    *EDIT*
    I found object 806, its a light. its not rotated, and if i delete it, I still get the error. I deleted everything I could find that had a rotation set to true

    *EDIT*

    Found it! It was some writing on the wall object, that wasnt "flipped", I actually rotated it a little on accident when placing it. Forced it to spawn and it loaded fine now!

    Now I just gotta get them to spawn naturally.

    *Edit*

    Ok, learned I have to patch biome files, not the terrestial file to get them to spawn naturally. Going to test it all out now, should work fine though
     
    Last edited: May 29, 2017
  7. Cyel

    Cyel Scruffy Nerf-Herder

    I keep messing it up even tho I checked a few seconds before posting it aaaa
     
    projectmayhem likes this.

Share This Page