Hello @Geez
Can you tell how use this function?
file - scripts\1_core\proto\ensystem.c
//! returns all addons
proto int GetAddons(string addonNames[]);
//! returns all plugins (addons and mods)
proto int GetPlugins(string pluginNames[]);
i try use this:
string addons[50]; GetAddons(addons);
and this
string addons[] = {"VPPAdminTools"}; GetAddons(addons);
and this
string addons[]; GetAddons(addons);
and this
autoptr string addons[50]; GetAddons(addons);
and this
array<string> addons; GetAddons(addons);
and this
string addons; GetAddons(addons);
but my server always crashing when i call the function GetAddons() or GetPlugins()