Jump to content

gpedro153

Members
  • Posts

    10
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

gpedro153's Achievements

Poring

Poring (1/15)

0

Reputation

  1. I have an NPC that uses the "showevent" function and it works fine when it is in Pronterae, but when i move it to an custom map the showevent function will not work. for example: On this first script the "showevent" function works fine and the "Quest Balloon" appears over the NPC however, when i move this same NPC to Mellina City (a custom map) the showevent doesn't work and the "Quest Balloon" no longer appears over the NPC even though the rest of the script remains the same. It still says "This is a test" when i click on it though. Can anybody help me with this issue? Thanks
  2. So, i downloaded the data archives from the "Recommended Client & Setup" page here at rAthena forum (https://rathena.org/board/topic/70962-recommended-client-setup/). I also downloaded the 2012-04-10 DIFFED client and it works on my server. However all the skill's descriptions in game are in Korean! here is a screenshot: How can i make it appear in English?
  3. So, i downloaded the data archives from the "Recommended Client & Setup" page here at rAthena forum (https://rathena.org/board/topic/70962-recommended-client-setup/). I also downloaded the 2012-04-10 DIFFED client and it works on my server. However all the skill's descriptions in game are in Korean! here is a screenshot: How can i make it appear in English? Also, i downloaded the 2012-04-10 UNDIFFED + Changes from that same page to create my own client using Shin's Diff Patcher with WeeDiffGen plugin. But even if i diff it by checking the exactly same boxes recommended by the page where i downloaded the 2012-04-10 client, when i choose my character in game i receive the message "rejected from server.(3)" and then if i press "ok" the game window closes. but if i use the same client i downloaded already diffed it works fine and i can play... and the skills are in Korean here are the boxes i checked on Diff Patcher but if i use the client already diffed i downloaded it works
  4. i changed the address to 127.0.0.1 in my clientinfo inside my data folder. Now this is what appears after i put my username and password.
  5. log_db_db: ragnarok // < The ragnarok must be the same name of your logs table. this line didn't exist in my inter_athena.conf, so i added it and now there is no DB error on my login-server. however, when i put my username and password the message still appears "Failed to Connect to Server" and this is a screenshot of login-server after i try to access my account in game. the last line says [Info]: Closed connection from 'my LAN IP' what could be causing this?
  6. yes, i imported the logs.sql into a "Schema" named "log". // MySQL Log Database log_db_ip: 127.0.0.1 log_db_port: 3306 log_db_id: ragnarok log_db_pw: [ADDED THE PASSWORD I CREATED] log: [ CHANGE THIS TO THE TABLE NAME WHERE YOU PUT THE LOGS.SQL ] log_codepage: log_login_db: loginlog i tried changing the "log:" line to "log: log" to see what happened but the problem is still the same
  7. so, im new here and trying to create my own server. i followed all the steps of the wiki tutorial and i think i did everything right. MySQL is running and listening on localhost: I have changed inter_athena.conf a little bit and now all of the login-server, char-server, and map-server open and communicate to each other here are the changes I made on my inter_athena.conf: // MySQL Login server login_server_ip: 127.0.0.1 login_server_port: 3306 login_server_id: ragnarok login_server_pw: [ADDED THE PASSWORD I CREATED] login_server_db: ragnarok login_codepage: login_case_sensitive: no ipban_db_ip: 127.0.0.1 ipban_db_port: 3306 ipban_db_id: ragnarok ipban_db_pw: [ADDED THE PASSWORD I CREATED] ipban_db_db: ragnarok ipban_codepage: // MySQL Character server char_server_ip: 127.0.0.1 char_server_port: 3306 char_server_id: ragnarok char_server_pw: [ADDED THE PASSWORD I CREATED] char_server_db: ragnarok // MySQL Map Server map_server_ip: 127.0.0.1 map_server_port: 3306 map_server_id: ragnarok map_server_pw: [ADDED THE PASSWORD I CREATED] map_server_db: ragnarok // MySQL Log Database log_db_ip: 127.0.0.1 log_db_port: 3306 log_db_id: ragnarok log_db_pw: [ADDED THE PASSWORD I CREATED] log: ragnarok log_codepage: log_login_db: loginlog the tutorial i followed however didn't mentioned to change the lines "login_server_pw:" and "ipban_db_pw:", but before i changed them my login-server couldnt comunicate to MySQL. now as i said, all three (login, char, and map-server) communicate to each other. However when i try to log in with the game username and password i created in the database it says "Failed to Connect to Server" here is a screenshot of my login-server after i try to login as you can see it says DB errer - No database selected. But it also says "Connection of the account accepted". so it is recognizing my game account, right? I am assuming this is the problem, but how do i fix it?
  8. Thank you for replying so, MySQL is running and listening on localhost: I have changed inter_athena.conf a little bit and now all of the login-server, char-server, and map-server open and communicate to each other here are the changes I made on my inter_athena.conf: // MySQL Login server login_server_ip: 127.0.0.1 login_server_port: 3306 login_server_id: ragnarok login_server_pw: [ADDED THE PASSWORD I CREATED] login_server_db: ragnarok login_codepage: login_case_sensitive: no ipban_db_ip: 127.0.0.1 ipban_db_port: 3306 ipban_db_id: ragnarok ipban_db_pw: [ADDED THE PASSWORD I CREATED] ipban_db_db: ragnarok ipban_codepage: // MySQL Character server char_server_ip: 127.0.0.1 char_server_port: 3306 char_server_id: ragnarok char_server_pw: [ALREADY HAD MY PASSWORD] char_server_db: ragnarok // MySQL Map Server map_server_ip: 127.0.0.1 map_server_port: 3306 map_server_id: ragnarok map_server_pw: [ALREADY HAD MY PASSWORD] map_server_db: ragnarok // MySQL Log Database log_db_ip: 127.0.0.1 log_db_port: 3306 log_db_id: ragnarok log_db_pw: [ALREADY HAD MY PASSWORD] log: ragnarok log_codepage: log_login_db: loginlog the tutorial i followed however didn't mentioned to change the lines i just changed. now as i said, all three (login, char, and map-server) communicate to each other. However when i try to log in with the game username and password i created in the database it says "Failed to Connect to Server" here is a screenshot of my login-server after i try to login as you can see it says DB errer - No database selected. But it also says "Connection of the account accepted". so it is recognizing my game account, right? I am assuming this is the problem, but how do i fix it?
  9. hey everybody, i am new here and i am trying to create my own server i followed all the tutorials doing exactly what they were telling me to do (i think). but when i try to run my server the login-server, char-server, and map-server crash. they open and a few seconds later they close (it is really fast) i took a screenshot of the login-server just before it closes automatically, here it is. does anyone have any clue what it might be? if you guys need more information of my configurations to help me out just let me know and i will post here
×
×
  • Create New...