Help in No Setting # msg issue

Status
Not open for further replies.
Newbie Spellweaver
Joined
Dec 15, 2010
Messages
70
Reaction score
1
Hi friend have sme prob with No Setting # msg u guys can help to to translate that No Setting "Number" to my error msg i found that msg is from Zoneserver but not getting any information about that in deep just got the string No Setting # but need number description for that

When in my server char inve full me getting "No Setting47" error but i need instead of that as inventory full how to implement that one
Please help me in this issue

THANKS IN ADVANCE
 
You gotta hex the a3_msgzone.dat file or whatever its name is in ZS.
Read the sequence of bit.
Its sequence is Message Number, 00, Message Size, Message.

Than hex and insert string in appropiate place and its done.
 
You gotta hex the a3_msgzone.dat file or whatever its name is in ZS.
Read the sequence of bit.
Its sequence is Message Number, 00, Message Size, Message.

Than hex and insert string in appropiate place and its done.

Can u elobrate a bit.I cant understand it plz explain little bit in details :rolleyes:
Thanks In Advance :thumbup:
 
You gotta hex the a3_msgzone.dat file or whatever its name is in ZS.
Read the sequence of bit.
Its sequence is Message Number, 00, Message Size, Message.

Than hex and insert string in appropriate place and its done.

Your are mistaken buddy.

No Setting (number) comes if there is no message in the A3Msg_Zone_Tw.dat for that particular Index number.

All you have to do is add the required message at the end of A3Msg_Zone_Tw.dat file and restart server.

For Eg: " No setting 100" - is the msg you get in game and
you want to change it to "Message is this".

All you have to do is:

Open A3Msg_Zone_Tw.dat file in Hex editor
After last byte enter the Hex form of 100 = Hex 64 00 ( 1st 2 byte for number)
3rd and 4th Byte will be 3c 00
5th and 6th will be length of message = length of "Message is this" = 14 = hex 0E 00
then type the message

Final - 64 00 3C 00 0E 00 4D 65 73 73 61 67 65 20 69 73 20 74 68 69 73

(Message Index Number - 64 00)
(Dont know , Just Add - 3C 00)
(Length of Message - 0E 00)
(Message in Hex - 4D 65 73 73 61 67 65 20 69 73 20 74 68 69 73)

Rgs
Dipak
 
Status
Not open for further replies.
Back