Added CommandArgument class to generate syntax for commands. changed Command constructor

tweaked help command
/pubbans is working properly now
plugins properties changed to expression
This commit is contained in:
RaidMax
2017-11-15 15:04:13 -06:00
parent 89381bcc7d
commit a56f386644
17 changed files with 391 additions and 189 deletions

View File

@ -60,29 +60,11 @@ namespace Welcome_Plugin
}
}
public string Author
{
get
{
return "RaidMax";
}
}
public string Author => "RaidMax";
public float Version
{
get
{
return 1.0f;
}
}
public float Version => 1.0f;
public string Name
{
get
{
return "Welcome Plugin";
}
}
public string Name => "Welcome Plugin";
public async Task OnLoadAsync(IManager manager)
{