Jump to content


Sider (PES 2019 PC) 5.4.2


¿Quieres enterarte al momento de las nuevas descargas? Síguenos en Twitter o Mastodon!
Ayúdanos con el mantenimiento de la web con una donación vía Paypal.

The "LiveCPK" feature makes it possible to replace game content at run-time with content from files stored on disk, instead of having to pack everything into CPK-archives. (This feature is similar to Kitserver's AFS2FS and to FileLoader for earler versions of PES).

If you know a little bit how to program, you can write your own game logic using Sider's scripting engine, which uses Lua. This requires some reading and understanding of how the game works, but it's really not that hard ;-) See scripting.txt - for detailed documentation on that.

HOW TO USE:
-----------

  • Run sider.exe, it will open a small window, which you can minimize if you want, but do not close it.
  • Run the game.
  • Sider should automatically attach to the game process.
  • If you don't see the effects of Sider in the game, check the sider.log file (in the same folder where sider.exe is) - it should contain some helpful information on what went wrong.

SETTINGS (SIDER.INI)
--------------------

There are several settings you can set in sider.ini:


exe.name = "\PES2019.exe"

- this sets the pattern(s) that the Sider program will use to identify which of the running processes is the game. You can have multiple "exe.name" lines in your sider.ini, which is useful, for example, if you have several exe files with slightly different names that you use for online/offline play.

free.side.select = 1

- enables free movement of controllers. Normally, it is only possible in Exhibition modes, but with this setting set to 1, you will be able to move the controllers in the competition modes too.

The 1st controller can also be moved into the middle, disabling it effectively. Use this carefully in the matches: if you move 1st controller into the middle, make sure that you have at least one other controller on the left or on the right. Otherwise, you will lose the control of the match. (default is: 0 - free movement disabled)

livecpk.enabled = 1

- Turns on the LiveCPK functionality of Sider. See below for a more detailed explanation in cpk.root option section.

debug = 0

- Setting this to values > 0 will make Sider output some additional information into the log file (sider.log). This is useful primarily for troubleshooting. Extra logging may slow the game down, so normally you would want to keep this setting set to 0. (Defaults to 0: some info, but no extra output)

close.on.exit = 0

- If this setting is set to 1, then Sider will close itself, when the game exits. This can be handy, if you use a batch file to start sider automatically right before the game is launched. (Defaults to 0: do not close)

start.minimized = 0

- If you set this to 1, then Sider will start with a minimized window. Again, like the previous option, this setting can be helpful, if you use a batch file to auto-start sider, just before the game launches. (Defaults to 0: normal window)

cpk.root = "c:\cpk-roots\balls-root"
cpk.root = "c:\cpk-roots\kits-root"
cpk.root = ".\another-root\stadiums"

- Specifies root folder (or folders), where the game files are stored that will be used for content replacing at run-time. It works like this:

For example, the game wants to load a file that is stored in some CPK, with the relative path of "common/render/thumbnail/ball/ball_001.dds". Sider will intercept that action and check if one of the root folders have this file. If so, Sider will make the game read the content from that file instead of using game's original content. If multiple roots are specified, then they are checked in order that they are listed in sider.ini. As soon as there is a filename match, the lookup stops. (So, higher root will win, if both of them have the same file). You can use either absolute paths or relative.

Relative paths will be calculated relative to the folder where sider.exe is located.

lua.enabled = 1

- This turns on/off the scripting support. Extension modules can be written in Lua 5.1 (LuaJIT), using a subset of standard libraries and also objects and events provides by sider. See "scripting.txt" file for a programmer's guide to writing lua modules for sider.

lua.module = "camera.lua"
lua.module = "kitrewrite.lua"

- Specifies the order in which the extension modules are loaded. These modules must be in "modules" folder inside the sider root directory.

lua.gc.opt = "step"

