Jump to content

sader1992

Content Moderator
  • Posts

    1691
  • Joined

  • Last visited

  • Days Won

    77

Everything posted by sader1992

  1. i think it's here your_ro/System/Font folder
  2. open your grf with grf editor Tools > Advanced search your server ip in the search in the file filter put this *.txt;*.lub;*.log;*.xml;*.ini;*.c;*.h,*.lua and search and see the result what the files in your grf that have your server's ip in the next photo example i search for the ip here how it's look and edit the file that have your server ip if there is more then one edit them just to make sure
  3. you can't hide IP the PC need the ip to connect you can however make server like vpn and make the vpn connect to the real server and the ppl will see the vpn ip (the vpn ip will still there) player1 pc---------------------------------\ \ player2 pc----------------------------------- THE SERVER / player3 pc---------------------------------/ with 3rd party connection player1 pc---------------------------------\ \ player2 pc--------------------------------- THE VPN SERVER ---------------------------------------------- THE SERVER / player3 pc---------------------------------/ HOW you will do that ? i have no idea lol
  4. you need to edit the client info you use so it's in the data folder(only if you use the data folder) if not it's in your first grf (check your data.ini) if not it's the second grf etc
  5. those the account IDs that have the GM look so just add the Account IDs of the GM and remove the others Account id you can check it from the login database or by using @accinfo command in the game Example: i have new gm and his ID is 2000459 and i have your list of GMs then i add it like that <yellow> <admin>2000000</admin> <admin>2000003</admin> <admin>2000843</admin> <admin>2002542</admin> <admin>2003544</admin> <admin>2009033</admin> <admin>2013734</admin> <admin>2000459</admin> <-- this the new GM Account --> </yellow>
  6. "defaultmap" : "lighttest", to "defaultmap" : "prontera", try to run as administrator
  7. i didn't get what you really want
  8. bindatcmd "maprecall",strnpcinfo(3)+"::OnMapRecall",70,70; the first 70 is the command level so no one under the group 70 can use the command
  9. i don't think you can as i see you can do something like @refresh so it will close it Example: prontera,153,170,5 script cotin 100,{ mes "Close this window to open the Dress Room window."; next; opendressroom(1); next; mes"close?"; if(select("yes:no")==1){ atcommand "@refresh"; } end; }
  10. github wont load all the file it's 24280 lines look at line 22275 or search for it after you download it
  11. 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
  12. 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
  13. 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
  14. inside the grf(the first grf that the client read) or the data folder(only if you use the data folder)
  15. 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)
  16. 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
  17. client side: /System/achievement_list.lub server side: read this https://github.com/rathena/rathena/blob/master/doc/achievements.txt
  18. // 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
  19. improve the gepard/ip check (plz Approve the file )
  20. // 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
  21. post it as txt to correct it and did you change the packet keys in nemo ? or did you disable them in nemo ?
  22. you have to post more info screenshots etc
×
×
  • Create New...