Console Code
This mod lets you write and execute C# code from the console.
You can write a short snippet using
cs <code>
, such as
cs Game1.activeClickableMenu = null;
or
cs return Game1.player.money;
.
* Note: Snippets with "quotes" don't work in the console due to the SMAPI command argument parser.
Alternatively, you can load a block from a file, like
cs --script file
and it will load a script from the mod folder. The script must not include imports,
public class Xyz
, etc. Example script:
foreach ( var item in Game1.player.items )
{
if ( item == null )
continue;
Game1.player.money += item.salePrice();
Game1.player.removeItemFromInventory( item );
}
{
if ( item == null )
continue;
Game1.player.money += item.salePrice();
Game1.player.removeItemFromInventory( item );
}
- 1.0.2
- 1.0.1
- 1.0.0
Release
Dev
Version: 1.0.2
Tue, 26 Nov 2019 22:55:09 +0000
SDV 1.4, Mac/Linux support
Full Changelog
- 1.4
- 1.3.33
- 1.3.32
The source code for this project can be found here.