- This option allows to tweak Lua garbage collector (GC) behaviour. Two supported values are: "step" - for incremental collection, and "collect" - for full collection. Default is "step", and typically, you do not need to modify this, unless you see Lua memory errors in the log. In which case, try "collect".

overlay.enabled = 1

- This option enables an interactive overlay. The overlay can display text that is provided by Lua modules, with one module having control of the overlay at any given time. By pressing a hotkey (set by overlay.vkey.next-module option) the control of the overlay can be switched to the next module, and so on. The overlay is toggled on/off with another hotkey, set by overlay.vkey.toggle option. When the overlay is on, the key presses are passed on to the module that is currently in control of the overlay. The module can handle those key events in whatever way it needs to, or ignore them altogether. For more information, see scripting.txt

overlay.on-from-start = 1

- If set to 1, the overlay will appear as soon as possible, after the start of the game. (default is 0, meaning that overlay starts hidden, until toggled on)

overlay.location = "bottom"

- two possible locations: "top" and "bottom" of the screen
 

overlay.font-size = 0
overlay.font = "Lucida Console"

- these two options control the font of overlay. Size 0 means that the font-size will be calculated automatically, based on height of the screen in pixels. Any TTF font installed on the system can be used, but monospaced fonts are recommended for easier formatting.

overlay.vkey.toggle = 0x20
overlay.vkey.next-module = 0x31

- hot keys for toggling overlay on/off, and for switching control of the overlay among the modules. Values must be specified in hexadecimal format. The default ones are:
    0x20 [Space] - for toggle
    0x31 [1]     - for next-module

Full list of codes for all keys can be found here:
https://docs.microsoft.com/en-us/windows/desktop/inputdev/virtual-key-codes

overlay.background-color = "102010c0"
overlay.text-color = "80ff80c0"

- colors are specified in RRGGBBAA format (similar to how it is done in HTML, except that you do not put '#' character in front)

vkey.reload-1 = 0x10
vkey.reload-2 = 0x52

- These two settings define a hot-key combination that can be used to reload Lua modules, without restarting the game. This is not a feature that you would normally use during regular gameplay, but if you are
writing a module, very often you need to make a small fix or change.

Restarting the game every time can be time consuming, so this feature allows to reload all modules that were modified since the last time they were loaded. Default is: Shift-R  (0x10 and 0x52).

game.priority.class = "above_normal"

- This option allows to change the priority of the game process. Sometimes this is useful, and reportedly can help to combat FPS drops. Supported values are: "above_normal", "below_normal", "high", "idle", "normal" and "realtime".

By default, the game sets its priority to "above_normal".

CREDITS:
--------
Game research: nesa24, juce, digitalfoxx
Programming: juce
Alpha testing: zlac, nesa24, Chuny, Hawke, sonofsam69
Blue Champions League ball: Hawke and digitalfoxx

Sider uses the following 3rd-party software:
1) LuaJIT by Mike Pall (doc/license-luajit.txt)
2) Knuth-Morris-Pratt string matcher from Project Nayuki (doc/license-kmp.txt)
3) FW1FontWrapper library by Erik Rufelt


Que novedades incluye la versión 5.4.2   See changelog

Released

  • support for automatic dummification of UniformParameter.bin

(This is needed so that the one and only requirement for kitserver kits to work for a team is to have that team licensed in Team.bin)


