Raised This Month: $32 Target: $400
 8% 

[HELP] Hide SteamID


Post New Thread Closed Thread   
 
Thread Tools Display Modes
Author Message
alferd
Veteran Member
Join Date: Dec 2019
Location: Iran is Always Eternal
Old 05-28-2020 , 09:43   [HELP] Hide SteamID
#1

How can I hide the steam ID?
Can anyone help or should I send a post to another section?

Code:
] status 
hostname:  Counter Strike 1.6
version :  48/1.1.2.7 8196 secure  (10)
tcp/ip  :  192.168.166.20:28015
map     :  de_dust2 at: 0 x, 0 y, 0 z
players :  1 active (18 max)

#      name userid uniqueid frag time ping loss adr
# 1 "xxxx" 126 STEAM_0:0:123456789   0 00:56   47    0
TO --->
Code:
] status 
hostname:  Counter Strike 1.6
version :  48/1.1.2.7 8196 secure  (10)
tcp/ip  :  192.168.166.20:28015
map     :  de_dust2 at: 0 x, 0 y, 0 z
players :  1 active (18 max)

#      name userid uniqueid frag time ping loss adr
# 1 "xxxx" 126 HIDE   0 00:56   47    0

Last edited by alferd; 05-28-2020 at 09:44.
alferd is offline
DruGzOG
Veteran Member
Join Date: Nov 2007
Location: Unknown
Old 05-28-2020 , 09:57   Re: [HELP] Hide SteamID
#2

Quote:
Originally Posted by alferd View Post
How can I hide the steam ID?
Can anyone help or should I send a post to another section?

Code:
] status 
hostname:  Counter Strike 1.6
version :  48/1.1.2.7 8196 secure  (10)
tcp/ip  :  192.168.166.20:28015
map     :  de_dust2 at: 0 x, 0 y, 0 z
players :  1 active (18 max)

#      name userid uniqueid frag time ping loss adr
# 1 "xxxx" 126 STEAM_0:0:123456789   0 00:56   47    0
TO --->
Code:
] status 
hostname:  Counter Strike 1.6
version :  48/1.1.2.7 8196 secure  (10)
tcp/ip  :  192.168.166.20:28015
map     :  de_dust2 at: 0 x, 0 y, 0 z
players :  1 active (18 max)

#      name userid uniqueid frag time ping loss adr
# 1 "xxxx" 126 HIDE   0 00:56   47    0
What is the purpose of this?
__________________
DruGzOG is offline
Send a message via AIM to DruGzOG
alferd
Veteran Member
Join Date: Dec 2019
Location: Iran is Always Eternal
Old 05-28-2020 , 10:22   Re: [HELP] Hide SteamID
#3

Quote:
Originally Posted by DruGzOG View Post
What is the purpose of this?
I want the information of the players to be private,
This will only allow the player to see their steam ID using the plugin below

PHP Code:
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "Fuck For Fun"

public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
    
register_clcmd("say /mysteamid""ClientSteamID" );
}

public 
ClientSteamIDIndex )
{
    new 
szAuth[35];
    
get_user_authid(IndexszAuthcharsmax(szAuth));
    
    
//client_print_color(Index, print_team_red, "Hello %n, your steamid is: %s", szAuth); // Request AMXX 1.8.3+
    
client_print(Indexprint_chat"your steamid is: %s"szAuth);

alferd is offline
Fuck For Fun
Veteran Member
Join Date: Nov 2013
Old 05-28-2020 , 14:49   Re: [HELP] Hide SteamID
#4

I remember before a years, I managed to block through Orpheu.
Fuck For Fun is offline
Send a message via Skype™ to Fuck For Fun
alferd
Veteran Member
Join Date: Dec 2019
Location: Iran is Always Eternal
Old 05-28-2020 , 14:57   Re: [HELP] Hide SteamID
#5

Quote:
Originally Posted by Fuck For Fun View Post
I remember before a years, I managed to block through Orpheu.
I'm sorry, I didn't understand your presence

You blocked the display of the steam ID using Orpheu?

Last edited by alferd; 05-28-2020 at 15:00.
alferd is offline
Mordekay
Squirrel of Fortune
Join Date: Apr 2006
Location: Germany
Old 05-28-2020 , 15:18   Re: [HELP] Hide SteamID
#6

As your server is non-steam, 99% of all your users don't have a steam-id, so why trying something useless?
__________________

Mordekay is offline
alferd
Veteran Member
Join Date: Dec 2019
Location: Iran is Always Eternal
Old 05-28-2020 , 15:22   Re: [HELP] Hide SteamID
#7

Quote:
Originally Posted by Mordekay View Post
As your server is non-steam, 99% of all your users don't have a steam-id, so why trying something useless?
My users have a steam ID,And I don't want my users' steam identifiers to be revealed
alferd is offline
alferd
Veteran Member
Join Date: Dec 2019
Location: Iran is Always Eternal
Old 05-28-2020 , 16:03   Re: [HELP] Hide SteamID
#8

If you don't have a way, then say no
alferd is offline
Thew_ConFiger
Member
Join Date: Apr 2019
Old 05-28-2020 , 16:15   Re: [HELP] Hide SteamID
#9

You can block status from your server. I m not sure its possible to change the message of status. But i think you can search amxmodx plugins to find status command
Here you go for blocking status
PHP Code:
#include < amxmodx >

public plugin_init( )
    
register_clcmd"status""ClientCommand_Status" );
    
public 
ClientCommand_StatusiPlayer )
    return 
PLUGIN_HANDLED
Thew_ConFiger is offline
alferd
Veteran Member
Join Date: Dec 2019
Location: Iran is Always Eternal
Old 05-28-2020 , 16:22   Re: [HELP] Hide SteamID
#10

Quote:
Originally Posted by Thew_ConFiger View Post
You can block status from your server. I m not sure its possible to change the message of status. But i think you can search amxmodx plugins to find status command
Here you go for blocking status
PHP Code:
#include < amxmodx >

public plugin_init( )
    
register_clcmd"status""ClientCommand_Status" );
    
public 
ClientCommand_StatusiPlayer )
    return 
PLUGIN_HANDLED
This is not possible because I tried
alferd is offline
Old 05-28-2020, 16:34
OciXCrom
This message has been deleted by Bugsy.
Closed Thread



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 02:01.


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