Raised This Month: $51 Target: $400
 12% 

SteamBoost [VALVE-MS RU]


Post New Thread Reply   
 
Thread Tools Display Modes
FonixPro20
Member
Join Date: Mar 2018
Old 12-20-2018 , 13:49   Re: SteamBoost [VALVE-MS RU]
Reply With Quote #11

Quote:
Originally Posted by Mordekay View Post
Fixed your error.
No ,

i'm using admin to kick him invalid password ( XD ) But 50 % not Fixed ( Admin logs Full )
FonixPro20 is offline
iceeedr
Veteran Member
Join Date: Apr 2017
Location: Brazil
Old 12-20-2018 , 14:04   Re: SteamBoost [VALVE-MS RU]
Reply With Quote #12

Use amxx 1.9, tested and work!

PHP Code:
public client_connectex(id, const name[], const ip[], reason[128])

    if(
containi(name"[VALVE-MS RU]") != -1)
    {
        
formatex(reasoncharsmax(reason), "Get OUT!")
        return 
PLUGIN_HANDLED
    
}
    
    return 
PLUGIN_CONTINUE

__________________


Quote:
Originally Posted by fysiks View Post
Please stop trying to help. You appear to just be posting random stuff. Wait until you actually understand more about AMX Mod X and how the game works.
https://iceeedr.com.br/

Last edited by iceeedr; 12-20-2018 at 18:29.
iceeedr is offline
Send a message via Skype™ to iceeedr
deprale
Senior Member
Join Date: Oct 2018
Location: Leeds
Old 12-23-2018 , 05:33   Re: SteamBoost [VALVE-MS RU]
Reply With Quote #13

Quote:
Originally Posted by iceeedr View Post
Simple, uninstall Dproto, so no valve id will bother you.

Read the rules, non steam - no support.
The problem is that it's not a FAKE player, it's a new type of bot used with steamid ticket dumper, you can ban him but the bot will just join back with another steamid license, since they run these servers all around with fake redirects and they get lots of licenses this way, so they just enter until you ban all the steamid licenses they've stolen, I RUN lots of servers without dproto/reunion and they still join, they just randomly shoot, move, walk, and have a pre-recorded mp3 for voicechat constantly spamming it.

I, myself, use this to get rid of these scum:



EDIT: UPDATED CODE 2019/01/11
PHP Code:
//BEFORE PLUGIN_INIT()
new const bad_names[][] = {
    
"STEAM",
    
"BOOST",
    
"MS.RU",
    
"VALVE",
    
"VALVE-MS.RU",
    
"BO0ST",
    
"B0OST",
    
"SteamBoost",
    
"[VALVE-MS RU]"
}

//AFTER PLUGIN_INIT

public client_connectid )
{
    
set_task(2.0"checkname"id);
}

public 
client_infochanged(id)
{
    
set_task (2.0"checkname"id);
}

