Something like this:
PHP Code:
#include <amxmodx>
public test()
{
new string[1201], len;
len = format(string, 1200, "Plugins:^n^n");
for(new i = 0; i < get_pluginsnum(); i++)
{
new filename[21];
new name[21];
new version[9];
new author[21];
new status[8];
get_plugin(i, filename, 20, name, 20, version, 8, author, 20, status, 7);
len += format(string, (1200 - len), "%s - %s^n", name, author);
}
show_motd(0, string, "Plugins");
}
__________________