Changes

Jump to navigation Jump to search
m
Text replacement - "tt>" to "samp>"
Line 5: Line 5:  
__TOC__
 
__TOC__
 
==Intro==
 
==Intro==
The SMAPI console is the window that opens alongside the game, which displays messages from SMAPI and mods in a text-only format. Players can enter commands directly into that window to interact with mods. For example, you can type <tt>help</tt> to see a list of available commands. Note that most players aren't comfortable with a command-line interface, so you should prefer in-game interfaces for player-facing features in most cases.
+
The SMAPI console is the window that opens alongside the game, which displays messages from SMAPI and mods in a text-only format. Players can enter commands directly into that window to interact with mods. For example, you can type <samp>help</samp> to see a list of available commands. Note that most players aren't comfortable with a command-line interface, so you should prefer in-game interfaces for player-facing features in most cases.
    
==Add a custom command==
 
==Add a custom command==
 
Each console command must have:
 
Each console command must have:
 
* A name which the player types to invoke the command.
 
* A name which the player types to invoke the command.
* A description shown when the player uses the <tt>help</tt> command. This should explain what the command does, how to use it, and what arguments it accepts. The example below shows the recommended convention.
+
* A description shown when the player uses the <samp>help</samp> command. This should explain what the command does, how to use it, and what arguments it accepts. The example below shows the recommended convention.
 
* The method to call when the command is entered.
 
* The method to call when the command is entered.
   −
This code creates a minimal <tt>player_setmoney</tt> command:
+
This code creates a minimal <samp>player_setmoney</samp> command:
 
<syntaxhighlight lang="C#">
 
<syntaxhighlight lang="C#">
 
/// <summary>The main entry point for the mod.</summary>
 
/// <summary>The main entry point for the mod.</summary>
106,979

edits

Navigation menu