Lua support
We are now using Lua in the console.
It's fairly simple just prefix the script functions with Game.
and pass arguments as you would normally.
For example:
item = "Items.Jacket_03_old_04"
count = 12
Game.AddToInventory(item, count)
Game.AddToInventory("Items.Jacket_03_old_04", 12)