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

[CSGO] Advanced Admin ESP


Post New Thread Reply   
 
Thread Tools Display Modes
Doulos
AlliedModders Donor
Join Date: Aug 2007
Old 01-02-2018 , 12:52   Re: [CSGO] Advanced Admin ESP
Reply With Quote #61

I realize the name of the plugin says CS:Go but
plugins say
Quote:
Plugin Game: Any
I can't get it working for CS:S

Last edited by Doulos; 01-02-2018 at 12:53.
Doulos is offline
Xenoadria
Member
Join Date: Oct 2016
Old 01-02-2018 , 13:26   Re: [CSGO] Advanced Admin ESP
Reply With Quote #62

Quote:
Originally Posted by Obyboby View Post
Thanks, I might give it a try then.

EDIT: sadly it makes the sv go up to 17 and var 3+ so I had to unload it. :/
How do I investigate the issue?
That's a pitty :/ Not sure why it's happening tho. I never had any problems regarding var and sv while using Advanced ESP.

Quote:
Originally Posted by Doulos View Post
I realize the name of the plugin says CS:Go but
plugins say
I can't get it working for CS:S
Maybe author mistakenly put that plugin is for any game. Can't tell for sure.
Xenoadria is offline
Mitchell
~lick~
Join Date: Mar 2010
Old 01-02-2018 , 21:20   Re: [CSGO] Advanced Admin ESP
Reply With Quote #63

Quote:
Originally Posted by Xenoadria View Post
Maybe author mistakenly put that plugin is for any game. Can't tell for sure.
It says [CSGO] in the name. The idea was to have it for any game, however the glow netprop only exists in csgo, not css. anyways the search game is updated to just csgo.
Mitchell is offline
Dr.Mohammad
Senior Member
Join Date: Jan 2016
Location: CSGO Servers
Old 01-27-2018 , 23:57   Re: [CSGO] Advanced Admin ESP
Reply With Quote #64

hi guys !!

i change sm_advanced_esp_default to 1

i want give esp to all admins !!

how to chenge flag for give all admins ??

PHP Code:
cDefault CreateConVar("sm_advanced_esp_default""1""Set to 1 if admins should automatically be given ESP"0); 
PHP Code:
public void Event_PlayerSpawn(Event event, const char[] namebool dontBroadcast) {
    
int client GetClientOfUserId(event.GetInt("userid"));
    if(
client <= || client MaxClients || !IsClientInGame(client)) {
        return;
    }
    if(
cDefault.BoolValue) {
        if(
CheckCommandAccess(client"sm_esp"ADMFLAG_CHEATSfalse)) {
            
isUsingESP[client] = true;
        }
    }
    if(
isUsingESP[client]) {
        if(
cLifeState.IntValue != 1) {
            
canSeeESP[client] = true;
        } else {
            
canSeeESP[client] = false;
        }
    }
    
checkGlows();

Dr.Mohammad is offline
Xenoadria
Member
Join Date: Oct 2016
Old 01-28-2018 , 06:56   Re: [CSGO] Advanced Admin ESP
Reply With Quote #65

Quote:
Originally Posted by Dr.Mohammad View Post
hi guys !!

i change sm_advanced_esp_default to 1

i want give esp to all admins !!

how to chenge flag for give all admins ??

PHP Code:
cDefault CreateConVar("sm_advanced_esp_default""1""Set to 1 if admins should automatically be given ESP"0); 
PHP Code:
public void Event_PlayerSpawn(Event event, const char[] namebool dontBroadcast) {
    
int client GetClientOfUserId(event.GetInt("userid"));
    if(
client <= || client MaxClients || !IsClientInGame(client)) {
        return;
    }
    if(
cDefault.BoolValue) {
        if(
CheckCommandAccess(client"sm_esp"ADMFLAG_CHEATSfalse)) {
            
isUsingESP[client] = true;
        }
    }
    if(
isUsingESP[client]) {
        if(
cLifeState.IntValue != 1) {
            
canSeeESP[client] = true;
        } else {
            
canSeeESP[client] = false;
        }
    }
    
checkGlows();

I believe you put ADMFLAG_GENERIC instead ADMFLAG_CHEATS. However someone needs to confirm this.
Xenoadria is offline
Dr.Mohammad
Senior Member
Join Date: Jan 2016
Location: CSGO Servers
Old 01-28-2018 , 08:53   Re: [CSGO] Advanced Admin ESP
Reply With Quote #66

Quote:
Originally Posted by Xenoadria View Post
I believe you put ADMFLAG_GENERIC instead ADMFLAG_CHEATS. However someone needs to confirm this.
I chenged ADMFLAG_CHEATS to ADMFLAG_GENERIC but not work for all admins!!

all admins have ADMFLAG_GENERIC !!!

please help.
Dr.Mohammad is offline
DanutValentin
Junior Member
Join Date: Oct 2017
Old 02-27-2018 , 12:22   Re: [CSGO] Advanced Admin ESP
Reply With Quote #67

That's exactly the plugin that I am looking for but I would like for this plugin to work only when admins are in spectators team.
DanutValentin is offline
Czar_
Senior Member
Join Date: Nov 2016
Location: Moms Basement
Old 02-27-2018 , 13:22   Re: [CSGO] Advanced Admin ESP
Reply With Quote #68

Quote:
Originally Posted by DanutValentin View Post
That's exactly the plugin that I am looking for but I would like for this plugin to work only when admins are in spectators team.
Add a condition that checks the clients team and use hooks to remove esp on player switch. I can add it for you when I am home later
__________________
Czar_ is offline
Mitchell
~lick~
Join Date: Mar 2010
Old 02-27-2018 , 13:43   Re: [CSGO] Advanced Admin ESP
Reply With Quote #69

Quote:
Originally Posted by Czar_ View Post
Add a condition that checks the clients team and use hooks to remove esp on player switch. I can add it for you when I am home later
It's a little more complicated than a simple check as there are multiple variables used to determine if the glows should be created etc.

I could hook into the convar: sm_advanced_esp_lifestate 1 and create a new convar to only display when a player is on a certain team.

Also this seems to already be a logged issue: https://github.com/MitchDizzle/Advan...-ESP/issues/14

Edit: Try this branch: https://github.com/MitchDizzle/Advan...SP/tree/1.3.5/
The convar that was added is: sm_advanced_esp_restrictteam

Last edited by Mitchell; 02-27-2018 at 14:21.
Mitchell is offline
Allower
Senior Member
Join Date: Sep 2013
Location: SourceEngine
Old 05-29-2018 , 14:57   Re: [CSGO] Advanced Admin ESP
Reply With Quote #70

Hello, there is a bug with glows and bots.

If many times bot disconnected/reconnected from/to server his glow remains to and stuck every new round.

And his glow effect visible by all players. Because new round start dont clear this.

How to fix?
__________________
Allower is offline
Reply


Thread Tools
Display Modes

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 09:47.


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