Jump to content

trunaround

Members
  • Posts

    1
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling
  • Location
    xxx

trunaround's Achievements

Poring

Poring (1/15)

0

Reputation

  1. Hi, can i ask u abot some src I have tired to change src for change cart skill in case i need lv > 90 can change to all cart (i mean new cart for lv 100+ can change with lv 90+ charactor) i have change src in clif.c like this void clif_parse_ChangeCart(int fd,struct map_session_data *sd) {// TODO: State tracking? int type; if( sd && pc_checkskill(sd, MC_CHANGECART) < 1 ) return; type = (int)RFIFOW(fd,2); if( (type == 9 && sd->status.base_level > 90) || (type == 8 && sd->status.base_level > 90) || (type == 7 && sd->status.base_level > 90) || (type == 6 && sd->status.base_level > 90) || (type == 5 && sd->status.base_level > 90) || (type == 4 && sd->status.base_level > 80) || (type == 3 && sd->status.base_level > 65) || (type == 2 && sd->status.base_level > 40) || (type == 1)) pc_setcart(sd,type); but still dont work character lv 99 only change for 5 type not 9 type do u know how to mod this or it is on cilent not src?
×
×
  • Create New...