Jump to content

zeusc137

Members
  • Posts

    42
  • Joined

  • Last visited

Everything posted by zeusc137

  1. I am running the latest version of rathena and I want some guidance about which client to use? I was trying a few after 2021+ but I get some errors after applying just "Select Recommended" and I was only able to make it work with 2019 only
  2. Hi! Is there a recommended Client to create a private renewal server with 4th classes? I'm planning to keep my server for a very long time and maintain it as well! Thanks in advance! I'm struggling to try to find some updated guides but this forum is being very helpful!
  3. I think this problem was solved! Thanks everyone! However is there a suggestion for an specific CLIENT version? I want renewal + 4th classes and I'm using latest rAthena! I'm planning to mantain this for a very long time! Sorry if I should have asked this somewhere else!
  4. I'm creating an online private server with renewall and 4th classes... Do you recommend using this client 2022-04-06 to patch? Maybe you could point me to which one? Thanks in advance! The links below are from http://nemo.herc.ws/clients/ 2022-04-06_Ragexe_1648707856 2022-04-06_Ragexe_1648716950
  5. I was able to fix clicking first on "Apply Recommended" then I only changed the "New Char Height" it was 13 I changed it to 20... Now it works just as I would like and the new char height looks good!
  6. This was my problem! I created a new user for s1/p1 instead of chaning userid and password... After updating the new user to match "account_id" = 1 I was able to fix it! Thank you so much!
  7. I can imagine... I know how to fix this using Nemo/Warp now (the visual issue I mentioned), but the thing is the weird error I get when I changed that part (and I checked that 2019-06-05 accepted that customization... The error I get is just "error" like the screenhost:
  8. I'm sorry! I just tried to find the option to delete and I couldn't find it!
  9. What do you mean? Sorry I am quite new at this as well! Here I'm showing everything I'm using to run my server: EDIT: I'm using latest rathena and building it using: ./configure --enable-packetver=20190605 && make clean && make server
  10. Thanks for your suggestion @imat1! It looks like this should fix my problem! I got my patched "2019-06-05fRagexe_patched.exe" from Youtube video... After your suggestion I downloaded Nemo and the same "2019-06-05fRagexe.exe" I thought I needed and it worked inside Nemo to "APPLY SELECTED" as follows: The problem is when I try to open this "patched" I just created I got error without any debug I was using a pre-made patched from this video:
  11. @ooGubAoo can you delete this instead?
  12. Hello, thank you very much for considering helping me on this and I hope this can help other people too! I just successfully installed and enjoyed a great time playing my own RO server locally running on my Docker with this Ubuntu image and sending below... The thing is... how do I go one step further and expose it to the internet using zerotier/Hamachi/customize my router? I'm asking this because I got stuck at this point of changing config and running it offline... I really would be glad if I could invite some friends to join my server! That said, I just want to thank this community for now and see if I can help a bit more in the future too! (PLEASE IGNORE WHAT COMES NEXT BELOW IF YOU DON'T WANT TO CHECK HOW I'M RUNNING MY APP WITH DOCKER) Dockerfile: ``` # Use Ubuntu 22.04 as base image FROM ubuntu:22.04 # Update and upgrade packages RUN apt-get update -y && apt-get upgrade -y # Install necessary packages RUN apt-get install -y build-essential git libz-dev libssl-dev libcurl4-gnutls-dev libexpat1-dev gettext cmake gcc RUN apt-get install -y libpcre3 libpcre3-dev make libmysqlclient-dev zlib1g-dev RUN apt-get install -y apache2 RUN DEBIAN_FRONTEND=noninteractive apt-get install -y mariadb-server supervisor RUN DEBIAN_FRONTEND=noninteractive apt-get install -y php # Install the PDO MySQL driver RUN apt-get install -y php-mysql # Install Neovim just cause I want it: RUN apt install -y neovim # Install the cURL and XML PHP extensions RUN apt-get install -y php-curl php-xml # Configure Apache RUN chown -R www-data:www-data /var/www/html RUN chmod -R 755 /var/www/html # Start MariaDB and configure users and database RUN service mariadb start && \ sleep 3 && \ mysql -e "SET PASSWORD FOR 'root'@'localhost' = PASSWORD('123456');" && \ mysql -e "DELETE FROM mysql.global_priv WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1');" && \ mysql -e "DELETE FROM mysql.global_priv WHERE User='';" && \ mysql -e "DROP DATABASE IF EXISTS test;" && \ mysql -e "FLUSH PRIVILEGES;" && \ mysql -e "CREATE USER 'ragnarok'@'%' IDENTIFIED BY 'ragnarok';" && \ mysql -e "CREATE DATABASE ragnarok;" && \ mysql -e "GRANT ALL PRIVILEGES ON ragnarok.* TO 'ragnarok'@'%';" && \ mysql -e "FLUSH PRIVILEGES;" # Copy configuration files COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf COPY zeus-login.sql /opt/app/zeus-login.sql RUN git clone https://github.com/rathena/rathena.git /opt/app/rathena RUN git clone https://github.com/projetoeaBrasil/rathena_pt-br /opt/app/rathena_pt-br WORKDIR /opt/app/rathena RUN ./configure --enable-packetver=20190605 && make clean && make server # Expose ports EXPOSE 80 443 8888 5121 3306 6900 # Run supervisor CMD ["/usr/bin/supervisord"] ``` docker-compose.yml: ``` version: "3.9" services: zeus_server: container_name: zeus build: context: . dockerfile: Dockerfile volumes: - type: bind source: ./ubuntu_root target: /root ports: - "80:80" - "443:443" - "6900:6900" - "6121:6121" - "5121:5121" networks: - zeus_network networks: zeus_network: driver: bridge ``` supervisord.conf: ``` [supervisord] nodaemon=true [program:apache2] command=/usr/sbin/apache2ctl -D FOREGROUND [program:mariadb] command=/usr/bin/mysqld_safe [program:rathena-fluxcp] command=bash -c 'git clone https://github.com/rathena/FluxCP.git /root/FluxCP || true' autostart=true autorestart=false startretries=0 [program:apache2-cleanup] command=bash -c 'mv /var/www/html/index.html /var/www/html/index.bkp.html || true' autostart=true autorestart=false startretries=0 priority=2 [program:fluxcp-configure] command=bash -c 'cp -r /root/FluxCP/* /var/www/html || true \ && service apache2 restart' autostart=true autorestart=false startretries=0 priority=2 [program:import_initial_sql] command=sh -c 'sleep 6; mysql ragnarok < /opt/app/rathena/sql-files/main.sql \ && mysql ragnarok < /opt/app/zeus-login.sql' startsecs = 0 autorestart = false [program:rathena-translate] command=bash -c 'cp -rf /opt/app/rathena_pt-br/* /opt/app/rathena/ || true' autostart=true autorestart=false startretries=0 priority=2 [program:rathena-configure] command=bash -c 'sleep 3; cd /opt/app/rathena \ && ./configure --enable-packetver=20190605 \ && make clean && make server \ && ./athena-start start || true' autostart=true autorestart=false startretries=0 priority=3 ``` And I also created this file `zeus-login.sql` in the same folder to create a new user for me: ``` INSERT INTO `login` (`userid`, `user_pass`, `sex`, `email`, `group_id`) VALUES ('zeus', '256854', 'M', '[email protected]', '99'); ```
  13. I was able to get it running really easily using the Docker application. Check it out if you can install it on your computer: https://docs.docker.com/engine/install/ If you find your way installing it I can share some steps to get you up and running locally.
  14. Hello everyone, thanks if you ever found some time to help me with this!!! I have just installed and played really nice on my local server with latest rAthena and kRO client using this "2019-06-05fRagexe_patched.exe" But when I'm at CHARACTER CREATION the text is not showing up correctly! I faced this issue in the past but I don't remember how I should approach this to fix! Thanks for passing by! This is the screenshot show the name not displaying nice:
  15. Nice to meet you all! I hope this time I can contribute to this community!
  16. Olá! Espero contribuir pra esse projeto de agora em diante! Tem algum repositório público que eu posso utilizar e contribuir?
  17. Thank you so much! That was it for me! I just installed both x64 and 32 bit versions and it started working again!
×
×
  • Create New...