From b12c6807e4517589ef51be1859ddacb0a2de61bc Mon Sep 17 00:00:00 2001 From: ShadowNet Date: Wed, 23 Mar 2022 23:35:09 -0400 Subject: [PATCH 1/4] Update - Select spanish language --- README.md | 6 +++++- README_ES.md | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 README_ES.md diff --git a/README.md b/README.md index 1701b40..4467924 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ -# ![logo](https://raw.githubusercontent.com/azerothcore/azerothcore.github.io/master/images/logo-github.png) AzerothCore +# ![logo](https://raw.githubusercontent.com/azerothcore/azerothcore.github.io/master/images/logo-github.png) AzerothCore + +[English](README.md) | [Español](README_ES.md) + ## Anticheat Module + - Latest build status with azerothcore: [![Build Status](https://github.com/azerothcore/mod-anticheat/workflows/core-build/badge.svg?branch=master&event=push)](https://github.com/azerothcore/mod-anticheat) This is a port of the PassiveAnticheat Script from lordpsyan's repo to [AzerothCore](http://www.azerothcore.org) diff --git a/README_ES.md b/README_ES.md new file mode 100644 index 0000000..5f28270 --- /dev/null +++ b/README_ES.md @@ -0,0 +1 @@ + \ No newline at end of file From b7c0793fe9dfd34e1358a8ed8b9e990d0967f762 Mon Sep 17 00:00:00 2001 From: ShadowNet Date: Thu, 24 Mar 2022 00:01:58 -0400 Subject: [PATCH 2/4] Update README_ES --- README.md | 4 ++-- README_ES.md | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 53 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4467924..e6ec31d 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ## Anticheat Module -- Latest build status with azerothcore: [![Build Status](https://github.com/azerothcore/mod-anticheat/workflows/core-build/badge.svg?branch=master&event=push)](https://github.com/azerothcore/mod-anticheat) +- Latest build status with AzerothCore: [![Build Status](https://github.com/azerothcore/mod-anticheat/workflows/core-build/badge.svg?branch=master&event=push)](https://github.com/azerothcore/mod-anticheat) This is a port of the PassiveAnticheat Script from lordpsyan's repo to [AzerothCore](http://www.azerothcore.org) @@ -46,6 +46,6 @@ If you need to change the module configuration, go to your server configuration - [ ] LOCALE_deDE = 3 - [ ] LOCALE_zhCN = 4 - [ ] LOCALE_zhTW = 5 -- [ ] LOCALE_esES = 6 +- [x] LOCALE_esES = 6 - [ ] LOCALE_esMX = 7 - [ ] LOCALE_ruRU = 8 diff --git a/README_ES.md b/README_ES.md index 5f28270..5371907 100644 --- a/README_ES.md +++ b/README_ES.md @@ -1 +1,51 @@ - \ No newline at end of file +# ![logo](https://raw.githubusercontent.com/azerothcore/azerothcore.github.io/master/images/logo-github.png) AzerothCore + +[English](README.md) | [Español](README_ES.md) + +## Módulo Antitrampas + +- Último estado de compilación con AzerothCore: [![Build Status](https://github.com/azerothcore/mod-anticheat/workflows/core-build/badge.svg?branch=master&event=push)](https://github.com/azerothcore/mod-anticheat) + +Este es una puertada del PassiveAnticheat Script del repositorio de lordpsyan's a [AzerothCore](http://www.azerothcore.org) + +## Aviso + +Requiere revisión [c50f7feda](https://github.com/azerothcore/azerothcore-wotlk/commit/c50f7feda0ee360f7bcca7f004bf6fb22abde533) o posterior. + +## Cómo instalar + +### 1) Simplemente coloque el módulo en la carpeta `modules` de su carpeta de origen de AzerothCore. + +Puede clonarlo a través de git en el directorio azerothcore/modules: + +`cd path/to/azerothcore/modules` + +`git clone https://github.com/azerothcore/mod-anticheat.git` + +o puede [descargar manualmente el módulo](https://github.com/azerothcore/mod-anticheat/archive/master.zip), descomprimirlo y colocarlo en el directorio `azerothcore/modules`. + +### 2) Vuelva a ejecutar cmake e inicie una compilación limpia de AzerothCore + +### 3) Ejecute el archivo "\sql\characters\base\charactersdb_anticheat.sql" incluido en su base de datos de personajes y ejecute "\sql\world\Acore_strings.sql" en su base de datos world. Esto crea las tablas necesarias para este módulo. + +**Eso es todo.** + +### (Opcional) Editar configuración del módulo + +Si necesita cambiar la configuración del módulo, vaya a la carpeta de configuración de su servidor (p.ej. **etc**. ), copie `Anticheat.conf.dist` a `Anticheat.conf` y edítelo como prefiera. + +# Problemas conocidos y lista de TODO: + +- [ ] Identifique cualquier clase/hechizo que dé falsos positivos, hasta ahora solo se ha informado blink y killingspree. +- [ ] CActualmente no hay una columna dedicada para ignorar el control o el informe de hack de teletransporte, pero los números se agregan al informe total. Los mensajes personalizados se ajustan en Acore_string para esos dos anticheats. La razón es que, por alguna maldita razón, estamos obteniendo números altos poco realistas que se informan en el sql si agrego otra columna o dos. No tengo idea de por qué sucede eso. + +# Localizar Acore_Strings +- [x] LOCALE_enUS = 0 +- [ ] LOCALE_koKR = 1 +- [ ] LOCALE_frFR = 2 +- [ ] LOCALE_deDE = 3 +- [ ] LOCALE_zhCN = 4 +- [ ] LOCALE_zhTW = 5 +- [x] LOCALE_esES = 6 +- [ ] LOCALE_esMX = 7 +- [ ] LOCALE_ruRU = 8 From d90f627b879c53759e29b76d4b023874c3858ecd Mon Sep 17 00:00:00 2001 From: ShadowNet Date: Thu, 24 Mar 2022 00:03:44 -0400 Subject: [PATCH 3/4] Update Locales --- README.md | 2 +- README_ES.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e6ec31d..e17c5d3 100644 --- a/README.md +++ b/README.md @@ -47,5 +47,5 @@ If you need to change the module configuration, go to your server configuration - [ ] LOCALE_zhCN = 4 - [ ] LOCALE_zhTW = 5 - [x] LOCALE_esES = 6 -- [ ] LOCALE_esMX = 7 +- [x] LOCALE_esMX = 7 - [ ] LOCALE_ruRU = 8 diff --git a/README_ES.md b/README_ES.md index 5371907..d826737 100644 --- a/README_ES.md +++ b/README_ES.md @@ -47,5 +47,5 @@ Si necesita cambiar la configuración del módulo, vaya a la carpeta de configur - [ ] LOCALE_zhCN = 4 - [ ] LOCALE_zhTW = 5 - [x] LOCALE_esES = 6 -- [ ] LOCALE_esMX = 7 +- [x] LOCALE_esMX = 7 - [ ] LOCALE_ruRU = 8 From 48303b70cf40e30cb0b89872ab5301e0f7dfa1c3 Mon Sep 17 00:00:00 2001 From: ShadowNet Date: Thu, 24 Mar 2022 00:15:16 -0400 Subject: [PATCH 4/4] Update Acore_string sp-mx --- sql/world/Acore_strings.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sql/world/Acore_strings.sql b/sql/world/Acore_strings.sql index 1ff11f1..fe659ca 100644 --- a/sql/world/Acore_strings.sql +++ b/sql/world/Acore_strings.sql @@ -1,5 +1,5 @@ -DELETE FROM `acore_string` WHERE `entry` IN (30087,30088,30089); +DELETE FROM `acore_string` WHERE `entry` IN (30087,30088,30089); INSERT INTO `acore_string` (`entry`, `content_default`, `locale_koKR`, `locale_frFR`, `locale_deDE`, `locale_zhCN`, `locale_zhTW`, `locale_esES`, `locale_esMX`, `locale_ruRU`) VALUES -(30087, '|cffffff00[|cffff0000ANTICHEAT ALERT|r|cffffff00]:|r |cFFFF8C00|r |cFFFF8C00[|Hplayer:%s|h%s|h|r|cFFFF8C00]:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -(30088, '|cffffff00[|cffff0000ANTICHEAT ALERT|r|cffffff00]:|r POSSIBLE TELEPORT HACK DETECTED|cFFFF8C00 %s|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -(30089, '|cffffff00[|cffff0000ANTICHEAT ALERT|r|cffffff00]:|r POSSIBLE IGNORE CONTROL HACK DETECTED|cFFFF8C00] %s|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +(30087, '|cffffff00[|cffff0000ANTICHEAT ALERT|r|cffffff00]:|r |cFFFF8C00|r |cFFFF8C00[|Hplayer:%s|h%s|h|r|cFFFF8C00]:', NULL, NULL, NULL, NULL, NULL, '|cffffff00[|cffff0000ALERTA ANTITRAMPAS|r|cffffff00]:|r |cFFFF8C00|r |cFFFF8C00[|Hplayer:%s|h%s|h|r|cFFFF8C00]:', '|cffffff00[|cffff0000ALERTA ANTITRAMPAS|r|cffffff00]:|r |cFFFF8C00|r |cFFFF8C00[|Hplayer:%s|h%s|h|r|cFFFF8C00]:', NULL), +(30088, '|cffffff00[|cffff0000ANTICHEAT ALERT|r|cffffff00]:|r POSSIBLE TELEPORT HACK DETECTED|cFFFF8C00 %s|r', NULL, NULL, NULL, NULL, NULL, '|cffffff00[|cffff0000ALERTA ANTITRAMPAS|r|cffffff00]:|r POSIBLE HACK DE TELEPORTE DETECTADO|cFFFF8C00 %s|r', '|cffffff00[|cffff0000ALERTA ANTITRAMPAS|r|cffffff00]:|r POSIBLE HACK DE TELEPORTE DETECTADO|cFFFF8C00 %s|r', NULL), +(30089, '|cffffff00[|cffff0000ANTICHEAT ALERT|r|cffffff00]:|r POSSIBLE IGNORE CONTROL HACK DETECTED|cFFFF8C00] %s|r', NULL, NULL, NULL, NULL, NULL, '|cffffff00[|cffff0000ALERTA ANTITRAMPAS|r|cffffff00]:|r POSIBLE CONTROL DE HACK DETECTADO IGNORARADO|cFFFF8C00] %s|r', '|cffffff00[|cffff0000ALERTA ANTITRAMPAS|r|cffffff00]:|r POSIBLE CONTROL DE HACK DETECTADO IGNORARADO|cFFFF8C00] %s|r', NULL);