-
Posts
105 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by zeusc137
-
Rejected From Server not Rejected From Server(3)
zeusc137 replied to panducakep's question in Client-side Support
After changing that in rathena I was able to fix it on my 2021-11-17_Ragexe_1637052357.exe client with this setting on WARP: -
Hello there! thank you for this!!! Could you also point what *.sql files for guild emblem I need? I can't find anytyhing inside /sql-files in rathena repo! Thanks again!!!
-
Syntax Highlighter and Snippets for Visual Studio Code
zeusc137 replied to Secrets's topic in Project Releases
-
Thanks @Chaos92! I'm starting to understand this! I'm also using this branch: https://github.com/datawulf/rathena/tree/skillupd From this PR to rebalance skills: https://github.com/rathena/rathena/pull/7024 I think the latest clients don't read clientinfo.xml anymore, right? (Any tip to workaround that?) Thank you for the guidance and sorry for asking so many questions around the forum! haha
-
Thank you very much for this sir! I was finding very hard to find documentation and search things inside the forum! Are there some tips you could provide as well for someone like us who wants it badly 4th classes in our servers? -- Have a great weekend people!!!
-
Add new expanded class 4th in Job Master
zeusc137 replied to MatanzaLH's question in Script Requests
Hi @konishiwa! I have the 3rd classes working only! Do you think we could try to help each other? Did you find any tutorial or anything else? I’m planning to maintain my server for very long time so I want to research on it if you have any starting point or documentation to share I appreciate. Have a great weekend everyone!! -
Hello everyone! I'm having some progress I'm really proud I could start running my server but now I'm trying to find how to make it work with 3rd/4th classes I have everything I need from CLIENT side to run that and I think my rathena was configured correctly, so why my `@jog 4060` to Dragon Night fails? Thank you so much! I promise I will answer other people one day too because I've been asking so many questions! haha -- Have a great weekend everyone! Mine I hope it's gonna be coding fun stuff for my RO server I
-
Thank you! I was able to fix the names of the items using an appropriated iteminfo_EN.lua when I was applying recommendations on Warp/Nemo! The one thing I'm not sure right now how to fix is this message at the top (maybe I have to just delete it for now until I create my own art?):
-
What is the best client to patch using Warp/Nemo for new Renewal + 4th classes?
zeusc137 replied to zeusc137's question in General Support
Good call! Thank you for that! Would you mind telling me where can I find this? I just cloned latest rathena and I was too newbie to find it myself! hahaha EDIT: I found this at `src/config/packets.hpp`! Thank you @Winterfox ``` #ifndef PACKETVER /// Do NOT edit this line! To set your client version, please do this instead: /// In Windows: Add this line in your src\custom\defines_pre.hpp file: #define PACKETVER YYYYMMDD /// In Linux: The same as above or run the following command: ./configure --enable-packetver=YYYYMMDD #define PACKETVER 20211103 #endif ``` -
Hello, thanks for passing by! I'm trying to use NEMO to modify this 2019-06-05hRagExeRE.exe applying recommended but this is how it looks: I know this is CLIENT issue because my other client 2019-06-05fRagexe.exe was working just fine! What should I do? I'm trying to create my own private server with Renewal + 4th classes.
-
Renewal Client data & Hexed 2021-11-03_Ragexe compatible with rAthena
zeusc137 replied to vaynard's topic in Client Releases
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! -
[Tutorial] Rathena Renewal Single Player Installation Guide 2023
zeusc137 replied to reidouraidou's question in Installation Support
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 -
[Error] Cannot connect to login server.
zeusc137 replied to Balmung's question in Installation Support
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! -
I'm sorry! I just tried to find the option to delete and I couldn't find it!
-
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:
-
@ooGubAoo can you delete this instead?
-
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'); ```