Item Delay MSG

SlashGeeGee

New member
Messages
52
Points
0
Age
30
Location
Core of Midgard
Github
SlashGeeGee
Hi Herc,

Just wondering i've spammed using the "Halter Lead" and the message say's "Content has been saved in [saveData_ExMacro%d]#" is this correct ? I found this message in line 1863 of my msgstringtable. and on the next line the correct message has it "%d seconds left until you can use#" .

So is it okay to remove line 1863 of my msgstringtable ? I'm using sir ossi's client side files by the way.
 

SlashGeeGee

 
no, all you need to do is to move line 1863 to 1864. vice versa,...

If you delete 1. the other strings will be affected.

 
Last edited by a moderator:
no, all you need to do is to move line 1863 to 1864. vice versa,...

If you delete 1. the other strings will be affected.

Thanks , I just need to make sure.
default_biggrin.png


SlashGeeGee

 
no, all you need to do is to move line 1863 to 1864. vice versa,...

If you delete 1. the other strings will be affected.

Thanks , I just need to make sure.
default_biggrin.png
SlashGeeGee
But according to official server I.e kro it was moved from 1863 to 1864.(atleast in 20130807, it is moved, I dont know exact date, when itwas moved.)So you can also change pc.c

Find

clif->msgtable_num(sd->fd, 0x746, e_tick + 1); // [%d] seconds left until you can use

Change to

clif->msgtable_num(sd->fd, 0x747, e_tick + 1); // [%d] seconds left until you can use

Thats why if you see https://subversion.assembla.com/svn/client-side-translation/Data/ we have kept latest msgstring at data folder and older msgstring are seperated in msgstring folder.

 
Last edited by a moderator:
no, all you need to do is to move line 1863 to 1864. vice versa,...

If you delete 1. the other strings will be affected.

Thanks , I just need to make sure.
default_biggrin.png
SlashGeeGee
But according to official server I.e kro it was moved from 1863 to 1864.(atleast in 20130807, it is moved, I dont know exact date, when itwas moved.)So you can also change pc.c

Find

clif->msgtable_num(sd->fd, 0x746, e_tick + 1); // [%d] seconds left until you can use

Change to

clif->msgtable_num(sd->fd, 0x747, e_tick + 1); // [%d] seconds left until you can use

Thats why if you see https://subversion.assembla.com/svn/client-side-translation/Data/ we have kept latest msgstring at data folder and older msgstring are seperated in msgstring folder.

Oh i see thanks i'll use this solution
default_smile.png


SlashGeeGee

 
Back
Top