CS.RIN.RU - Steam Underground Community
http://cs.rin.ru/forum/

[Release] dproto [0.9.356] - HLDS serverside crack (13/11/2013)
http://cs.rin.ru/forum/viewtopic.php?f=29&t=55986
Page 10 of 153

Author:  moth3 [ Saturday, 12 Jun 2010, 23:19 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

V I R U S wrote:
Same here as the rest.
Engine 4883 + DProto 0.4.8 = badf load... Any fix?


apt-get install lib32stdc++6


run as root of course.. that will fix it

Author:  AraneL- [ Sunday, 13 Jun 2010, 00:55 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

moth3 wrote:
V I R U S wrote:
Same here as the rest.
Engine 4883 + DProto 0.4.8 = badf load... Any fix?


apt-get install lib32stdc++6


run as root of course.. that will fix it


[root@dec ~]$ apt-get install lib32stdc++6
-bash: apt-get: command not found


how to centos ?

Author:  moth3 [ Sunday, 13 Jun 2010, 00:59 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

try yum install.. you should have yum on centos. if not search for a rpm

Author:  EdiS. [ Sunday, 13 Jun 2010, 15:01 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

We wait a new versiooon crock :D

Author:  sLiterok [ Sunday, 13 Jun 2010, 15:25 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

yokomo wrote:
---edited---
don't work p47 with revEmu still can enter my server.
cid_OldRevEmu = For players having old revEmu on client-side (that's mean old version of revEmu, not a protocol)
New version of revemu cant work with p47 clients.
Why do you think that players connect to your server from p47?

Author:  lespaul [ Sunday, 13 Jun 2010, 19:04 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

sLiterok wrote:
New version of revemu cant work with p47 clients.
Why do you think that players connect to your server from p47?

because my friend put revEmu 9.8.2 into cs1.6 v23b and he can join my server. cs1.6 v23b is an old client from p47. and many people in my country still using an old cs client from digitalzone v35 p47 (revEmu). now i need to stop them because p47 allowed many alias script such as bhop, rapid-burst, russian duck, awp fast-scope. p48 already block all of this, thats why i need p48 only in my server.

Author:  sLiterok [ Monday, 14 Jun 2010, 10:13 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

Maybe this plugin can help you, but it cant be usefull from very old builds of cs1.6

  1.    #include <amxmodx>
  2.  
  3.     #define PLUGIN "Client Version"
  4.     #define VERSION "1.0"
  5.     #define AUTHOR "DJ_WEST"
  6.  
  7.     #define KICK_REASON "Please update you game client!"
  8.     #define CLIENT_VERSION "sv_version"
  9.     #define PATCHES 9
  10.  
  11.     new g_MinVersion
  12.  
  13.     enum DATA
  14.     {
  15.         CL_VERSION,
  16.         CL_PATCH
  17.     }
  18.  
  19.     new const g_Version[PATCHES][DATA][] =
  20.     {
  21.         { "1.1.2.5,47,3329", "27" },
  22.         { "1.1.2.5,47,3382", "28" },
  23.         { "1.1.2.5,47,3647", "29" },
  24.         { "1.1.2.5,47,3647", "30" },
  25.         { "1.1.2.5,47,3779", "31" },
  26.         { "1.1.2.5/2.0.0.0,47,3939", "33" },
  27.         { "1.1.2.5/2.0.0.0,47,4156", "34" },
  28.         { "1.1.2.5/2.0.0.0,47,4156", "35" },
  29.         { "1.1.2.6/2.0.0.0,47,4156", "36" }
  30.     }
  31.  
  32.     public plugin_init()
  33.     {
  34.         register_plugin(PLUGIN, VERSION, AUTHOR)
  35.        
  36.         g_MinVersion = register_cvar("amx_client_version", "40")
  37.     }
  38.  
  39.     public client_putinserver(id)
  40.         set_task(1.0, "Check_Version", id)
  41.  
  42.     public Check_Version(id)
  43.     {
  44.         if (is_user_bot(id))
  45.             return PLUGIN_HANDLED
  46.            
  47.         query_client_cvar(id, CLIENT_VERSION, "Cvar_Result")
  48.        
  49.         return PLUGIN_HANDLED
  50.     }
  51.        
  52.     public Cvar_Result(id, const s_Cvar[], const s_Value[])
  53.     {
  54.         if (equal(s_Cvar, CLIENT_VERSION) && s_Value[0])
  55.         {
  56.             new s_MinVersion[32], i_MinVersion
  57.            
  58.             get_pcvar_string(g_MinVersion, s_MinVersion, charsmax(s_MinVersion))
  59.             i_MinVersion = str_to_num(s_MinVersion)
  60.            
  61.             for (new i = 0; i < PATCHES; i++)
  62.                 if (equal(g_Version[i][CL_VERSION], s_Value))
  63.                 {
  64.                     new i_Patch, i_UserID
  65.                    
  66.                     i_Patch = str_to_num(g_Version[i][CL_PATCH])
  67.                     i_UserID = get_user_userid(id)
  68.                    
  69.                     if (i_Patch < i_MinVersion)
  70.                         server_cmd("kick #%d %s", i_UserID, KICK_REASON)
  71.                 }        
  72.         }
  73.     }
  74.      

Author:  lespaul [ Monday, 14 Jun 2010, 10:50 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

sLiterok wrote:
Maybe this plugin can help you, but it cant be usefull from very old builds of cs1.6

  1.    #include <amxmodx>
  2.  
  3.     #define PLUGIN "Client Version"
  4.     #define VERSION "1.0"
  5.     #define AUTHOR "DJ_WEST"
  6.  
  7.     #define KICK_REASON "Please update you game client!"
  8.     #define CLIENT_VERSION "sv_version"
  9.     #define PATCHES 9
  10.  
  11.     new g_MinVersion
  12.  
  13.     enum DATA
  14.     {
  15.         CL_VERSION,
  16.         CL_PATCH
  17.     }
  18.  
  19.     new const g_Version[PATCHES][DATA][] =
  20.     {
  21.         { "1.1.2.5,47,3329", "27" },
  22.         { "1.1.2.5,47,3382", "28" },
  23.         { "1.1.2.5,47,3647", "29" },
  24.         { "1.1.2.5,47,3647", "30" },
  25.         { "1.1.2.5,47,3779", "31" },
  26.         { "1.1.2.5/2.0.0.0,47,3939", "33" },
  27.         { "1.1.2.5/2.0.0.0,47,4156", "34" },
  28.         { "1.1.2.5/2.0.0.0,47,4156", "35" },
  29.         { "1.1.2.6/2.0.0.0,47,4156", "36" }
  30.     }
  31.  
  32.     public plugin_init()
  33.     {
  34.         register_plugin(PLUGIN, VERSION, AUTHOR)
  35.        
  36.         g_MinVersion = register_cvar("amx_client_version", "40")
  37.     }
  38.  
  39.     public client_putinserver(id)
  40.         set_task(1.0, "Check_Version", id)
  41.  
  42.     public Check_Version(id)
  43.     {
  44.         if (is_user_bot(id))
  45.             return PLUGIN_HANDLED
  46.            
  47.         query_client_cvar(id, CLIENT_VERSION, "Cvar_Result")
  48.        
  49.         return PLUGIN_HANDLED
  50.     }
  51.        
  52.     public Cvar_Result(id, const s_Cvar[], const s_Value[])
  53.     {
  54.         if (equal(s_Cvar, CLIENT_VERSION) && s_Value[0])
  55.         {
  56.             new s_MinVersion[32], i_MinVersion
  57.            
  58.             get_pcvar_string(g_MinVersion, s_MinVersion, charsmax(s_MinVersion))
  59.             i_MinVersion = str_to_num(s_MinVersion)
  60.            
  61.             for (new i = 0; i < PATCHES; i++)
  62.                 if (equal(g_Version[i][CL_VERSION], s_Value))
  63.                 {
  64.                     new i_Patch, i_UserID
  65.                    
  66.                     i_Patch = str_to_num(g_Version[i][CL_PATCH])
  67.                     i_UserID = get_user_userid(id)
  68.                    
  69.                     if (i_Patch < i_MinVersion)
  70.                         server_cmd("kick #%d %s", i_UserID, KICK_REASON)
  71.                 }        
  72.         }
  73.     }
  74.      


yeah an amxx plugin, this is what i'm waiting for. i will add more old client from p47 for this plugin.. will test it, thanks dude, are you the author of this plugin?

Author:  sLiterok [ Monday, 14 Jun 2010, 11:13 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

yokomo wrote:
sLiterok wrote:
Maybe this plugin can help you, but it cant be usefull from very old builds of cs1.6

  1.    #include <amxmodx>
  2.  
  3.     #define PLUGIN "Client Version"
  4.     #define VERSION "1.0"
  5.     #define AUTHOR "DJ_WEST"
  6.  
  7.     #define KICK_REASON "Please update you game client!"
  8.     #define CLIENT_VERSION "sv_version"
  9.     #define PATCHES 9
  10.  
  11.     new g_MinVersion
  12.  
  13.     enum DATA
  14.     {
  15.         CL_VERSION,
  16.         CL_PATCH
  17.     }
  18.  
  19.     new const g_Version[PATCHES][DATA][] =
  20.     {
  21.         { "1.1.2.5,47,3329", "27" },
  22.         { "1.1.2.5,47,3382", "28" },
  23.         { "1.1.2.5,47,3647", "29" },
  24.         { "1.1.2.5,47,3647", "30" },
  25.         { "1.1.2.5,47,3779", "31" },
  26.         { "1.1.2.5/2.0.0.0,47,3939", "33" },
  27.         { "1.1.2.5/2.0.0.0,47,4156", "34" },
  28.         { "1.1.2.5/2.0.0.0,47,4156", "35" },
  29.         { "1.1.2.6/2.0.0.0,47,4156", "36" }
  30.     }
  31.  
  32.     public plugin_init()
  33.     {
  34.         register_plugin(PLUGIN, VERSION, AUTHOR)
  35.        
  36.         g_MinVersion = register_cvar("amx_client_version", "40")
  37.     }
  38.  
  39.     public client_putinserver(id)
  40.         set_task(1.0, "Check_Version", id)
  41.  
  42.     public Check_Version(id)
  43.     {
  44.         if (is_user_bot(id))
  45.             return PLUGIN_HANDLED
  46.            
  47.         query_client_cvar(id, CLIENT_VERSION, "Cvar_Result")
  48.        
  49.         return PLUGIN_HANDLED
  50.     }
  51.        
  52.     public Cvar_Result(id, const s_Cvar[], const s_Value[])
  53.     {
  54.         if (equal(s_Cvar, CLIENT_VERSION) && s_Value[0])
  55.         {
  56.             new s_MinVersion[32], i_MinVersion
  57.            
  58.             get_pcvar_string(g_MinVersion, s_MinVersion, charsmax(s_MinVersion))
  59.             i_MinVersion = str_to_num(s_MinVersion)
  60.            
  61.             for (new i = 0; i < PATCHES; i++)
  62.                 if (equal(g_Version[i][CL_VERSION], s_Value))
  63.                 {
  64.                     new i_Patch, i_UserID
  65.                    
  66.                     i_Patch = str_to_num(g_Version[i][CL_PATCH])
  67.                     i_UserID = get_user_userid(id)
  68.                    
  69.                     if (i_Patch < i_MinVersion)
  70.                         server_cmd("kick #%d %s", i_UserID, KICK_REASON)
  71.                 }        
  72.         }
  73.     }
  74.      


yeah an amxx plugin, this is what i'm waiting for. i will add more old client from p47 for this plugin.. will test it, thanks dude, are you the author of this plugin?
I'm not, DJ_WEST is the author.

  1. g_MinVersion = register_cvar("amx_client_version", "40")
amx_client_version this is the minimal version from which you can play

And you also should add here the minimal version of p48 (i'm not sure, but it may be 40 patch and i dont know his sv_version
  1. new const g_Version[PATCHES][DATA][] =
  2. {
  3.     { "1.1.2.5,47,3329", "27" },
  4.     { "1.1.2.5,47,3382", "28" },
  5.     { "1.1.2.5,47,3647", "29" },
  6.     { "1.1.2.5,47,3647", "30" },
  7.     { "1.1.2.5,47,3779", "31" },
  8.     { "1.1.2.5/2.0.0.0,47,3939", "33" },
  9.     { "1.1.2.5/2.0.0.0,47,4156", "34" },
  10.     { "1.1.2.5/2.0.0.0,47,4156", "35" },
  11.     { "1.1.2.6/2.0.0.0,47,4156", "36" }
  12. }

Author:  ryab [ Tuesday, 15 Jun 2010, 09:42 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

Hm. query_client_cvar? And how about "Host_Error: UserMsg: Not Present on Client 58"?

Author:  lowskill [ Tuesday, 15 Jun 2010, 21:44 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

ryab wrote:
Hm. query_client_cvar? And how about "Host_Error: UserMsg: Not Present on Client 58"?

war3FT mod?

Author:  retrib [ Tuesday, 15 Jun 2010, 23:30 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

query_client_cvar function causes hangups and errors on p47. it is well known fact.

plugin is pretty much useless.

Author:  (--eRRoR--) [ Wednesday, 16 Jun 2010, 02:13 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

lowskill wrote:
(--eRRoR--) wrote:
how can i update my enginge to engine version 4883


./steam -command update -game cstrike -verify_all -dir .


thakns.It worked.

Author:  -Px- [ Wednesday, 16 Jun 2010, 10:16 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

retrib wrote:
query_client_cvar function causes hangups and errors on p47. it is well known fact.

On p47 with patch lower than 23b, higher versions works fine

Author:  rumbeto [ Friday, 18 Jun 2010, 17:05 ]
Post subject:  Re: dproto [0.4.8] - HLDS serverside crack

I'm trying to run subserver on a linux system, but it seems that it is not binded to the ip address that I set in SubServer_IP. It binds it on 0.0.0.0 which of course is a huge problem for me.

Here is my configuration:

SubServer_Enable = 1
SubServer_Port = 27016
SubServer_MasterClient = 0
SubServer_AnswerType = 2
SubServer_RedirectCommand = connect xx.xx.xx.xx:27015
SubServer_IP = xx.xx.xx.xx

Page 10 of 153 All times are UTC + 3 hours
Powered by phpBB® Forum Software © phpBB Group
https://www.phpbb.com/