Jump to content

Petey Pablo

Members
  • Content Count

    224
  • Joined

  • Last visited

Everything posted by Petey Pablo

  1. I need help [Fatal Error]: HPM:plugin_load: failed to load 'plugins/hit-delay.so' (error: plugins/hit-delay.so: cannot open shared object file: No such file or directory)!
  2. Help me how to use configuration!
  3. Because your map-server is not running with gdb. You have to run under gdb to see what is the problem.
  4. Misconfiguration in what part? Not working
  5. I use clientdate 2015-05-13 I set src/common/mmo.h #define PACKETVER 20150513 clientinfo.xml <?xml version="1.0" encoding="euc-kr" ?> <clientinfo> <desc>Ragnarok Online Client Information</desc> <servicetype>korea</servicetype> <servertype>primary</servertype> <connection> <display>Ragnarok Online</display> <address>127.0.0.1</address> <port>6900</port> <version>46</version> <langtype>10</langtype> <registrationweb>www.will-ro.net/?module=account&action=create</registrationweb> <loading> <image>loading00.jpg</image> <image>loading01.jpg</image> <image>loading02.jpg</image> <image>loading03.jpg</image> <image>loading04.jpg</image> </loading> <yellow> <admin>2000000</admin> <admin>2000001</admin> <admin>2000002</admin> </yellow> </connection> </clientinfo> Server files is running with No errors/issues Login Server [[email protected]<script data-cfhash='f9e31' type="text/javascript">/* */</script> Hercules]$ screen -r 5588 [Info]: Finished reading conf/import/login-server.conf. [Status]: Read information about 1 LAN subnets. [Status]: Read information about 1 trusted IP ranges. [Status]: Read information about 1 allowed server IP ranges. [Warning]: Using a wildcard IP range in the allowed server IPs is NOT RECOMMENDED. [Notice]: Please edit your 'conf/network.conf' allowed list to fit your network configuration. [Info]: Hercules, Copyright © 2012-2015, Hercules Dev Team and others. [Info]: Licensed under the GNU General Public License, version 3 or later. [Status]: The login-server is ready (Server is listening on the port 6900). [Info]: Connection request of the char-server 'Hercules' @ 127.0.0.1:6121 (account: 'ragnarok1', pass: 'ragnarok2', ip: '127.0.0.1') [Notice]: Authentication accepted (account: ragnarok1, id: 1, ip: 127.0.0.1) [Status]: Connection of the char-server 'Hercules' accepted. [Status]: Request for connection of mwsuranol_m (ip: 203.87.129.158). [Notice]: Account creation (account mwsuranol, id: 2000000, pass: passtest, sex: M) [Notice]: Authentication accepted (account: mwsuranol, id: 2000000, ip: 203.87.129.158) [Status]: Connection of the account 'mwsuranol' accepted. [Info]: Closed connection from '203.87.129.158'. Char Server [[email protected] Hercules]$ screen -r 6995 [Info]: Loaded guild castle (11 - guild 0) [Info]: Loaded guild castle (12 - guild 0) [Info]: Loaded guild castle (13 - guild 0) [Info]: Loaded guild castle (14 - guild 0) [Info]: Loaded guild castle (15 - guild 0) [Info]: Loaded guild castle (16 - guild 0) [Info]: Loaded guild castle (17 - guild 0) [Info]: Loaded guild castle (18 - guild 0) [Info]: Loaded guild castle (19 - guild 0) [Info]: Loaded guild castle (20 - guild 0) [Info]: Loaded guild castle (21 - guild 0) [Info]: Loaded guild castle (22 - guild 0) [Info]: Loaded guild castle (23 - guild 0) [Info]: Loaded guild castle (24 - guild 0) [Info]: Loaded guild castle (25 - guild 0) [Info]: Loaded guild castle (26 - guild 0) [Info]: Loaded guild castle (27 - guild 0) [Info]: Loaded guild castle (28 - guild 0) [Info]: Loaded guild castle (29 - guild 0) [Info]: Loaded guild castle (30 - guild 0) [Info]: Loaded guild castle (31 - guild 0) [Info]: Loaded guild castle (32 - guild 0) [Info]: Loaded guild castle (33 - guild 0) Map Server [[email protected] Hercules]$ screen -r 7054 [Info]: Done loading '16258' NPCs: -'3472' Warps -'2' Shops -'12784' Scripts -'3380' Spawn sets -'49241' Mobs Cached -'0' Mobs Not Cached [Status]: Event 'OnInit' executed with '2154' NPCs. [Info]: Hercules, Copyright © 2012-2015, Hercules Dev Team and others. [Info]: Licensed under the GNU General Public License, version 3 or later. [Status]: Server is 'ready' and listening on port '5121'. [Status]: Attempting to connect to Char Server. Please wait. [Status]: Connecting to 127.0.0.1:6121 [Status]: Logging in to char server... [Status]: Successfully logged on to Char Server (Connection: '6'). [Status]: Sending maps to char server... [Status]: Event 'OnInterIfInit' executed with '0' NPCs. [Status]: Event 'OnInterIfInitOnce' executed with '0' NPCs. [Status]: Requested '34' guild castles from char-server... [Status]: Map Server is now online. [Info]: Received Fame List of '0' characters. [Status]: Received '34' guild castles from char-server. char-server.conf // Information related to inter-server behavior inter: { // Server Communication username and password. userid: "ragnarok1" passwd: "ragnarok2" // Login Server IP // The character server connects to the login server using this IP address. // NOTE: This is useful when you are running behind a firewall or are on // a machine with multiple interfaces. login_ip: "127.0.0.1" // The character server listens on the interface with this IP address. // NOTE: This allows you to run multiple servers on multiple interfaces // while using the same ports for each server. //bind_ip: "127.0.0.1" // Login Server Port login_port: 6900 // Character Server IP // The IP address which clients will use to connect. // Set this to what your server's public IP address is. char_ip: "127.0.0.1" // Character Server Port char_port: 6121 } sql_connection.conf sql_connection: { // [INTER] You can specify the codepage to use in your mySQL tables here. // (Note that this feature requires MySQL 4.1+) //default_codepage: "" // [LOGIN] Is `userid` in account_db case sensitive? //case_sensitive: false // For IPs, ideally under linux, you want to use localhost instead of 127.0.0.1. // Under windows, you want to use 127.0.0.1. If you see a message like // "Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)" // and you have localhost, switch it to 127.0.0.1 db_hostname: "127.0.0.1" db_port: 3306 db_username: "root" db_password: "passtest" db_database: "ragnarok" //codepage:"" } map-server.conf // Information related to inter-server behavior inter: { // Interserver communication passwords, set in the login server database userid: "ragnarok1" passwd: "ragnarok2" // Character Server IP // The map server connects to the character server using this IP address. // NOTE: This is useful when you are running behind a firewall or are on // a machine with multiple interfaces. char_ip: "127.0.0.1" // The map server listens on the interface with this IP address. // NOTE: This allows you to run multiple servers on multiple interfaces // while using the same ports for each server. //bind_ip: "127.0.0.1" // Character Server Port char_port: 6121 // Map Server IP // The IP address which clients will use to connect. // Set this to what your server's public IP address is. map_ip: "127.0.0.1" // Map Server Port map_port: 5121 } I need help what is wrong with my configuration. I need pro staff here that can resolve this issue. Thank you very much!
  6. Fixed fatal error. Only this closed connection problem after successfuly login then I got failed to connect. [Info]: Connection request of the char-server 'Hercules' @ 127.0.0.1:6121 (account: 'ragnarok1', pass: 'ragnarok2', ip: '127.0.0.1') [Notice]: Authentication accepted (account: ragnarok1, id: 1, ip: 127.0.0.1) [Notice]: Connection of the char-server 'Hercules' REFUSED. [Info]: Closed connection from '127.0.0.1'.
  7. Anyone can help me with this? Thank you very much! [Fatal Error]: Servers are out of sync! recompile from scratch (25) [Info]: Connection request of the char-server 'Hercules' @ 127.0.0.1:6121 (account: 'ragnarok1 ', pass: 'ragnarok2 ', ip: '127.0.0.1') [Notice]: Unknown account (account: ragnarok1 , received pass: ragnarok2 , ip: 127.0.0.1) [Notice]: Connection of the char-server 'YourRO' REFUSED. [Info]: Closed connection from '127.0.0.1'.
  8. The solution on this is to create another user to change the root?
  9. After uncomment I got core warning and still not working core.c: In function ‘usercheck’: core.c:220:2: warning: #warning This Hercules build is not eligible to obtain support by the developers. [-Wcpp] #warning This Hercules build is not eligible to obtain support by the developers. ^ core.c:221:2: warning: #warning The setting I_AM_AWARE_OF_THE_RISK_AND_STILL_WANT_TO_RUN_HERCULES_AS_ROOT is deprecated and should not be used. [-Wcpp] #warning The setting I_AM_AWARE_OF_THE_RISK_AND_STILL_WANT_TO_RUN_HERCULES_AS_ROOT is deprecated and should not be used.
  10. How to enable or run as root? Thank you hercules staff! [Fatal Error]: You are running Hercules with root privileges, it is not necessary, nor recommended. Aborting.
  11. Another issue after ./configure. Help me? ******************************************************************************** * W A R N I N G /!\ * ******************************************************************************** * It appears that you're planning to run Hercules with root privileges. That's * * not necessary, nor recommended, and it may open your machine to unnecessary * * security risks. You should never ever run software as root unless it * * requires the extra privileges (which Hercules does not.) * * * * More info: * * http://www.tldp.org/HOWTO/Security-HOWTO/local-security.html * * https://wiki.debian.org/sudo * * http://wiki.centos.org/TipsAndTricks/BecomingRoot * * http://fedoraproject.org/wiki/Configuring_Sudo * * https://help.ubuntu.com/community/RootSudo * * http://www.freebsdwiki.net/index.php/Root * * * * If your service provider forces (or encourages) you to run server software * * as root, please complain to them. It is a very bad idea. * ******************************************************************************** Fixed. Topic is closed!
  12. I have problem with my centos 7. Anyone can help me to fix the error below? Thank you! make: *** No rule to make target `sql'. Stop. [root@server1 Hercules]#
  13. Need help how to translate this korean login. Thank you
  14. How to use this new configuration? I don't understand. Thanks
  15. I need this too. Do you have link to download a full client sir zackdreaver?
  16. I think the problem is from updated kRO. I did test on my outdated kRO and it works fine.
  17. I have latest data from translation and updated kRO. The problem is this stop working. Help!!!
  18. Something wrong with the current version of your script. Im using latest rev of hercules. Please fix [Error]: script_add_str: detected possible use of wrong case in a script. Found'.Reward', probably meant to be '.reward' (in 'npc/custom/woe_controller.txt').
  19. Setwarp_delay: To the required delay And all other to 0 like this? int64 warp_delay = 5000; //Seconds*1000 (Second) Delay(For Player and Others).int64 warp_delay_mob = 0; //Seconds*1000 (Second) Delay(For Monster).int64 warp_delay_pet = 0; //Seconds*1000 (Second) Delay(For Pet).int64 warp_delay_homun = 0; //Seconds*1000 (Second) Delay(For Homunculus).int64 warp_delay_merc = 0; //Seconds*1000 (Second) Delay(For Mercenary).
  20. Not working on latest version of hercules. Says "Unknown command" Please update! Thanks
  21. Is this include with monster? pet? humo? mercenary? I want for player delay only. How to config? Thanks man. Its a nice work!
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.