Jump to content

clerosheen

Members
  • Posts

    10
  • Joined

  • Last visited

Posts posted by clerosheen

  1. i want to remove save point on AL_WARP ( Warp Portal )

    This is the real script on trunk/src/map/skill.c

    case AL_WARP:

    if(sd)

    {

    clif_skill_warppoint(sd, skillid, skilllv, sd->status.save_point.map,

    (skilllv >= 2) ? sd->status.memo_point[0].map : 0,

    (skilllv >= 3) ? sd->status.memo_point[1].map : 0,

    (skilllv >= 4) ? sd->status.memo_point[2].map : 0

    );

    }

    return 0; // not to consume item.

    i want change to

    case AL_WARP:

    if(sd)

    {

    clif_skill_warppoint(sd, skillid, skilllv, sd->status.memo_point[0].map : 0,

    (skilllv >= 2) ? sd->status.memo_point[0].map : 0,

    (skilllv >= 3) ? sd->status.memo_point[1].map : 0,

    (skilllv >= 4) ? sd->status.memo_point[2].map : 0

    );

    }

    return 0; // not to consume item.

    will this work?

×
×
  • Create New...