Hello, I need help to remove the chat from my server.
-
Hello, I need help on iw5, I want to remove the chat in my rooms, how do I do it, the pluging pluto-disable-chat 2023 that I have when I update the server to version 3963 does not deactivate the chat
-
Hello, I need help on iw5, I want to remove the chat in my rooms, how do I do it, the pluging pluto-disable-chat 2023 that I have when I update the server to version 3963 does not deactivate the chat
-
Kalitos Hello, that step did not work for me.
-
Yosmany It works if you do it in a script that when the player connects you execute the "muteclient id" command, that is for each player who connects.
-
Yosmany It works if you do it in a script that when the player connects you execute the "muteclient id" command, that is for each player who connects.
Kalitos pero es que no se hacer ese script, si usted lo tiene le agradeceria que lo pasaras
-
Kalitos pero es que no se hacer ese script, si usted lo tiene le agradeceria que lo pasaras
Yosmany Copy the following script and save it as
muteclientIW5.gsc
and paste it into the%localappdata%/Plutonium/storage/iw5/scripts/
folder. Reboot the server and it should work. Make sure you are running a version of plutonium greater than or equal to r3605#include maps\mp\_utility; #include common_scripts\utility; #include maps\mp\gametypes\_hud_util; init() { level thread onPlayerConnect(); } onPlayerConnect() { for(;;) { level waittill("connected", player); wait 0.5; if(!player IsBot()) cmdexec("muteclient " + player getentitynumber()); } } IsBot() { return IsDefined(self.pers["isBot"]) && self.pers["isBot"]; }
-
Yosmany Copy the following script and save it as
muteclientIW5.gsc
and paste it into the%localappdata%/Plutonium/storage/iw5/scripts/
folder. Reboot the server and it should work. Make sure you are running a version of plutonium greater than or equal to r3605#include maps\mp\_utility; #include common_scripts\utility; #include maps\mp\gametypes\_hud_util; init() { level thread onPlayerConnect(); } onPlayerConnect() { for(;;) { level waittill("connected", player); wait 0.5; if(!player IsBot()) cmdexec("muteclient " + player getentitynumber()); } } IsBot() { return IsDefined(self.pers["isBot"]) && self.pers["isBot"]; }
Kalitos gracias me funciono perfecto, ahora donde puedo cambiarle el mensaje que le sale a los jugadores de arventencia de que no se puede escribir en la sala que sale en ingles y quiero ponerlo en español
-
Kalitos gracias me funciono perfecto, ahora donde puedo cambiarle el mensaje que le sale a los jugadores de arventencia de que no se puede escribir en la sala que sale en ingles y quiero ponerlo en español
Yosmany It can't be done. That's the command now.
-
sv_disableChat dvar will be added to all of our CoD mods with the next update
-
You will no longer need to use my plugin "Disable Chat" with the next update.
Kalitos use IsTestClient() function to test if a player is a bot or not.