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

[ES] Detectar el sXe disabler


  
 
 
Thread Tools Display Modes
Author Message
Krycek
Member
Join Date: Nov 2009
Old 07-30-2010 , 14:35   [ES] Detectar el sXe disabler
#1

Hay alguna forma de detectar el sXe disabler por medio de un plugin ? ya que este disabler crea un comando de cliente llamado "Sicheats-HWID" donde cualquiera puede ingresar un falso HWID, entonces mi pregunta es, se podria hacer un plugin que detecte ese comando en el cliente, y si es asi, banearlo.

Last edited by Krycek; 07-30-2010 at 14:43.
Krycek is offline
lucas_7_94
Leche Loco
Join Date: Mar 2009
Location: Argentina
Old 07-30-2010 , 14:39   Re: Detectar el sXe disabler
#2

Primero , Lee Las reglas.
Segundo , usas no steam no ?
__________________
ATWWMH - MiniDuels
Madness is like gravity, just need a little push.
lucas_7_94 is offline
Send a message via Skype™ to lucas_7_94
Krycek
Member
Join Date: Nov 2009
Old 07-30-2010 , 14:42   Re: Detectar el sXe disabler
#3

ahi le puse el tag, y steam/nosteam, no viene al caso, yo estoy hablando del sXe.
Krycek is offline
Ezio.-
Member
Join Date: Jul 2010
Location: Santiago Del Estero
Old 07-30-2010 , 14:46   Re: Detectar el sXe disabler
#4

Quote:
Originally Posted by Krycek View Post
ahi le puse el tag, y steam/nosteam, no viene al caso, yo estoy hablando del sXe.
Como que no?

Aca en AM solo se da soporte a steam leete las reglas y sxe es para no steam aunque soporte steam D:
__________________
[IMG]http://img6.**************/img6/1303/fsbf.png[/IMG]
Ezio.- is offline
Send a message via MSN to Ezio.-
Krycek
Member
Join Date: Nov 2009
Old 07-30-2010 , 14:50   Re: Detectar el sXe disabler
#5

Quote:
Originally Posted by Ezio.- View Post
Como que no?

Aca en AM solo se da soporte a steam leete las reglas y sxe es para no steam aunque soporte steam D:
decime donde dice la palabra steam en las reglas ?

http://forums.alliedmods.net/showthread.php?t=107123
Krycek is offline
lucas_7_94
Leche Loco
Join Date: Mar 2009
Location: Argentina
Old 07-30-2010 , 14:53   Re: [ES] Detectar el sXe disabler
#6

Quote:
Originally Posted by Reglas Alliedmodders
Steam cracks
  • You do not need to own Steam to participate in these forums. However, publicizing violations of the Digital Millennium Copyright Act (DMCA) will result in a ban. This includes...
  • Linking to sites that are targeted toward cracking Steam or circumventing its copyright protection.
  • Asking for support against cracked or illegitimate versions of Steam, either directly or via evidence in your request.
  • Mentioning that you, or promoting the act of, cracking Steam or circumventing its copyright protection.
  • Promoting the running of "non-steam" or "no-steam" servers, or publicizing that you run such servers
y el uso del doble protocolo tambien refiere a los no steamers.
__________________
ATWWMH - MiniDuels
Madness is like gravity, just need a little push.
lucas_7_94 is offline
Send a message via Skype™ to lucas_7_94
Krycek
Member
Join Date: Nov 2009
Old 07-30-2010 , 14:54   Re: [ES] Detectar el sXe disabler
#7

ajam ok, y en que regla dice que no se puede postear nada relacionado con sXe ?
Krycek is offline
lucas_7_94
Leche Loco
Join Date: Mar 2009
Location: Argentina
Old 07-30-2010 , 14:56   Re: [ES] Detectar el sXe disabler
#8

Quote:
Originally Posted by Krycek View Post
ajam ok, y en que regla dice que no se puede postear nada relacionado con sXe ?
para que necesitas SXE si tenes usuarios que juegan STEAM ? lol.

btw, lo qe pedis es slowhack , asique , no se puede.
__________________
ATWWMH - MiniDuels
Madness is like gravity, just need a little push.
lucas_7_94 is offline
Send a message via Skype™ to lucas_7_94
Krycek
Member
Join Date: Nov 2009
Old 07-30-2010 , 15:03   Re: [ES] Detectar el sXe disabler
#9

Quote:
Originally Posted by lucas_7_94 View Post
btw, lo qe pedis es slowhack , asique , no se puede.
tan dificil era poner eso ? gracias igual, borren esto o cierrenlon, como quieran.
Krycek is offline
Alucard^
AMXX Moderator: Others
Join Date: Sep 2007
Location: Street
Old 07-30-2010 , 15:49   Re: [ES] Detectar el sXe disabler
#10

Se estan equivocando gente... si bien el sXe se usa generalmente en no-steam no significa que este post sea considerado como "nosteam = no support" aparte de que lo que el pregunta podria ser preguntado de otra forma y no tiene nada que ver con nosteam.

Deberian cortarla un poco con el temita de nosteam, porque una cosa es que se respeten las reglas e imponer las reglas y otra es estar todo el dia al tanto de que si se pide o no algo sobre nosteam, ya parece como una paranoia o.O.

Respecto a lo que el pide, no es slowhack, o por lo menos como yo lo entendi.

En fin, lo que vos queres es detectar si el user tiene una cvar llamada Sicheats-HWID, no?

Code:
#include <amxmodx> #define PLUGIN  "Simple Anti-Cheat" #define AUTHOR  "Alucard" #define VERSION "0.0.1" #define BAN_TIME 0  // 0 es ban permanente, y sino le pones el tiempo en minutos del baneo public plugin_init() {     register_plugin(PLUGIN, VERSION, AUTHOR); } public client_connect(iClient) {     set_task(1.0, "CheckClientCvar", iClient); } public CheckClientCvar(iClient) {     if(is_user_connected(iClient) )         query_client_cvar(iClient, "Sicheats-HWID", "ShicheatsCvarResult"); } public ShicheatsCvarResult(iClient, const szCvar[], const szValue[]) {     if(szValue[0] != 'B')     {         new szSteamID[48];         get_user_authid(iClient, szSteamID, 47);         BanPlayer(iClient, szSteamID);     } } stock BanPlayer(iClient, const szSteamID[])     server_cmd("kick #%d;wait;wait;wait;banid %d %s;wait;wait;wait;writeid", get_user_userid(iClient), BAN_TIME, szSteamID);

Pero si tenes no-steam olvidate ya que la funcion query_client_cvar( ) no funca en usarios no-steam o mejor dicho no funciona con usuarios de clientes viejos (deben tener clientes con protocolo 48 ).
__________________
Approved Plugins - Steam Profile

Public non-terminated projects:
All Admins Menu, HLTV parameters, Subnick,
Second Password (cool style), InfoZone,
Binary C4 plant/defuse, and more...

Private projects:
NoSpec (+menu), NV Surf Management,
PM Adanved System, KZ longjump2, and more...
Alucard^ is offline
Send a message via Skype™ to Alucard^
 



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 13:18.


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