Leaderboard
Popular Content
Showing content with the highest reputation on 03/08/24 in all areas
-
Froggo Rö Folder This is a simple RO folder that contains everything you need to run a 2022-04-06 client, the latest publicly available. I have cleaned and compressed the data.grf file to reduce its size from 3.87GB to 2.14GB. official_data.grf took the same treatment and the file size went down to 426MB. Additionally, I have added a mini-map to all those maps that were lacking one, approximately 275 mini-maps were added, I only ignored some indoor (_in) and guild castles maps. Before BGM, the Rö folder has a total size of 2.62GB, after BGM it reaches 2.96GB Screenshots Requirements Server Up & Running with PACKETVER=20220406 Visual C++ Redistributables DirectX Runtime Features Includes latest RoEnglishRE - 16/mar/2024 Custom Lua Support jRO Enchantment Display Includes rsu-kro-rag-lite (kRO updater) - v4.2.2.1316 Includes opensetup - v3.1.0.627 Includes iRO's Setup.exe, thanks to relzz! Includes AzzyAI 1.55 Includes Packet Viewer Download click here to download a .zip file of this ro-folder ~fast mirror (●'◡'●)~ Extra Warp Profile for 2022-04-06 used for FroggoClient.exe (mirror) 2022-04-06 Vanilla Ragexe Client Login Screen Creator Official Ragnarok Complete Zipped Folder(10/June/2024) Official Ragnarok Complete EXE Installer (08/Jan/2024)(mirror) Froggö Ro Folder Gitlab's Repo FAQ Why am I getting CHARACTER_INFO size error when trying to log in? Possible reasons: You are using outdated rAthena which doesn't work with 2022-04-06 client. You haven't set correct PACKETVER or done it with mistakes (skill issue ). You haven't recompiled rAthena. You haven't restarted server after recompilation. Why am I getting errors about MSVCP140.dll, VCRUNTIME140.dll when executing FroggoClient.exe? You haven't installed Visual C++ Redist, check requirements section, if problem persists, try installing this too Visual C++ Redist for VS 2012u4 What is official_data.grf ? official_data.grf is from the ROResourceCollection project, which brings many items, mobs and npc files from other RO Regions and merges it into one convenient grf. Why does the Setup.exe opens instead of the FroggoClient.exe? In your Windows registry there is no data about your selected graphic card, to fix it, just set up your settings in Setup.exe and click on OK, be aware to don't select DirectX9, stay on DirectX7 What was removed from the data.grf? Several unnecessary files were removed from the data.grf . These included residual files such as thumbs.db and stray BMP Screenshots. However, the majority of the cleanup was performed in the mob and npc sprite folders. In these folders, some .spr files contained sprites (images) that were not utilized in their corresponding .act files. For example, the monster katrinn's .spr file contained approximately 140 images, but only 6 of them were actually used. In total, out of nearly 90,000 collective images, around 9,400 were removed alv.4 points
-
This repo was used in this tutorial I did1 point
-
Yo me hice una mini guía para poder seguir cada vez que tenía que hacerlo, espero te sirva xd, ojo que algunas configuraciones están basadas en mi PC, debes ajustar los valores a tus necesidades @Franko Instala Subsistema de Linux Comando para activar instalar WSL, se agrega el flag -d para indicar que quiero instalar Debian wsl --install -d Debian Crear un archivo .wslconfig en C:\Users\YOUR_USER_HERE con lo siguiente dentro # Settings apply across all Linux distros running on WSL 2 [wsl2] # Limits VM memory to use no more than 4 GB, this can be set as whole numbers using GB or MB memory=8GB # Sets the VM to use six virtual processors processors=6 # Sets amount of swap storage space to 8GB, default is 25% of available RAM swap=3GB # Turn off default connection to bind WSL 2 localhost to Windows localhost # localhostforwarding=true # Disables nested virtualization nestedVirtualization=false [experimental] autoMemoryReclaim=gradual sparseVhd=true networkingMode=mirrored firewall=true dnsTunneling=true autoProxy=true Para cambiar la contraseña del usuario root en WSL2, puedes seguir estos pasos: Abre el Símbolo del sistema como administrador. Escribe el comando wsl.exe -u root, esto abrirá una terminal de WSL como usuario root. Escribe el comando passwd. Ahora te pedirá la nueva contraseña de root. Ya dentro del WSL Debian corres el siguiente comando: sudo nano /etc/wsl.conf [boot] systemd=true Reiniciamos WSL para que haga efecto el cambio Instala Dependencias sudo apt-get update && sudo apt-get upgrade -y sudo apt-get install git make tmux htop gcc mariadb-client mariadb-server zlib1g-dev libpcre3-dev build-essential libmariadb-dev-compat cmake gdb -y Configuramos Mysql Entramos a la consola de MySQL sudo systemctl start mysql sudo mysql_secure_installation sudo mysql -u root Creamos los usuarios y asignamos contraseñas - CAMBIA LO QUE TENGAS QUE CAMBIAR AQUÍ CREATE USER 'rathenausr'@'%' IDENTIFIED BY 'dietpi'; GRANT ALL PRIVILEGES ON *.* TO 'rathenausr'@'%' WITH GRANT OPTION; FLUSH PRIVILEGES; DROP DATABASE IF EXISTS rathenadb; CREATE DATABASE IF NOT EXISTS rathenadb DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; DROP DATABASE IF EXISTS rathenalog; CREATE DATABASE IF NOT EXISTS rathenalog DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; GRANT SELECT,INSERT,UPDATE,DELETE,CREATE ON rathenadb.*TO 'rathenadbusr'@'localhost' IDENTIFIED BY 'dietpi'; FLUSH PRIVILEGES; GRANT SELECT,INSERT,UPDATE,DELETE,CREATE ON rathenalog.* TO 'rathenadbusr'@'localhost'; FLUSH PRIVILEGES; Agregamos el contenido a las base de datos sudo mysql -u root -proot rathenadb < main.sql sudo mysql -u root -proot rathenadb < web.sql sudo mysql -u root -proot rathenalog < logs.sql sudo mysql -u root -proot rathenadb < roulette_default_data.sql sudo mysql -u root -proot rathenadb < item_db.sql sudo mysql -u root -proot rathenadb < item_db2.sql sudo mysql -u root -proot rathenadb < item_db_re.sql sudo mysql -u root -proot rathenadb < item_db2_re.sql sudo mysql -u root -proot rathenadb < item_db_equip.sql sudo mysql -u root -proot rathenadb < item_db_etc.sql sudo mysql -u root -proot rathenadb < item_db_usable.sql sudo mysql -u root -proot rathenadb < item_db_re_equip.sql sudo mysql -u root -proot rathenadb < item_db_re_etc.sql sudo mysql -u root -proot rathenadb < item_db_re_usable.sql sudo mysql -u root -proot rathenadb < mob_db.sql sudo mysql -u root -proot rathenadb < mob_db2.sql sudo mysql -u root -proot rathenadb < mob_db_re.sql sudo mysql -u root -proot rathenadb < mob_db2_re.sql sudo mysql -u root -proot rathenadb < mob_skill_db.sql sudo mysql -u root -proot rathenadb < mob_skill_db2.sql sudo mysql -u root -proot rathenadb < mob_skill_db_re.sql sudo mysql -u root -proot rathenadb < mob_skill_db2_re.sql sudo mysql -u root -proot rathenadb < extended_vending.sql Agregamos S1 y P1, y una cuenta in-game admin sudo mysql -u root use rathenadb UPDATE login set `userid` = "s1", `user_pass` = "p1" where `account_id` = 1; INSERT INTO `login` (`account_id`, `userid`, `user_pass`, `sex`, `email`, `group_id`, `state`, `unban_time`, `expiration_time`, `logincount`, `lastlogin`, `last_ip`, `birthdate`, `character_slots`, `pincode`, `pincode_change`, `vip_time`, `old_group`, `web_auth_token`, `web_auth_token_enabled`) VALUES (2000000, 'tester', 'tester', 'M', '[email protected]', 99, 0, 0, 0, 0, NULL, '', NULL, 0, '', 0, 0, 0, NULL, 0);1 point
-
hide it inside the grf: if you are using iteminfo.lub search for 53 79 73 74 65 6D 2F 69 74 65 6D 69 6E 66 6F 2E 6C 75 62 replace with 64 61 74 61 2F 69 74 65 6D 69 6E 66 6F 2E 6C 75 62 2E 2E1 point