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

Auto Password Remover


Post New Thread Reply   
 
Thread Tools Display Modes
matiaslp
Senior Member
Join Date: Apr 2007
Old 08-04-2008 , 13:15   Re: Auto Password Remover
Reply With Quote #11

i'm getting bad load problems when running this plugin

i need something like this for 1.76d
matiaslp is offline
GHW_Chronic
SourceMod Donor
Join Date: Sep 2004
Location: Texas
Old 08-04-2008 , 22:40   Re: Auto Password Remover
Reply With Quote #12

fixed for compadability with AMXX 1.76d
GHW_Chronic is offline
Send a message via AIM to GHW_Chronic
matiaslp
Senior Member
Join Date: Apr 2007
Old 08-09-2008 , 09:26   Re: Auto Password Remover
Reply With Quote #13

Quote:
Originally Posted by GHW_Chronic View Post
fixed for compadability with AMXX 1.76d
Thank you

i've got a last question
is it possible to exec a config? (eg server.cfg) when removing the password?

thanks in advance !
matiaslp is offline
Mephisto
Member
Join Date: Apr 2008
Old 10-01-2008 , 18:28   Re: Auto Password Remover
Reply With Quote #14

These plugin ROCKS!
Very nice plugin GHW_Chronic these plugin are very useful
Mephisto is offline
crazyeffect
Veteran Member
Join Date: Jul 2008
Location: Belgium
Old 03-12-2009 , 14:42   Re: Auto Password Remover
Reply With Quote #15

Where is the GHW_auto_password_remover.txt?

Anyway, i made one
Attached Files
File Type: txt GHW_auto_password_remover.txt.txt (494 Bytes, 484 views)
__________________

Last edited by crazyeffect; 03-12-2009 at 14:46.
crazyeffect is offline
Send a message via MSN to crazyeffect
slpknt
Senior Member
Join Date: Dec 2007
Location: Russia
Old 03-15-2009 , 15:59   Re: Auto Password Remover
Reply With Quote #16

Does it ignore HLTV or what?
__________________
play hard go pr0
dmg / slipknot!
slpknt is offline
Send a message via ICQ to slpknt
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 03-16-2009 , 09:32   Re: Auto Password Remover
Reply With Quote #17

Yes, it does.
Arkshine is offline
niFe
Senior Member
Join Date: Apr 2008
Location: Planet Green
Old 08-10-2009 , 21:47   Re: Auto Password Remover
Reply With Quote #18

NAICE
__________________
niFe is offline
Hunter-Digital
Veteran Member
Join Date: Aug 2006
Location: In the Game [ro]
Old 08-13-2009 , 01:36   Re: Auto Password Remover
Reply With Quote #19

This could be done with client_disconnect() instead of set_task()

I wrote this a while ago for someone, didn't knew it was already made :}

PHP Code:
#include <amxmodx>

new g_iPlayers
new pCvar_enable
new pCvar_sv_password

public plugin_init()
{
    
register_plugin("Auto Password Remove""1.0""Digi (www.thehunters.ro)")

    
pCvar_enable register_cvar("sv_password_autoremove""2")
    
pCvar_sv_password get_cvar_pointer("sv_password")
}

public 
plugin_cfg()
    if(
get_pcvar_num(pCvar_enable) == 2)
        
check_sv_password()

public 
client_connect(id)
    if(!
is_user_bot(id) && !is_user_hltv(id))
        
g_iPlayers++

public 
client_disconnect(id)
    if(--
g_iPlayers == && get_pcvar_num(pCvar_enable) && !is_user_bot(id) && !is_user_hltv(id))
        
check_sv_password()

public 
check_sv_password()
{
    new 
szPassword[2]

    
get_pcvar_string(pCvar_sv_passwordszPassword1)

    if(!
equal(szPassword""))
    {
        
set_cvar_string("sv_password""")
        
log_message("Server cvar ^"sv_password^" has been cleared")
    }

__________________
Hunter-Digital is offline
abvon
New Member
Join Date: Dec 2016
Old 12-13-2016 , 07:30   Re: Auto Password Remover
Reply With Quote #20

To keep the password secure Password Manager is effective and the guidance is easy to understand
abvon 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 22:53.


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