No te pierdas nada, síguenos en Twitter o Mastodon!
Preguntas, aportes y peticiones en el foro.
Si te sirve lo que hacemos, ayúdanos con el mantenimiento de la web con una donación vía Paypal.

  • Contenido similar

    • Por Dekuwa
      Option File creado por Dedoog que actualiza a la temporada 2023-2024 el eFootball PES 2021 Season Update de PS4 (retrocompatible con PS5) y PC.

      Contenido del Option File:
      Brasileirão A & B Liga de Uruguay Copa Libertadores Liga de Colombia Premier League Serie A & B de Italia LaLiga 1 & 2 de España BundesLiga de Alemania Otros Europeos Selecciones Nacionales Como instalar el Option File en PS4/PS5:
      Descargamos el archivo desde aquí mismo y lo descomprimimos.  Copiamos la carpeta WEPES a una memoria USB y la conectamos a la consola. Dentro del juego nos vamos a Editar - Importar/Exportar - Importar equipos. Seleccionamos todo o las ligas que queramos importar dentro de la carpeta ETAPA1. Accedemos a la configuración detallada, marcamos las 2 casillas y pulsamos en OK. Esperamos a que termine. Repetimos el procedimiento con las ligas de la carpeta ETAPA2. Luego nos vamos a Editar - Importar/Exportar - Importar campeonatos. Seleccionamos todo o las ligas que queramos importar dentro de la carpeta 1 - Competições. Esperamos a que termine y listo. Como instalar el option file en PC:
      Copiamos el contenido de la carpeta WEPES en nuestra carpeta WEPES de instalación del juego. Ruta de ejemplo: Archivos de programa\KONAMI\eFootball PES 2021 Season Update\WEPES.
    • Por JamesMoc
      alguien me podia pasar un parche de pes 2018 actualizado al 2024 con la LIGA PRO(ECUADOR)  por favor es un regalo que le quiero dar a mi hermano ya que no puedo comprarle un ps4 para tener el pes2021 y ponerles parches
    • Por Dekuwa
      Option File actualizado a la temporada 2023-2024 para el eFootball PES 2021 Season Update de PS4 (retrocompatible con PS5) y PC.
      Cuenta con los kits actualizados, fichajes realizados y stats de muchos jugadores adaptados a su rendimiento actual.

      Ligas actualizadas (con sus respectivos equipos):
      Ligas Europa Licenciadas: Premier League Bundesliga de Alemania SkyBet Championship LaLiga LaLiga 2 Ligue 1 Ligue 2 Serie B Italia Serie A Italia Liga Portugal Otros europeos Liga China Liga Árabe AFC Champions League Liga Tailandesa Copa Libertadores Liga Argentina Liga Colombia Liga de Chile Brasileirao Selecciones Nacionales Dream Team Pleasure Horn Instalación del Option File en PS4/PS5
      Descargamos el archivo desde aquí mismo y lo descomprimimos. Copiamos la carpeta WEPES a una memoria USB y la conectamos a la consola. Arrancamos el juego y nos vamos al modo Editar - Importar/Exportar Importar campeonato. Ahí pulsamos cuadrado y en opciones detalladas marcamos las dos casillas y pulsamos OK. Esperemos que termine y listo. Importar equipo. Ahí pulsamos cuadrado y en opciones detalladas marcamos las dos casillas y pulsamos OK. Esperamos a que termine y listo. Instalación del Option File en PC
      Descargamos el archivo desde aquí mismo y lo descomprimimos. Copiamos los archivos dentro de la carpeta WEPES en la carpeta WEPES de nuestro juego instalado (p.e.: Archivos de programa\KONAMI\eFootball PES 2021 Season Update\WEPES). El Option File ha sido realizado por Emerson Pereyra, Frank Valo y AndrewPES.
    • Por Dekuwa
      DKZ Studio es una completa aplicación para Windows que nos permite editar muchos de los aspectos de los juegos Pro Evolution Soccer (PES) y Winning Eleven (la versión japonesa) de Konami.

      Readme de la versión 0.92b

      Build 30/03/2006
      ============================================================
      Programa Principal
      ============================================================
      Lo nuevo:
      ---------
      * Añadido soporte Juliet para imágenes (es configurable).
      * Añadido soporte para imágenes MDF (Alcohol 100%).
      * Añadidas etiquetas especiales para las carpetas contenidas en parches.
      - %MY_DOCUMENTS%
      - %DESKTOP%
      - %PROGRAM_FILES%
      * Añadido un botón personal para estilo XP, se han quitado los controles btnplus1.ocx y Fraplus1.ocx.
      * Nuevo formato para los archivos de idiomas, ahora pueden contener IDs.
      Updates:
      ----------------
      * Si una carpeta AFS no contiene descriptores en un parche DKZ, esta será tratada como un archivo más, a la hora de aplicar simplemente se extraerá.
      * Carga directa para todos los formatos de archivo soportados.
      Errores:
      --------
      * Arreglado el fallo al actualizar la cabecera de la imagen ISO.
      ============================================================
      DataBase Editor
      ============================================================
      Lo nuevo:
      ---------
      * Añadida edición de Pelo.
      - Estilo (se edita tal y como lo hace el editor interno del juego).
      - Color del pelo.
      - Gorra.
      - Barba.
      - Gafas de sol.
      * Añadido soporte para Microsoft DAO (requiere dao360.dll), para generar archivos Microsot Access (*.MDB).
      - Exporta/Importa la base de datos completa.
      - Puedes seleccionar cualquier valor para exportar/importar, por ejemplo, Nombre, camiseta, Cara, Pelo, etc...
      - Posibilidad de exportar/importar jugadores/equipos/estadios(solo nombre).
      - Puedes crear nuevas bases de datos MDB vacias.
      * Añadido soporte para Microsoft Excel.
      - Por el momento solo exporta plantillas con las habilidades y la media.
      * Añadida posibilidad de seleccionar el AFS que cargará el juego para los cánticos.
      Updates:
      --------
      * Actualizada la edición del cuerpo (se edita tal y como lo hace el editor interno del juego).
      * Actualizado el archivo de configuración XML para arreglar un cuelgue en XBOX (no testeado).
      * Actualizada el modo de recarga para las ventanas, ahora no las reinicia y se mantienen como estaban.
      Errores:
      --------
      * Arreglados los valores de Mandíbula y largo que estaban intercambiados.
      * Arreglado el cuelgue del programa al seleccionar/quitar algunas flechas de ataque en formaciones.
      ============================================================
      STR Editor
      ============================================================
      Lo nuevo:
      ---------
      * [Búsqueda] Añadida una nueva barra tipo Firefox con opciones.
      ============================================================
      AdBoard Editor
      ============================================================
      Lo nuevo:
      ---------
      * Añadido soporte para Vallas que no contienen todos los BMP.
      ============================================================
      Zlib Editor
      ============================================================
      Errores:
      --------
      * Arreglado lo de Importar todos los archivos.
      ============================================================
      AFS Ripper
      ============================================================
      Errores:
      --------
      * Arreglado un error cuando se va a reconstruir el AFS ripeado.
      ============================================================
      PSS Player
      ============================================================
      Lo nuevo:
      ---------
      * Añadido soporte para los archivos de Video OPMOV de Pes5 PC.
      * Añadido el Tiempo transcurrido/total y una barra de desplazamiento (no funciona en archivos PSS).
      ============================================================
      DSL Editor
      ============================================================
      Lo nuevo:
      ---------
      * Añadidio el botón "Guardar como..."
      * Añadida compatibilidad para los nuevos formatos de archivos DSL (mantiene compatibilidad con antiguos).
      * Añadida carga directa cuando hacemos doble-click en un archivo DSL.
      Errores:
      --------
      * Arreglado el cuelgue del programa cuando se hace click en el botón "Siguiente" y solo hay 1 Item.
      abScroll (c) 2004-2006
      Ve a https://www.dekazeta.net para soporte y ayuda.
    • Por Gpes21_editor
      Una consulta, algún editor por ahí, sabrá que herramienta puede remplazar a PES Next-Gen CPK File Manager, ya que este programa dejó de funcionar en todos los sistemas operativos, y es una herramienta vital para la edición de PES2021 (PC) 
      Muchísimas gracias. 
×
×
  • Crear nuevo...