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

[Any] Server Whitelist Advanced (1.5.0)


Post New Thread Reply   
 
Thread Tools Display Modes
RedSword
SourceMod Plugin Approver
Join Date: Mar 2006
Location: Quebec, Canada
Old 11-15-2012 , 21:13   Re: [Any] Server Whitelist Advanced (1.1.0 ; Added SteamGroup support)
Reply With Quote #11

1.1.0 is out :
  • Added Steam Groups support. See convars whitelist_steamgroup, whitelist_steamgroup_timeout, whitelist_steamgroup_retry.
  • Doing additional checks for the validity of an IP.
  • Added custom kicking message. See convar whitelist_kickmessage.
  • Added logging for when someone is kicked. See convar whitelist_log.
  • Changed directory of whitelist file, so a malicious (or dumb) admin doesn't rewrite over important files. New default whitelist file will be in sourcemod/configs/whitelist/ rather than sourcemod/configs. Folder will be automaticly created if you do not have it.
__________________
My plugins :
Red Maze
Afk Bomb
RAWR (per player/rounds Awp Restrict.)
Kill Assist
Be Medic

You can also Donate if you appreciate my work

Last edited by RedSword; 11-15-2012 at 21:13.
RedSword is offline
shavit
AlliedModders Donor
Join Date: Dec 2011
Location: Israel
Old 11-16-2012 , 11:44   Re: [Any] Server Whitelist Advanced (1.1.0 ; Added Steam Groups support)
Reply With Quote #12

U suld ad compld vsn cuz stimtools is not in alldmods
__________________
retired
shavit is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 11-16-2012 , 11:51   Re: [Any] Server Whitelist Advanced (1.1.0 ; Added Steam Groups support)
Reply With Quote #13

Quote:
Originally Posted by shavit View Post
U suld ad compld vsn cuz stimtools is not in alldmods
You might want to talk in complete sentences.

But yes, adding a compiled .smx is a must when compiling against non-standard extensions or plugins.
__________________
Not currently working on SourceMod plugin development.

Last edited by Powerlord; 11-16-2012 at 11:52.
Powerlord is offline
RedSword
SourceMod Plugin Approver
Join Date: Mar 2006
Location: Quebec, Canada
Old 11-16-2012 , 16:42   Re: [Any] Server Whitelist Advanced (1.1.0 ; Added Steam Groups support)
Reply With Quote #14

Oh well... thanks for reporting.

EDIT : 1.1.1 is out : fixed a log being wrong (when changing kick convar).
__________________
My plugins :
Red Maze
Afk Bomb
RAWR (per player/rounds Awp Restrict.)
Kill Assist
Be Medic

You can also Donate if you appreciate my work

Last edited by RedSword; 11-29-2012 at 15:04.
RedSword is offline
RedSword
SourceMod Plugin Approver
Join Date: Mar 2006
Location: Quebec, Canada
Old 12-19-2012 , 05:31   Re: [Any] Server Whitelist Advanced (1.2.0 ; Bugfix, Natives, Forwards, TidyKick)
Reply With Quote #15

1.2.0 is out :
  • Fixed bug when using a mod not supported by Steam Tools (plugin wouldn't load :$, sorry for that). Natives weren't marked as optional.
  • Added Forward OnClientKickedPre_ServerWhitelistAdvanced. This can be used to deny someone from being kicked.
  • Added natives IsClientWhitelistStatusPending, IsSteamIdWhitelisted, IsIPWhitelisted, IsSteamGroupWhitelisted, IsSteamIdWhitelistCached, IsSteamIdBlacklistCached.
  • See serverwhitelistadvanced.inc for more information concerning that development stuff.
  • Added support for TidyKick (if you don't want "Disconnect:" in front of your kick message). See ConVar "whitelist_tidykick".
  • If you want to compile locally at this time, you'll need the tidykick.inc attached, as the one given by Dr. MacKay doesn't Mark natives as optional correctlyhe fixed his. You'll also need serverwhitelistadvanced.inc. Both goes in the /include/ folder.

Red
__________________
My plugins :
Red Maze
Afk Bomb
RAWR (per player/rounds Awp Restrict.)
Kill Assist
Be Medic

You can also Donate if you appreciate my work

Last edited by RedSword; 12-19-2012 at 21:15.
RedSword is offline
lsmxlt
New Member
Join Date: Mar 2013
Old 03-05-2013 , 16:43   Re: [Any] Server Whitelist Advanced (1.2.0 ; Bugfix, Natives, Forwards, TidyKick)
Reply With Quote #16

Download offline Please fix? ;x
lsmxlt is offline
RedSword
SourceMod Plugin Approver
Join Date: Mar 2006
Location: Quebec, Canada
Old 03-05-2013 , 17:04   Re: [Any] Server Whitelist Advanced (1.2.0 ; Bugfix, Natives, Forwards, TidyKick)
Reply With Quote #17

Quote:
Originally Posted by lsmxlt View Post
Download offline Please fix? ;x
?
__________________
My plugins :
Red Maze
Afk Bomb
RAWR (per player/rounds Awp Restrict.)
Kill Assist
Be Medic

You can also Donate if you appreciate my work
RedSword is offline
RedSword
SourceMod Plugin Approver
Join Date: Mar 2006
Location: Quebec, Canada
Old 11-10-2013 , 23:42   Re: [Any] Server Whitelist Advanced (1.2.0 ; Bugfix, Natives, Forwards, TidyKick)
Reply With Quote #18

Updated groupid.php (Steam Group Id finder) link in OP :

http://fennec.limetech.org/groupid.php

Thank you asherkin.

Red
__________________
My plugins :
Red Maze
Afk Bomb
RAWR (per player/rounds Awp Restrict.)
Kill Assist
Be Medic

You can also Donate if you appreciate my work
RedSword is offline
asherkin
SourceMod Developer
Join Date: Aug 2009
Location: OnGameFrame()
Old 11-13-2013 , 09:51   Re: [Any] Server Whitelist Advanced (1.2.0 ; Bugfix, Natives, Forwards, TidyKick)
Reply With Quote #19

PHP Code:
public __ext_SteamTools_SetNTVOptional()
{
    
MarkNativeAsOptional("Steam_RequestGroupStatus");

This doesn't belong in a plugin, natives should be marked as optional in AskPluginLoad2, SetNTVOptional is only for the use of include files.

PHP Code:
    //Why Asher, Whyyyyyyyyyyyy
    
if ( client == -
You should use the constant USE_CUSTOM_STEAMID rather than -1.

Need to check the return value of GetClientAuthString, it can return false and not write to the buffer.

You can optimize strStartsWith by using strncmp.
__________________
asherkin is offline
RedSword
SourceMod Plugin Approver
Join Date: Mar 2006
Location: Quebec, Canada
Old 11-13-2013 , 17:26   Re: [Any] Server Whitelist Advanced (1.2.1)
Reply With Quote #20

1.2.1 released :
  • MarkNativeAsOptional now in AskPluginLoad2
  • Using USE_CUSTOM_STEAMID rather than -1
  • Using strncmp in strStartsWith
  • Checking return value of all GetClientAuthString and GetClientIP
  • Added quotes for the logged message when changing kick message.
__________________
My plugins :
Red Maze
Afk Bomb
RAWR (per player/rounds Awp Restrict.)
Kill Assist
Be Medic

You can also Donate if you appreciate my work
RedSword 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 19:23.


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