Jump to content

Chaos92

Members
  • Posts

    1864
  • Joined

  • Last visited

  • Days Won

    63

Everything posted by Chaos92

  1. maybe there are spacing or anything, it corrupt the yml reading. Hmm if i have time, Ill try to create generator for this.
  2. If you think its wrong, maybe you can create an issue in https://github.com/rathena/rathena . So that they can check and fix it if its really need to be changed.
  3. yes if you use Chris Tranlation, it should be iteminfo_EN.lua now. and for db, just add at import, it will overwrites. By the way, from your screenshot, I could say the encoding of the files area broken. make sure to use korean encoding maybe while editing that iteminfo.
  4. I have generator have you tried it ?
  5. most probably your grf doesnt have that file needed as it stated at iteminfo.
  6. just restart the server. only changes in src will need compile
  7. There is no way to reload that except you customize it or anything. The list of existing reloads most probably here : https://github.com/rathena/rathena/blob/master/doc/atcommands.txt#L1456
  8. either dont use too many event queue, or increase the eventqueue limit. There are some post related to this
  9. show the error.
  10. that is hairstyle. you might need the palette. Maybe can you Kamishi palette : https://kamishi.ragnawork.com/product/700-palettes-human-pack.
  11. yes, if you follow the instruction, need that correction file, it should be good until 3rd job class alternative.
  12. Kamishi released 700 packs of palette for free : https://kamishi.ragnawork.com/product/700-palettes-human-pack/ Read the instruction on how to install it.
  13. change the location doesnt duplicate it. just change the location of the item only in equipments.
  14. just change the location in itemdb
  15. Hello, you didnt use the jobmaster from rathena ? https://github.com/rathena/rathena/blob/master/npc/custom/jobmaster.txt There is this part .LastJob = true; // Enforce linear class changes? it is enforce as default linear class changes.
  16. jobdb is readed as it should be or not ? @job anything does it gives you the skills ? You client seems new compare to released one so I dont know if there is related issue about that. How about use the clean one before u change any files.
  17. that is just a warning. issues has been created here : https://github.com/rathena/rathena/issues/8177.
  18. First, you need to enable and add the jobs that can access that level in db/import https://raw.githubusercontent.com/rathena/rathena/master/db/import-tmpl/job_stats.yml. Also, maybe the statpoint for it if you want to add more in statpoint.yml https://github.com/rathena/rathena/blob/master/db/import-tmpl/statpoint.yml or follow in db prere or re and add more. Thinking to add generator for this but im still didnt have much time to do it for now.
  19. What does it shows when you click the ! button ?
  20. Maybe because of lua files that have problem. Try to use Chris English Translation : https://github.com/llchrisll/ROenglishRE
  21. I think its from this line : https://github.com/rathena/rathena/blob/master/src/map/skill.cpp#L15154C7-L15154C20 case BA_POEMBRAGI: val1 = 3 * skill_lv + status->dex / 10; // Casting time reduction //For some reason at level 10 the base delay reduction is 50%. val2 = (skill_lv < 10 ? 3 * skill_lv : 50) + status->int_ / 5; // After-cast delay reduction if (sd) { val1 += pc_checkskill(sd, BA_MUSICALLESSON); val2 += 2 * pc_checkskill(sd, BA_MUSICALLESSON); } break; Maybe you can change the formula then depends on your needs. if you want to remove the casting time reduction, maybe make the val1 value is 0.
  22. its because in latest client, they remove most of the blank minimap and the client should read exceptionminimapnametable.txt (which have the list of all the exception map name), but it seems like the client isnt reading that. If checking using hex editor, it have that txt content but still, I dont know why its not read by the client at all. Let me know if you have some maps that are still have that issue, since I might missed any and I want to update that GRF too.
×
×
  • Create New...