Jump to content
The forums will be going offline for an extended maintenance period at 1400hrs GMT on 19th June 2025. The number of hours for this downtime is intentionally not advertised due to the nature of these upgrades. ×

MathReaper

Members
  • Posts

    57
  • Joined

  • Last visited

  • Days Won

    1

Community Answers

  1. MathReaper's post in Compile errors with actual Git-Hub Version was marked as the answer   
    Open the rAthena.sln and after the Visual Studio opens, right-click in the "Solution 'rAthena' (8 projects)" and select the option "Retarget Solution" and hit OK. After that, right-click again and choose "Clean Solution". Try to compile it.
  2. MathReaper's post in Where can I translate this? was marked as the answer   
    Go to the GRF with your translations and go to that path:
    [GRF]/data/luafiles514/lua files/skillinfoz/SkillTreeView.lub Find something like this:
    JobSkillTab.ChangeSkillTabName(JOBID.JT_NOVICE, "1st", "2nd", "3rd") JobSkillTab.ChangeSkillTabName(JOBID.JT_NINJA, "1st", "2nd", "3rd") JobSkillTab.ChangeSkillTabName(JOBID.JT_GUNSLINGER, "1st", "2nd", "3rd") JobSkillTab.ChangeSkillTabName(JOBID.JT_SUPERNOVICE, "1st", "2nd", "3rd") JobSkillTab.ChangeSkillTabName(JOBID.JT_TAEKWON, "1st", "2nd", "3rd") JobSkillTab.ChangeSkillTabName(JOBID.JT_STAR, "1st", "2nd", "3rd") JobSkillTab.ChangeSkillTabName(JOBID.JT_LINKER, "1st", "2nd", "3rd") JobSkillTab.ChangeSkillTabName(JOBID.JT_STAR2, "1st", "2nd", "3rd") JobSkillTab.ChangeSkillTabName(JOBID.JT_DO_SUMMONER, "Summoner") JobSkillTab.ChangeSkillTabName(JOBID.JT_DO_SUMMONER_B, "Summoner") Rewrite the string as you want.
  3. MathReaper's post in Aspd Calculations was marked as the answer   
    Ok, in the 'status_base_amotion_pc' function on status.cpp file, search for:
    amotion -= amotion * (4 * status->agi + status->dex) / 1000; Change to:
    amotion -= amotion * 2 * status->agi / 1000;  
×
×
  • Create New...