Regular search forgives minor typos and allows different word forms, e.g. playa or coors .
For exact search wrap your search query in double quotes, e.g. "get_char_health"
Search supports special queries:
id:<opcode> - find the command with id <opcode>constructor:<className> or c:<className> - find all constructor commands for <className>destructor:<className> or d:<className> - find all destructor commands for <className>condition:<className> or if:<className> - find all condition methods for <className>type:<typeName> or t:<typeName> - find all commands where one of the params has the type <typeName>param:<paramName> or p:<paramName> - find all commands where one of the params has the name <paramName>
Each query can be inverted by prepending with !, e.g. !if:player
Empty queries (e.g. if: ) return commands from any class.
You can query opcodes, separating them with a comma or a whitespace, e.g. 0001,0002,0003 or 0256 0118 0119