Hi there
I'm using
Packet gamenotice = new Packet(0x300C);
gamenotice.WriteUInt16(3100);
gamenotice.WriteUInt8(1);
gamenotice.WriteAscii(UIIT_STT_JOB_LEVEL);
m_LocalSecurity.Send(gamenotice);
Send(false);
Packet rightnotice = new Packet(0x300C);
rightnotice.WriteUInt16(3100);
rightnotice.WriteUInt8(2);
rightnotice.WriteAscii(UIIT_STT_JOB_LEVEL);
m_LocalSecurity.Send(rightnotice);
Send(false);
to send notice
my UIIT_STT_JOB_LEVEL in textuisystem.txt is "Your level is too low to wear a job suit !"
How to change it to
"You should be Level [%d] or higher to wear a job suit" ??
i want to know how to replace %d with my value while sending notice
Thanks. :handsdown:
I'm using
Packet gamenotice = new Packet(0x300C);
gamenotice.WriteUInt16(3100);
gamenotice.WriteUInt8(1);
gamenotice.WriteAscii(UIIT_STT_JOB_LEVEL);
m_LocalSecurity.Send(gamenotice);
Send(false);
Packet rightnotice = new Packet(0x300C);
rightnotice.WriteUInt16(3100);
rightnotice.WriteUInt8(2);
rightnotice.WriteAscii(UIIT_STT_JOB_LEVEL);
m_LocalSecurity.Send(rightnotice);
Send(false);
to send notice
my UIIT_STT_JOB_LEVEL in textuisystem.txt is "Your level is too low to wear a job suit !"
How to change it to
"You should be Level [%d] or higher to wear a job suit" ??
i want to know how to replace %d with my value while sending notice
Thanks. :handsdown: