Jump to content

sader1992

Content Moderator
  • Posts

    1678
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by sader1992

  1. github wont load all the file it's 24280 lines look at line 22275 or search for it after you download it
  2. opendressroom(1); https://github.com/rathena/rathena/blob/2676d05394008288a882c8966a4d6da3865d0eaa/doc/script_commands.txt#L9514 feel free to explore this file every scripter have this file always open
  3. it's not one texture it's combination and they act as it's in the str file the skill trigger the str file and the str file play the textures it have
  4. i don't know why you want that but the server time is from the system time ,you can just change the system time and it will change in the server
  5. inside the grf(the first grf that the client read) or the data folder(only if you use the data folder)
  6. the name of the tabs can be change through the msgstringtable.txt search for the tab name end it up with <space># Example: Adventure # also the sub tab Example; Training # (i think they start at line 2657)
  7. i don't think you can add or remove one of the tabs they are hard coded in the client you can add edit remove achievement you can change the name of the tab change the name of one of the tabs then remove all the achievement from it then add your achievement to it
  8. client side: /System/achievement_list.lub server side: read this https://github.com/rathena/rathena/blob/master/doc/achievements.txt
  9. // Copyright (c) rAthena Dev Teams - Licensed under GNU GPL // For more information, see LICENCE in the main folder #ifndef _CONFIG_PACKETS_H_ #define _CONFIG_PACKETS_H_ /** * rAthena configuration file (http://rathena.org) * For detailed guidance on these check http://rathena.org/wiki/SRC/config/ **/ #ifndef PACKETVER #define PACKETVER 20151104 #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> 0x4C17382A //#define PACKET_OBFUSCATION_KEY2 <key2> 0x7ED174C9 //#define PACKET_OBFUSCATION_KEY3 <key3> 0x29961E4F /// Comment this to disable warnings for missing client side encryption //#define PACKET_OBFUSCATION_WARN #endif #else #if defined(PACKET_OBFUSCATION) #error You enabled packet obfuscation for a version which is too old. Minimum supported client is 2011-08-17. #endif #endif #ifndef DUMP_UNKNOWN_PACKET //#define DUMP_UNKNOWN_PACKET #endif #ifndef DUMP_INVALID_PACKET //#define DUMP_INVALID_PACKET #endif /** * No settings past this point **/ /// Check if the specified packetversion supports the pincode system #define PACKETVER_SUPPORTS_PINCODE PACKETVER >= 20110309 /// Check if the client needs delete_date as remaining time and not the actual delete_date (actually it was tested for clients since 2013) #define PACKETVER_CHAR_DELETEDATE (PACKETVER > 20130000 && PACKETVER <= 20141022) || PACKETVER >= 20150513 /// Check if the specified packetvresion supports the cashshop sale system #define PACKETVER_SUPPORTS_SALES PACKETVER >= 20131223 #endif // _CONFIG_PACKETS_H_ recompile
  10. improve the gepard/ip check (plz Approve the file )
  11. // Copyright (c) rAthena Dev Teams - Licensed under GNU GPL // For more information, see LICENCE in the main folder #ifndef _CONFIG_PACKETS_H_ #define _CONFIG_PACKETS_H_ /** * rAthena configuration file (http://rathena.org) * For detailed guidance on these check http://rathena.org/wiki/SRC/config/ **/ #ifndef PACKETVER #define PACKETVER 20151104 #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> 0x4C17382A //#define PACKET_OBFUSCATION_KEY2 <key2> 0x7ED174C9 //#define PACKET_OBFUSCATION_KEY3 <key3> 0x29961E4F /// Comment this to disable warnings for missing client side encryption #define PACKET_OBFUSCATION_WARN #endif #else #if defined(PACKET_OBFUSCATION) #error You enabled packet obfuscation for a version which is too old. Minimum supported client is 2011-08-17. #endif #endif #ifndef DUMP_UNKNOWN_PACKET //#define DUMP_UNKNOWN_PACKET #endif #ifndef DUMP_INVALID_PACKET //#define DUMP_INVALID_PACKET #endif /** * No settings past this point **/ /// Check if the specified packetversion supports the pincode system #define PACKETVER_SUPPORTS_PINCODE PACKETVER >= 20110309 /// Check if the client needs delete_date as remaining time and not the actual delete_date (actually it was tested for clients since 2013) #define PACKETVER_CHAR_DELETEDATE (PACKETVER > 20130000 && PACKETVER <= 20141022) || PACKETVER >= 20150513 /// Check if the specified packetvresion supports the cashshop sale system #define PACKETVER_SUPPORTS_SALES PACKETVER >= 20131223 #endif // _CONFIG_PACKETS_H_ recompile if you did not change the packet key everything would work like that
  12. post it as txt to correct it and did you change the packet keys in nemo ? or did you disable them in nemo ?
  13. you have to post more info screenshots etc
  14. post your packet.h and screenshot for the error in the client when it happen ? do you use packet keys ?
  15. http://thor.aeomin.net/archive/Thor_Patcher[2.6.4.13b].7z
  16. did you try to use another version ? i use Thor_Patcher[2.6.4.13b] can you test that ?
  17. i have no error i suggest you open a new post and give more information with screenshots
  18. *removing ragexe from my repository*
  19. https://github.com/rathena/rathena/wiki/Custom_Items
×
×
  • Create New...