I totally understand that, I’m more confused on one of my ban reasons and everytime I try to talk to people about one of my ban reasons, I get stone-walled and nobody has a good enough explanation to back their side up.
Maybe I can talk to you about it, in Devforum’s private messaging?
return function(registry)
registry:RegisterHook("BeforeRun", function(context)
if context.Group == "DefaultAdmin" and context.Executor.UserId == game.CreatorId then
return "You don't have permission to run this command"
end
if context.Group == "DefaultAdmin" and not (context.Executor:GetRankInGroup(8423759) == 14) then
return "You don't have permission to run this command"
end
registry:RegisterHook("AfterRun", function(context)
print(context.Response)
return "Successfully ran that command."
end)
end)
end
You should not be registering a hook within another hook. Also, your hook does not permit the game’s owner (if it is a user rather than a group) to run any commands.
return function(registry)
registry:RegisterHook("BeforeRun", function(context)
if context.Group == "DefaultAdmin" and context.Executor.UserId == game.CreatorId then
return "You don't have permission to run this command"
end
if context.Group == "DefaultAdmin" and not (context.Executor:GetRankInGroup(8423759) == 14) then
return "You don't have permission to run this command"
end
end)
end
Yeah realised that some hours earlier. Exhaustion is real.I fixed that.
I have a question though:
Does Cmdr have a list of groups? can I configure them? add some?