is it possible to find a specific plugin that is loaded on the server without looping through the other plugins?
like doing this but without having to go through the other plugins
PHP Code:
new i = 0, num = get_pluginsnum(), filename[64], name[64], version[64], author[64]
while (i < num)
{
get_plugin(i++, filename, 63, name, 63, version, 63, author, 63)
if (equali(name, "plugins_name"))
{
//do stuff here
break
}
}