Jump to content

Bringer

Members
  • Posts

    748
  • Joined

  • Last visited

  • Days Won

    1

Bringer last won the day on September 19 2022

Bringer had the most liked content!

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

53842 profile views

Bringer's Achievements

  1. @Kater did you try on latest rathena ?
  2. try check this commit https://github.com/rathena/rathena/pull/6181/commits/71a0a962f4b5e2aeb75a0a0d85efb6198e53657e
  3. here my sample how to update to latest rathena https://rathena.org/board/topic/141486-updated-soul-link-modifications-for-highrate-server/#comment-429247
  4. //Nothing stripped. - if( sd && !i ) + if (sd && !i) clif_skill_fail( *sd, skill_id ); + if (sd && tsc && sd->sc.getSCE(SC_SPIRIT) && sd->sc.getSCE(SC_SPIRIT)->val2 == SL_ROGUE) { + int item_id = 7139; // Glistening Coat + int ii; + ARR_FIND(0, MAX_INVENTORY, ii, sd->inventory.u.items_inventory[ii].nameid == item_id); + if (ii < MAX_INVENTORY) { + pc_delitem(sd, ii, 1, 0, 0, LOG_TYPE_CONSUME); + clif_emotion(src, ET_HUK); + } + } break; }
  5. you can still use the old Soul Linker Mod sample of Old Code case CR_SHIELDCHARGE: if (sd && sd->sc.data[SC_SPIRIT] && sd->sc.data[SC_SPIRIT]->val2 == SL_CRUSADER) skillratio += 60 * skill_lv; else skillratio += 20 * skill_lv; break; latest rathena changed the sd->sc.data[SC_SPIRIT] to sd->sc.getSCE(SC_SPIRIT) new code will be if (sd && sd->sc.getSCE(SC_SPIRIT) && sd->sc.getSCE(SC_SPIRIT)->val2 == SL_CRUSADER)
  6. i still want to give it a try and retrieve it , even if it will not be productive, is it possible because i want to know what its got so i can add as back up
  7. Make new grf then save advance choose File Encrypt File Table and try to open the grf 100% blank
  8. How can I retrieve files when using Encrypt File Table?
  9. Status.cpp case SC_KAAHI: val2 = 200*val1; // HP heal val3 = 5*val1; // SP cost break; case SC_KAITE: val2 = 1+val1/5; // Number of bounces: 1 + skill_lv/5 break; case SC_KAUPE: switch (val1) { case 3: // 33*3 + 1 -> 100% val2++; case 1: case 2: // 33, 66% val2 += 33*val1; val3 = 1; // Dodge 1 attack total. break; default: // Custom. For high level mob usage, higher level means more blocks. [Skotlex] val2 = 100; val3 = val1-2; break;
  10. try check this site https://ronovelty.com/product/rental-offline-vending-system-new-ui/
  11. @Tero can you make free src for Wizard have ability goes Critical Magic when using Current item or card weapon? Just like at ROM Eternal Love?
×
×
  • Create New...