7
« on: June 09, 2014, 06:32:24 am »
Hey, I need some help. I'm trying to create my first mod to adjust the Avenger's deployment, but I keep getting this error:
yaml-cpp: error at line 3, column 15: illegal map value
The code I'm trying to use follows, but I get the same error if I copy and paste out of the XCOM1Ruleset.rul file.
crafts:
- type: STR_AVENGER
deployment:
- [4, 9, 1, 0]
- [5, 9, 1, 0]
- [3, 10, 1, 0]
- [4, 10, 1, 0]
- [5, 10, 1, 0]
- [6, 10, 1, 0]
- [3, 11, 1, 0]
- [4, 11, 1, 0]
- [5, 11, 1, 0]
- [6, 11, 1, 0]
- [3, 12, 1, 0]
- [4, 12, 1, 0]
- [5, 12, 1, 0]
- [6, 12, 1, 0]
- [3, 13, 1, 0]
- [4, 13, 1, 0]
- [5, 13, 1, 0]
- [6, 13, 1, 0]
- [3, 14, 1, 0]
- [4, 14, 1, 0]
- [5, 14, 1, 0]
- [6, 14, 1, 0]
- [4, 15, 1, 0]
- [5, 15, 1, 0]
- [4, 16, 1, 0]
- [5, 16, 1, 0]
Pulling out the ":" in question allows the mod to run, but doesn't change the deployment order
Additionally, the Skyranger doesn't appear to have a deployment order defined in XCOM1Ruleset.rul. Which just seems odd.
Any ideas?