1. i created a chatcommand but i want the players to have to wait 5 minutes to use the command again

    i found this thread but i dont understand it
    Using give item command as a timer
     
  2. Wulf

    Wulf Community Admin

  3. man thank you it really helped me, but one question, if i want all players to have the permission, can i just delete the
    Code:
    void OnServerInitialized()
            {
                permission.RegisterPermission(Perm, this); //Register the permission when the server initializes
            }
    and

    Code:
    void cmdTestCommand(BasePlayer player, string cmd)
            {
                if (permission.UserHasPermission(player.UserIDString, Perm)) //Check if the player has the permission "Perm"
                {}
            }
     
  4. Yes, or you grant your default group the permission.