Issue information

Issue ID
#6529
Status
Invalid
Severity
None
Started
Hercules Elf Bot
Aug 21, 2012 20:49
Last Post
Hercules Elf Bot
Nov 30, 2012 20:45
Confirmation
Yes (2)
No (4)

Hercules Elf Bot - Aug 21, 2012 20:49

Originally posted by [b]Napster[/b]
Can't Check Authorised letters/symbols in the name of the character

[CODE]
// Check Authorised letters/symbols in the name of the character
if( char_name_option == 1 )
{ // only letters/symbols in char_name_letters are authorised
for( i = 0; i < NAME_LENGTH && name[i]; i++ )
if( strchr(char_name_letters, name[i]) == NULL )
return -2;
}
else if( char_name_option == 2 )
{ // letters/symbols in char_name_letters are forbidden
for( i = 0; i < NAME_LENGTH && name[i]; i++ )
if( strchr(char_name_letters, name[i]) != NULL )
return -2;
}
[/CODE]

please confirm thankyou

Hercules Elf Bot - Aug 21, 2012 21:56

Originally posted by [b]mkbu95[/b]
It's working as intended here. Hexed: 2012-07-16aRagexeRE

Hercules Elf Bot - Aug 21, 2012 22:11

Originally posted by [b]Napster[/b]
i have test 2012-04-10a
and disconnect from server

[img]https://dl.dropbox.com/u/16689832/char_error.jpg[/img]

Hercules Elf Bot - Aug 21, 2012 22:34

Originally posted by [b]mkbu95[/b]
Try packet_db_ver: 30 on db/packet_db.txt and #define PACKETVER 20120716 on common/mmo.h or even #define PACKETVER 20120410

I tested with 2012-04-10a and I got no errors.

@edit
If none work, try adding this packet on your packet_db.txt:[code]0x08fc,30[/code]between:[code]0x08FB,6,bookingcanceljoinparty,2
0x08fc,30 //here
0x0907,5,moveitem,2:4[/code]

This post has been edited by mkbu95 on Aug 21, 2012 23:20

Hercules Elf Bot - Aug 22, 2012 5:24

Originally posted by [b]Napster[/b]
still not working
can't change chararcter's names

i have test last rA version

[quote]
[color=#282828][font=helvetica, arial, sans-serif][size=3]
Try packet_db_ver: 30 on db/packet_db.txt and #define PACKETVER 20120716 on common/mmo.h or even #define PACKETVER 20120410

I tested with 2012-04-10a and I got no errors.

@edit
If none work, try adding this packet on your packet_db.txt:
[color=#006666]0x08fc[/color][color=#666600],[/color][color=#006666]30[/color]between:
[color=#006666]0x08FB[/color][color=#666600],[/color][color=#006666]6[/color][color=#666600],[/color][color=#000000]bookingcanceljoinparty[/color][color=#666600],[/color][color=#006666]2[/color]
[color=#006666]0x08fc[/color][color=#666600],[/color][color=#006666]30[/color][color=#000000] [/color][color=#880000]//here[/color]
[color=#006666]0x0907[/color][color=#666600],[/color][color=#006666]5[/color][color=#666600],[/color][color=#000000]moveitem[/color][color=#666600],[/color][color=#006666]2[/color][color=#666600]:[/color][color=#006666]4[/color]
[/size][/font][/color]
[/quote]

This post has been edited by Napster on Aug 22, 2012 5:30