Jump to content

Lucianosb28

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Lucianosb28

  1. Can anyone help me I need a code to block players who want to change teams only VIPs can how to do this
  2. alguem pode me ajudar preciso de um code para bloquear os players que querem trocar de time apenas vips podem tem como fazer isso
  3. Tem alguma coisa que bloqueia os jogadores de se moverem de time e só os vips consegu
  4. estou tentando colocar essas regras aqui no insane mas da erro / Cria uma lista para as regras do servidor List<string> Rules = new List<string>(); Rules.Add("--- SERVER RULES ---"); Rules.Add("No Cheating, Glitching, Statspadding!"); Rules.Add("No Baserape or spawncamping"); Rules.Add("No mainbase camping"); // Verifica se a última mensagem no chat começa com "!rules" if (player.LastChat != null && player.LastChat.StartsWith("!rules")) { // Limita a quantidade de ativações para evitar spam if (limit.Activations(player.Name) >= 2) { // Itera sobre cada regra e envia uma mensagem ao jogador foreach (string Rule in Rules) { if (player.TeamId != null && player.SquadId != null) { plugin.SendSquadMessage(player.TeamId, player.SquadId, Rule); } else { plugin.SendPrivateMessage(player.Name, "Error: Could not retrieve your team or squad information."); break; // Interrompe para evitar mais erros } } } else { plugin.SendPrivateMessage(player.Name, "You have reached the limit for viewing rules."); } } else { plugin.SendPrivateMessage(player.Name, "Use '!rules' to view the server rules."); }
×
×
  • Create New...

Important Information

Please review our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.