it depends what they are... if they're all commands, then you just put all your registers under:
Code:
public plugin_init() {
register_clcmd("first_command","function1")
register_clcmd("second_command","function2")
} //ect...
public function1()
{
//function1
}
public function2()
{
//function2
}
__________________