Jump to content
  • 0
Sign in to follow this  
ZelosAvalon

How to change message when mount a Griffon

Question

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

2 answers to this question

Recommended Posts

  • 0

@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.} 

 

 

:meow:

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.