-
Posts
114 -
Joined
-
Last visited
-
Days Won
4
Community Answers
-
Hanashi's post in Act Editor Save as palette via script was marked as the answer
foreach(var file in Directory.GetFiles(@"C:\test\", "*.spr")) { var spr = new Spr(file); if (spr.Palette != null) spr.Palette.Save(@"C:\test\" + Path.GetFileNameWithoutExtension(file) + ".pal"); } credits to @Tokei answered the question via discord ❤️
-
Hanashi's post in cant decrease hairstyle and hair color in creation was marked as the answer
nvm found it MStr3am NEMO History
-
Hanashi's post in disable some interface was marked as the answer
i found another option
instead of trying to disable or hiding extended minimap
i just disabled the map to use the extended minimap"
add map you want to disable under your client
data/exceptionminimapnametable.txt
sample:
izlude_d#
and if you want to change the disable dialog then go
data/msgstringtable.txt
In this map You can't memorize and zoom the minimap.# <-change this line to whatever you like
sample:
Extended minimap feature is not available.#
-
Hanashi's post in highlight skill slot color was marked as the answer
case solved:
D2 1D 68 B4 FF B4 00 8B C1 <-look for this line
RED channel - CA
GREEN channel - DF
BLUE channel - FB
For example, we want to change it by blue color. We need to modify bytes to:
D2 1D 68 00 00 FF 00 8B C1
credits to @Functor
for giving me hints on how to hexed client ?
-
Hanashi's post in 2013-08-07aRagexe Rejected by server was marked as the answer
if disabled packet encryption is not checked
make sure your packets keys are the same on db\packet_db.txt
change this line:
packet_db_ver: default packet_keys_use: default to
packet_db_ver: 45 packet_keys_use: 0x7E241DE0,0x5E805580,0x3D807D80 make sure your this three packets are the same with 3 packets on your diff
7E241DE0
5E805580
3D807D80
if disabled packet encryption is checked
under \src\config\core.h
comment this line:
#define PACKET_OBFUSCATION //#define PACKET_OBFUSCATION then recompile your server
-
Hanashi's post in increase packet database table was marked as the answer
nevermind i found it already =,=...(i just search stuff on github)
here is the answer:
under:
rathena/src/map/clif.h
change this line:
MAX_PACKET_VER = 55, to
MAX_PACKET_VER = 56,// or what version you like