Question TMXL example

TildenJack

Tiller
You don't need TMXL to edit the map, and not even to create new maps anymore.


So for the beach, you could make something like this

Code:
{   
     "Action": "EditMap",
     "Target": "Maps/Beach",
     "FromFile": "Maps/ZBeach.tmx",
     "ToArea": { "X": 0, "Y": 14, "Width": 12, "Height": 8},
     "PatchMode": "Replace",
     "AddWarps": [
        "-1 19 Custom_ZoroDock 29 38"
     ]
},
 

eobondarenko2

Newcomer
Code:
{
    "Format": "1.24.0",
    "Changes": [
        {
            "Action": "EditMap",
            "Target": "Maps/Beach",
            "FromFile": "assets/BeachUpdate.tmx",
            "ToArea": {
                "X": 103,
                "Y": 49,
                "Width": 104,
                "Height": 50
            },
            "PatchMode": "Replace",
            "AddWarps": [
                "-1 19 Custom_ZoroDock 29 38"
            ]
        }

    ]
}
I tried this but I didn't see changes
 
Top