internal static void NewGroup(string name, string group)
{
string groupname = name;
string oxidegroupname = group;
if (CachedGroups.ContainsKey(groupname)) return;
if (name == null | group == null) return;
if (!permission.GroupExists(oxidegroupname)) return;
}I have this and it says that i need an object referance to user the permsiion.groupexists. I don't rly understand why it wont work. Any help is appreciated :)