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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

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