Delay MSG [Ygg and others]

vBrenth

New member
Messages
391
Points
0
Age
35
Location
Philippines
Discord
Brenth
Github
vBrenth
Emulator
Client Version
RE
I am currently using 2010-07-30 client.

2q185rr.jpg


How can i fix this? been looking for solution long time ago, but its still there
default_biggrin.png
or how can i remove the delay msg entirely?


Same topic: http://herc.ws/board/topic/5937-no-msg-1862-when-using-yggdrasil-berry-608-and-607/

But it seems that iZeal fixed it so i tried to follow his fixes.

378: Item Failed. [%s] is cooling down. Wait %.1f minutes.
379: Item Failed. [%s] is cooling down. Wait %d seconds.
I added this on messages.conf still nothing.

 
Last edited by a moderator:
remove this line:

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

from pc.c

and recompile

 
When i remove that i get this line

pc.c: In function âpc_useitemâ:
pc.c:4621: warning: unused variable âe_tickâ


int e_tick = (int)(DIFF_TICK(sd->item_delay.tick, tick)/1000);
So i also have to line this

int e_tick = (int)(DIFF_TICK(sd->item_delay.tick, tick)/1000);
Anyway to make the msg works? using 2010-07-30

 
Last edited by a moderator:
When i remove that i get this line

pc.c: In function âpc_useitemâ:

pc.c:4621: warning: unused variable âe_tickâ

int e_tick = (int)(DIFF_TICK(sd->item_delay.tick, tick)/1000);
So i also have to line this

int e_tick = (int)(DIFF_TICK(sd->item_delay.tick, tick)/1000);
Anyway to make the msg works? using 2010-07-30
Did you fixed this problem?

I got the same problem also using 2010-07-30 client

 
Last edited by a moderator:
Warning isn't an error, it just warn's you that some part of the allocated variables aren't use in the following code section.

You can also comment the warned line to remove the error.

To get the message working, you have to update the messages.conf file in conf folder, to add a description for given id.

 
Warning isn't an error, it just warn's you that some part of the allocated variables aren't use in the following code section.

You can also comment the warned line to remove the error.

To get the message working, you have to update the messages.conf file in conf folder, to add a description for given id.
How can i edit the messages conf where should i put description to make it work?

 
Well I don't know what I can say more than "edit messages.conf in conf folder"...

 
The message itself is missing from your msgstringtable.txt, actual line is 1863.

You can either update the file to include it or comment the line in pc.c evilpuncker mentioned to remove it entirely.

 
The message itself is missing from your msgstringtable.txt, actual line is 1863.

You can either update the file to include it or comment the line in pc.c evilpuncker mentioned to remove it entirely.
I Got a msgstringtable.txt up to  2325 lines. how come i still get this thing?
default_sad.png


 
Back
Top