ZelosAvalon 14 Posted May 31, 2014 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. Quote Share this post Link to post Share on other sites
0 malufett 247 Posted June 1, 2014 @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.} 2 WalkingBad and ZelosAvalon reacted to this Quote Share this post Link to post Share on other sites
0 WalkingBad 0 Posted June 1, 2014 try to search that line on your msgstringtable... Quote Share this post Link to post Share on other sites
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.
Share this post
Link to post
Share on other sites