Thread: Bot Commands
View Single Post
  #48  
Old 03-25-2016, 11:14 PM
Uleat's Avatar
Uleat
Developer
 
Join Date: Apr 2012
Location: North Carolina
Posts: 2,815
Default

Code:
^help
or
Code:
^?
will show all commands (and aliases.)

At the bottom of that list is a help statement:
https://github.com/EQEmu/Server/blob...mand.cpp#L3116


So, typing:
Code:
^follow help
or
Code:
^follow usage
will give you the help for that particular command.


Some commands are just subcommand lists..such as:
Code:
^appearance

You can also use help to find partial command names:
Code:
^help bot
will return all commands with 'bot' in their name.


Alias works here too:
Code:
^alias appearance
should return:
Code:
^app
^appearance
^botappearance

I really need to write-up the wiki page for this information.


EDIT:

There were a lot of 'extra' commands for different situations..like #bot follow and #bot botgroup follow..that I just expanded for a single command.

Using the argument system provides a much more robust means of expanding bot control without adding tons of duplicated commands.
__________________
Uleat of Bertoxxulous

Compilin' Dirty

Last edited by Uleat; 03-25-2016 at 11:27 PM..
Reply With Quote