Jump to content

Napster

Members
  • Posts

    196
  • Joined

  • Last visited

  • Days Won

    6

Community Answers

  1. Napster's post in Map-server crashes upon logging in. was marked as the answer   
    try check in https://github.com/rathena/rathena/commit/25cb15161f00e636a1cd4091f7784c1877143e78

    fixed in this, thank you
  2. Napster's post in KN_AUTOCOUNTER casting bar was marked as the answer   
    oops, sorry 

    try check in fucntion skill_timerskill , skill.c

    find
     
    add to
     
     
    but i'am not test try check again
  3. Napster's post in [ HELP ] Black Login Screen was marked as the answer   
    You forgot diff Enforce Official Login Backgroud 
  4. Napster's post in cell_nopvp cell_pvp was marked as the answer   
    move to topic: http://rathena.org/board/topic/98070-extended-cell-pvp-17/
  5. Napster's post in Item Delay was marked as the answer   
    find & open in folder conf/msg_conf/map_msgconf
     
    find 
     
    change
     
     
    save and restart again
  6. Napster's post in Costume Item was marked as the answer   
    // Top = 256|1024
    // Mid = 512|2048
    // Low = 1|4096
     
    // Top+Mid = 768|3072
    // Top+Low = 257|5120
    // Mid+Low = 513|6144
    // Top+Mid+Low = 769|7168
     
    // Robe = 4|8192
    // Ammo = 32768
    // Shadow Armor = 65536
    // Shadow Weapons = 131072
    // Shadow Shield = 262144
    // Shadow Shoes = 524288
    // Shadow Acc R = 1048576
    // Shadow ACC L = 2097152
  7. Napster's post in Body Relocation was marked as the answer   
    see skill.c 
    case MO_BODYRELOCATION: if (unit_movepos(src, x, y, 1, 1)) { #if PACKETVER >= 20111005 clif_snap(src, src->x, src->y); #else clif_skill_poseffect(src,skill_id,skill_lv,src->x,src->y,tick); #endif if (sd) skill_blockpc_start (sd, MO_EXTREMITYFIST, 2000); } break; add this and recompile
    case MO_BODYRELOCATION: if (unit_movepos(src, x, y, 1, 1)) { #if PACKETVER >= 20111005 clif_skill_poseffect(src,skill_id,skill_lv,src->x,src->y,tick); clif_snap(src, src->x, src->y); #else clif_skill_poseffect(src,skill_id,skill_lv,src->x,src->y,tick); #endif if (sd) skill_blockpc_start (sd, MO_EXTREMITYFIST, 2000); } break;
×
×
  • Create New...