How to change message when mount a Griffon

ZelosAvalon

New member
Messages
218
Points
0
Age
34
Emulator
when you ride in italics, this message appears: You have mounted a Peco Peco.

in message.conf is the line 102: You have mounted a Peco Peco.

how i can modify or create another line for when you mount a Griffon

appears this message: : You have mounted a Griffon.

 
 
@atcommand.c

if (!pc_isriding(sd)) { // if actually no peco bool is_RG = (sd->class_&MAPID_THIRDMASK) == MAPID_ROYAL_GUARD;  if (!pc->checkskill(sd, KN_RIDING)) { if(is_RG) clif->message(fd, "You can not mount a Griffon with your current job."); else clif->message(fd, msg_txt(213)); // You can not mount a Peco Peco with your current job. return false;  } pc->setoption(sd, sd->sc.option | OPTION_RIDING); if(is_RG) clif->message(fd, "You have mounted a Griffon."); else  clif->message(fd, msg_txt(102)); // You have mounted a Peco Peco.} else {//Dismount  pc->setoption(sd, sd->sc.option & ~OPTION_RIDING); if(is_RG) clif->message(fd, "You have released your Griffon."); else  clif->message(fd, msg_txt(214)); // You have released your Peco Peco.} 


default_ani_meow.gif


 
Back
Top