I like how Javascript saves data.
localStorage['My Important Data'] = "poodles";
• Cause objects would be probably too hard to implement, I'd like to see a Map structure similar to the Array structure. That can be stored in the array structure. So you can have an array of Maps.
Array:
Map:
myCharacterMap['positionX'] = 5
Array of maps:
var arrayOfMaps = new Array()
var characterMap = new Map()
characterMap['Name'] = "Bob";
characterMap['x'] = 50;
characterMap['y'] = 40;
characterMap['Health'] = 100;
arrayOfMaps.add(characterMap)
• Export to web/javascript ability
• Syntax highlighting
I wonder if a lot of the work in SC could be lessened by using a pre-built and modifiable scripting language like Lua.