Jump to content

hendra814

Members
  • Posts

    1281
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by hendra814

  1. For packet key put like this, sample using client 2017-05-17 #if PACKETVER >= 20170517 parseable_packet(0x0ac0,26,clif_parse_Mail_refreshinbox,2,3); parseable_packet(0x0ac1,26,clif_parse_Mail_refreshinbox,2,3); parseable_packet(0x0364,8,clif_parse_dull,0); parseable_packet(0x0367,-1,clif_parse_ReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE parseable_packet(0x0437,7,clif_parse_ActionRequest,2,6); // CZ_REQUEST_ACT parseable_packet(0x0802,18,clif_parse_PartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER parseable_packet(0x0815,10,clif_parse_UseSkillToId,2,4,6); // CZ_USE_SKILL parseable_packet(0x0817,10,clif_parse_UseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND parseable_packet(0x0868,90,clif_parse_UseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX parseable_packet(0x0875,2,clif_parse_SearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE parseable_packet(0x087b,6,clif_parse_SolveCharName,2); // CZ_REQNAME_BYGID parseable_packet(0x087d,-1,clif_parse_SearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO parseable_packet(0x088c,8,clif_parse_MoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY parseable_packet(0x088d,5,clif_parse_ChangeDir,2,4); // CZ_CHANGE_DIRECTION parseable_packet(0x0894,6,clif_parse_GetCharNameRequest,2); // CZ_REQNAME parseable_packet(0x0896,12,clif_parse_SearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK parseable_packet(0x0899,26,clif_parse_PartyInvite2,2); // CZ_PARTY_JOIN_REQ parseable_packet(0x089e,4,clif_parse_dull,0); parseable_packet(0x089f,2,clif_parse_ReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE parseable_packet(0x08a2,6,clif_parse_TickSend,2); // CZ_REQUEST_TIME parseable_packet(0x08a8,5,clif_parse_WalkToXY,2); // CZ_REQUEST_MOVE parseable_packet(0x08aa,8,clif_parse_MoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE parseable_packet(0x091b,-1,clif_parse_ReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE parseable_packet(0x0923,19,clif_parse_WantToConnection,2,6,10,14,18); // CZ_ENTER parseable_packet(0x093b,6,clif_parse_DropItem,2,4); // CZ_ITEM_THROW parseable_packet(0x0945,-1,clif_parse_ItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES parseable_packet(0x0946,6,clif_parse_ReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE parseable_packet(0x0947,36,clif_parse_StoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD parseable_packet(0x0958,5,clif_parse_HomMenu,2,4); // CZ_COMMAND_MER parseable_packet(0x0960,26,clif_parse_FriendsListAdd,2); // CZ_ADD_FRIENDS parseable_packet(0x0964,6,clif_parse_TakeItem,2); // CZ_ITEM_PICKUP #endif For client you want to use put it at rathena\src\config\packet.h #ifndef PACKETVER #define PACKETVER 20151104 //replace into 20170517 #endif #ifndef PACKETVER_RE /// From this point on only kRO RE clients are supported #if PACKETVER > 20151104 #define PACKETVER_RE #endif #endif #if PACKETVER >= 20110817 /// Comment to disable the official packet obfuscation support. /// This requires PACKETVER 2011-08-17 or newer. #ifndef PACKET_OBFUSCATION #define PACKET_OBFUSCATION //disable this if not using packet encryption
  2. already do that sir. still got same error. it's weird, because after rathena support for client 2017-06-14, using @skillall it's work
  3. Already tried with lastest from github, same me too got this pronlem. is it related to lua files? because zack have update and i'm copy all form zack git to my data folder.
  4. Try ALT+tab, sometime at windows 7 and above got this problem ALT+tab to other windows and then ALT+tab back to Ragnarok windows.
  5. Try use data folder from this link https://github.com/zackdreaver/ROenglishRE
  6. Hi Amidamaru, I'm alaready edit my post above, please check it again. Thanks
  7. try download sysbox from the link i gave. and after that, put it on your data folder or your custom grf.
  8. try explain with SS, here my server network char_athena.conf map_athena.conf subnet_athena.conf server clientinfo.xml your friend clintinfo.xml SS in game at server side ss in game client side
  9. @Mikegyver did you ecounter error skill? I think all skill attach to the ground not working at this client some skill i already tried like - mage: skill thunderstorm - wizard: skill lord of vermillion, sotrm gust, and meteor storm - rune knight: dragon breath and dragon breath water
  10. i already tried without add manual what i've give above and it's works Thanks @Mikegyver
  11. Since the packet not yet update to rathena github, here clif_packetdb.h for this client.
  12. change it at src\config\packet.h not mmo.h at new rathena.
  13. Here's the link if you want try it.https://rathena.org/board/topic/111906-2017-05-17aragexere/
  14. No, just edit into client you're using right now. and if you get crash try update your KRO client
  15. @konishiwa just edit at src\config\packet.h make it like this #ifndef PACKETVER #define PACKETVER 20170517 #endif #ifndef PACKETVER_RE /// From this point on only kRO RE clients are supported #if PACKETVER > 20151104 #define PACKETVER_RE #endif #endif #if PACKETVER >= 20110817 /// Comment to disable the official packet obfuscation support. /// This requires PACKETVER 2011-08-17 or newer. #ifndef PACKET_OBFUSCATION //#define PACKET_OBFUSCATION // Define these inside src/custom/defines_pre.h or src/custom/defines_post.h //#define PACKET_OBFUSCATION_KEY1 <key1> //#define PACKET_OBFUSCATION_KEY2 <key2> //#define PACKET_OBFUSCATION_KEY3 <key3> /// Comment this to disable warnings for missing client side encryption //#define PACKET_OBFUSCATION_WARN
  16. @sader1992 Why at my NEMO Patcher Disable game guard doesn't appear. How to patch this client, any guide from you? Thanks before.
  17. hendra814

    whosell

    i think this feature can replace with item Universal Catalog Silver You can buy this item form npc at prontera town if not at prontera town you can found it at Eden paradise group
  18. Try with sorry, the problem not that's i'll try too..
  19. Already Solved. Thanks @hazimjauhari90
  20. Sorry, my mistake. at my testing computer it's used non up to date KRO. after i'm copy from my laptop into the computer it's work. Thanks @hazimjauhari90 btw at char console server show this error is it okay, or the warning can be solve?
  21. Can you share step by step what's your edit at src folder. maybe with your step will solve the problem.
×
×
  • Create New...