Jump to content

sader1992

Content Moderator
  • Posts

    1691
  • Joined

  • Last visited

  • Days Won

    77

Everything posted by sader1992

  1. sader1992

    aRO !

    even if you found it , it would be very outdated
  2. This a iteminfio.lua error the 7th is the ClassNum the ClassNum is the view id of item and it's a number so you have something not right in your iteminfo.lua somewhere in it the iteminfo the ClassNum is not a number the error also can be if you use iteminfo of the newer clients
  3. char_conf login_ip: 127.0.0.1 char_ip: vps_ip map_conf char_ip: 127.0.0.1 map_ip: vps_ip
  4. do not edit this in the packets.h #ifndef PACKETVER_RE /// From this point on only kRO RE clients are supported #if PACKETVER > 20151104 #define PACKETVER_RE #endif #endif
  5. it's from rathena if you want a fix fast just do this comment this like ShowWarning("conf/battle/feature.conf:feature.auction is enabled but it is not stable on PACKETVER "EXPAND_AND_QUOTE(PACKETVER)", disabling...\n"); in battle.cpp line 8583 so this #if PACKETVER > 20120000 && PACKETVER < 20130515 /* Exact date (when it started) not known */ if (battle_config.feature_auction) { ShowWarning("conf/battle/feature.conf:feature.auction is enabled but it is not stable on PACKETVER "EXPAND_AND_QUOTE(PACKETVER)", disabling...\n"); ShowWarning("conf/battle/feature.conf:feature.auction change value to '2' to silence this warning and maintain it enabled\n"); battle_config.feature_auction = 0; } will became like this #if PACKETVER > 20120000 && PACKETVER < 20130515 /* Exact date (when it started) not known */ if (battle_config.feature_auction) { //ShowWarning("conf/battle/feature.conf:feature.auction is enabled but it is not stable on PACKETVER "EXPAND_AND_QUOTE(PACKETVER)", disabling...\n"); ShowWarning("conf/battle/feature.conf:feature.auction change value to '2' to silence this warning and maintain it enabled\n"); battle_config.feature_auction = 0; } if you are not in harry you can wait for rathena to fix it https://github.com/rathena/rathena/pull/2743
  6. do you have the last kro files ? try to update your client files
  7. https://github.com/rathena/rathena/wiki/Install-on-Windows
  8. @calaluis please use NEMO as i suggested in the Topic
  9. this is client side and if you want to delete using birth YY-MM-DD or YYMMDD
  10. put the instance in the instance_db
  11. for DDos attack here is my suggestion never test that but it can be done first limit the bandwidth per IP the player does not need more then 10 KB/s (you can put it like 25 ?) so this will protect you from the bandwidth overload for the ports also you can limit the access per IP (make it like 10 per IP or even more ) those two things if you can do them then you did a lot of protection without any hard work as i said i never did that (on linux) but it's possible HOWEVER if you did that you would need to make an exception for your IPs /sql IPs/website IPs/etc also as lighta said you can rent vpn and make the connection to the server via that vpn so the players wont really see the vps ip they will see the vpn ip and you can get more then one vpn by doing that the DDos attack will go to the vpn not the server it self << (also didn't test that before but it's possible too)
  12. the new iteminfo wont work with old clients i suggest you use the iteminfo.lua from the english patch you downloaded or use new client to match the iteminfo you use
  13. please post your main function from the end of the iteminfo you used
  14. i always put it ToNextLevel from B4 D9 C0 BD 20 B5 EE B1 DE B1 EE C1 to 54 6F 4E 65 78 74 4C 65 76 65 6C 00
  15. you could do this item_rate_equip: 100000 item_rate_equip_boss: 100000 item_rate_equip_mvp: 100000
  16. i did say DONOT EDIT THIS #ifndef PACKETVER_RE /// From this point on only kRO RE clients are supported #if PACKETVER > 20151104 #define PACKETVER_RE #endif #endif get it back to 20151104
  17. don't edit this #ifndef PACKETVER_RE /// From this point on only kRO RE clients are supported #if PACKETVER > 20151104 #define PACKETVER_RE #endif #endif i your packets.h and if you did disable the PACKET_OBFUSCATION also disable PACKET_OBFUSCATION_WARN under it by 4 lines
  18. To be honest , i really think you maybe editing another rathena folder not the same one that you are running the packet var and the packet obfuscation not edited with you
  19. https://rathena.org/board/topic/111830-guide-video-edition-how-to-setup-rathena-and-run-ragnarok-online/ + the forum full with those kind of topics you just need to use google! (install rathena windows) however i suggest you start reading cuz videos won't help you a lot later
  20. i suggest you re read the guide that Cyro put it for you
  21. https://github.com/rathena/rathena/wiki/Install-on-Windows
  22. don't disable it don't use"walk to delay" and you wont get this problem however i don't know why you are getting error in nemo are you sure that the client you use is not hexed before (clean client) ?
  23. it should be like that // The rate at which equipment is dropped. item_rate_equip: 1000 item_rate_equip_boss: 1000 item_rate_equip_mvp: 1000 item_drop_equip_min: 1000 item_drop_equip_max: 1000
  24. i don't see what to explain --------------------------------------- *checkquest(<ID>{,PLAYTIME|HUNTING{,<char_id>}}) If no additional argument supplied, return the state of the quest: -1 = Quest not started (not in quest log) 0 = Quest has been given, but the state is "inactive" 1 = Quest has been given, and the state is "active" 2 = Quest completed If parameter "PLAYTIME" is supplied: -1 = Quest not started (not in quest log) 0 = the time limit has not yet been reached 1 = the time limit has not been reached but the quest is marked as complete 2 = the time limit has been reached If parameter "HUNTING" is supplied: -1 = Quest not started (not in quest log) 0 = you haven't killed all of the target monsters and the time limit has not been reached. 1 = you haven't killed all of the target monsters but the time limit has been reached. 2 = you've killed all of the target monsters --------------------------------------- can you tell us what the errors you get or what wrong ?
×
×
  • Create New...