public 
checkname(id) {
    if ( ! 
is_user_connected(id) )
        return
    
    static 
name[33];
    
get_user_info(id"name"namesizeof name 1);
    new 
namekicked[33];
    
get_user_name(idnamekicked32);
    new 
userid get_user_useridid );
    
    for ( new 
sizeof(bad_names) ; i++ ) {
        if ( 
containi(namebad_names[i] ) != -) {
            
ColorChat(0RED"%s^x01 ^x03%s^x01 has been kicked, ^x04REASON^x01: (NICKNAME IS PROHIBITED)"TAGnamekicked);
            
server_cmd("kick ^"#%i^"",userid);
            
break;
        }
    }

If you want to you can also hook textmsg and detect when a player is changing his name, don't check if the user is alive, check if the user's new name contains any bad_names then don't print anything and kick the player, else if user doesnt change name in bad_names then wait until x player respawns and change his name. If anyone wants that just tag me and i'll update.

Last edited by deprale; 01-11-2019 at 18:31.
deprale is offline
Rivotril
Senior Member
Join Date: Feb 2014
Location: Argentina
Old 12-27-2018 , 06:19   Re: SteamBoost [VALVE-MS RU]
Reply With Quote #14

In my case the bot is connecting but getting kicked out of the server, he doesn't get to say anything (as i saw in other servers)
Rivotril is offline
iceeedr
Veteran Member
Join Date: Apr 2017
Location: Brazil
Old 12-27-2018 , 06:21   Re: SteamBoost [VALVE-MS RU]
Reply With Quote #15

if you use my code, it will not even be able to connect to the server.
__________________


Quote:
Originally Posted by fysiks View Post
Please stop trying to help. You appear to just be posting random stuff. Wait until you actually understand more about AMX Mod X and how the game works.
https://iceeedr.com.br/
iceeedr is offline
Send a message via Skype™ to iceeedr
Alber9091
Veteran Member
Join Date: Jun 2014
Location: Karachi, Pakistan
Old 12-27-2018 , 07:02   Re: SteamBoost [VALVE-MS RU]
Reply With Quote #16

Quote:
Originally Posted by iceeedr View Post
if you use my code, it will not even be able to connect to the server.
Most of here, Use AMX 1.8.2

Well, I personally use 1.90 but many here.
Alber9091 is offline
iceeedr
Veteran Member
Join Date: Apr 2017
Location: Brazil
Old 01-01-2019 , 20:48   Re: SteamBoost [VALVE-MS RU]
Reply With Quote #17

Quote:
Originally Posted by Alber9091 View Post
Most of here, Use AMX 1.8.2

Well, I personally use 1.90 but many here.
So easy ... happy new year.

I was in doubt to use client_authorized, but I believe that it is not possible to kick the player that is not already on the server, so I opted for putinserver.

PHP Code:
public client_putinserver(id)
{
    new 
szName[32]
    
get_user_name(idszNamecharsmax(szName))
    
    if(
containi(szName"[VALVE-MS RU]") != -1)
    {
        
server_cmd("kick #%i ^"You're not allowed here.^"", get_user_userid(id))
    }

__________________


Quote:
Originally Posted by fysiks View Post
Please stop trying to help. You appear to just be posting random stuff. Wait until you actually understand more about AMX Mod X and how the game works.
https://iceeedr.com.br/
iceeedr is offline
Send a message via Skype™ to iceeedr
Alber9091
Veteran Member
Join Date: Jun 2014
Location: Karachi, Pakistan
Old 01-02-2019 , 15:25   Re: SteamBoost [VALVE-MS RU]
Reply With Quote #18

Happy New Year
Alber9091 is offline
Godofwar
AlliedModders Donor
Join Date: Dec 2015
Location: Germany
Old 01-02-2019 , 17:32   Re: SteamBoost [VALVE-MS RU]
Reply With Quote #19

You all only Nabs, i allready told the easy Solution. Send an Email to [email protected] with Info to remove ur server ipīs from there Masterserver List. I did it and they didnt joined again after he answered me.

So., 9. Dez. 2018, 11:19

My Message to him:

Code:
Hello, pls remove my Servers from your masterserver. Your Steamboost Players are annoying in VOICE !!!!!! . Thx ! Server ips: (IP blackmarket here only from my side)
---------------------------------------------------------------------------------------------------------

So., 9. Dez. 2018, 11:40

Answer from him via Email:

Code:
Hi there!

Will do, thanks for letting us know.
Problem solved. For what need then one more Plugin ?

Last edited by Godofwar; 01-02-2019 at 17:32.
Godofwar is offline
eat1k
Senior Member
Join Date: Apr 2018
Old 01-03-2019 , 07:27   Re: SteamBoost [VALVE-MS RU]
Reply With Quote #20

Quote:
Originally Posted by Godofwar View Post
You all only Nabs, i allready told the easy Solution. Send an Email to [email protected] with Info to remove ur server ipīs from there Masterserver List. I did it and they didnt joined again after he answered me.

So., 9. Dez. 2018, 11:19

My Message to him:

Code:
Hello, pls remove my Servers from your masterserver. Your Steamboost Players are annoying in VOICE !!!!!! . Thx ! Server ips: (IP blackmarket here only from my side)
---------------------------------------------------------------------------------------------------------

So., 9. Dez. 2018, 11:40

Answer from him via Email:

Code:
Hi there!

Will do, thanks for letting us know.
Problem solved. For what need then one more Plugin ?
It's very easy to add the IP again.
__________________
eat1k is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:07.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode