SA-MP Forums Archive
disabling rcon messages - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: disabling rcon messages (/showthread.php?tid=602474)



disabling rcon messages - AroseKhanNiazi - 07.03.2016

something to disable these 2 rcon messages?
'SERVER: Bad admin password. Repeated attempts will get you banned.
SERVER: You are logged in as admin.'
or at last this one
'SERVER: Bad admin password. Repeated attempts will get you banned'


Re: disabling rcon messages - smartasspothead - 07.03.2016

try OnRconLoginAttempt, if false.. just return your onw message or disable it..


Re: disabling rcon messages - AroseKhanNiazi - 07.03.2016

didn't work.
Already have like a return with message or return 0;


Re: disabling rcon messages - saffierr - 07.03.2016

You could try smth as this under OnPlayerText
PHP код:
    new msg[128];
    
format(msgsizeof msg"%s"text);
    if(!
strcmp(text"SERVER: Bad admin password. Repeated attempts will get you banned"true45)) return SendClientMessage(playerid, -1""); 



Re: disabling rcon messages - AroseKhanNiazi - 07.03.2016

That callback is called when a player types something..


Re: disabling rcon messages - saffierr - 07.03.2016

Quote:
Originally Posted by AroseKhanNiazi
Посмотреть сообщение
That called back is called when a player types something..
Ahh, excuse me excuse me, my bad..


Re: disabling rcon messages - Threshold - 08.03.2016

You can't stop the messages from showing without disabling remote RCON entirely. If you want to disable RCON, go to your server.cfg and make sure there is a line that says "rcon 0".

Otherwise, you're not going to remove the messages because they are client-sided, just like audio stream messages, opcodes and client commands.


Re: disabling rcon messages - ]Rafaellos[ - 08.03.2016

Quote:
Originally Posted by saffierr
Посмотреть сообщение
You could try smth as this under OnPlayerText
PHP код:
    new msg[128];
    
format(msgsizeof msg"%s"text);
    if(!
strcmp(text"SERVER: Bad admin password. Repeated attempts will get you banned"true45)) return SendClientMessage(playerid, -1""); 
I am crying....


Re: disabling rcon messages - AroseKhanNiazi - 08.03.2016

Quote:
Originally Posted by Threshold
Посмотреть сообщение
You can't stop the messages from showing without disabling remote RCON entirely. If you want to disable RCON, go to your server.cfg and make sure there is a line that says "rcon 0".

Otherwise, you're not going to remove the messages because they are client-sided, just like audio stream messages, opcodes and client commands.
Sorry, but remote rcon doesn't do anything on it. I have already tried it.
https://sampwiki.blast.hk/wiki/Remote_Console
And it's possible I have seen it in a server.


Re: disabling rcon messages - Spmn - 08.03.2016

Quote:
Originally Posted by Threshold
Посмотреть сообщение
Otherwise, you're not going to remove the messages because they are client-sided, just like audio stream messages, opcodes and client commands.
Wrong. /rcon * messages are server-sided, you can see that by opening samp-server.exe in any text/bin editor.


Well, disabling those messages is possible, but very time-consuming and also it doesn't worth the effort. You'd have to reverse and hook the code responsible for RCON management and rewrite the RCON handler just like query packets handler is reversed and hooked in YSF. (check hooks.cpp)