Griffon Mount

ZelosAvalon

New member
Messages
218
Points
0
Age
34
Emulator
how can I edit it to riding Griffin?

instead of the message to the Peco Peco, will say Griffin.

if( sd->class_&MAPID_SWORDMAN && sd->class_&JOBL_2 ) {
if (!pc_isridingpeco(sd)) { // if actually no peco
if (!pc->checkskill(sd, KN_RIDING)) {
sprintf(atcmd_output, msg_txt(213), skill->get_desc(KN_RIDING)); // You need %s to mount!
clif->message(fd, atcmd_output);
return false;
}
pc->setridingpeco(sd, true);
clif->message(fd, msg_txt(102)); // You have mounted a Peco Peco.
} else {//Dismount
pc->setridingpeco(sd, false);
clif->message(fd, msg_txt(214)); // You have released your Peco Peco.
}
return true;
}
 
Back
Top