Jump to content

eppc0330

Members
  • Posts

    60
  • Joined

  • Last visited

Everything posted by eppc0330

  1. This is pet's talking table from official KRO and words are encrypted. How to decrypt this to read?
  2. https://github.com/rathena/rathena/pull/3544/files This Github patch drops "int pet_talk_convert_class" while converting pet_db.txt to pet_db.yml. Now pets can evolve, but can't talk. How to re apply "int pet_talk_convert_class" so pet can talk again as before and as official RO server?
  3. Of course I already have tried and checked that increasing ATK is different. But what I want to know is increasing formula.
  4. I am adding official new items and there's several ATK options. I found description in item_bonus.txt that bAtk script is not official. Then how are bAtk and bBaseAtk different? Which one gets increased by equipment, not status(like STR or DEX)?
  5. I can't find anywhere in conf or yml file.. where can I set this?
  6. I found client 20200902 uses userkey_s.lua instead fo userkey.lua and this file reset everytime I log out client. How to fix it? With same emulator and settings, 20200603 uses userkey.lua and this file does not get reset after log out.
  7. I am using 20200902 client and using 2020version rathena, which has been applied of pet evolution and pet_db.yml patch. I have tried many versions of rathena emulator, but all pets of rathena with pet_db.yml don't talk even their intimacy is MAX already. Is this normal or something error? When I was using 2018 rathena with pet_db.txt pet talks very well. How to make pets - with pet_db.yml patch - talk? P.S. Im not missing pettalktable.xml file. Pettalktable is not problem.
  8. I was using official KRO pettalktable.xml when I was in 2018rathena client, but its not working after I upgrade to 20200902 version. Can anyone release it for latest rathena client?
  9. Hi, I have updated my 20180802 client to 2020-09-02aRagexeRE. I was really expecting about pet evolution and their MVP mark like this: this is screentshot of PET: MOONLIGHT2 from official KRO server. MVP pet also has MVP mark like MVP monster and this is my server's: I thought MVP mark is about client version, but it's completely same as in 2018 version... weird thing is that others' pet in 2020 version has MVP mark..... what's the problem? I think my pet's pink name color is something wrong. Pet name should be same as monster... Also, in my client, my pets are not talking at all even their intimacy is MAX. I heard that 'talk_convert_class' has been dropped during converting pet_db.txt to pet_db.yml, but is that also mean pet's talking is totally disabled? Or it's just my client problem...? I have downloaded client 2020-09-02aRagexeRE here : http://nemo.herc.ws/downloads/ and server here : https://github.com/rathena/rathena I just got file from 'download zip' button. I really want to fix both problem. Please help me.
  10. Hi I think this sprite is much much better than default Valkyrie NPC sprite. Anyone has this one? I cant find anywhere.
  11. Oh I have checked this reply just right now. I understood. Thank you!!!!
  12. Korean??? If you are looking for item sprite, download RAGNAROK main server and open data.grf file in Gravity - Ragnarok folder. You can find files in it. Sorry Im not home I cant attach files directly now. 아이템 스프라이트 파일 찾는거면 한섭 공홈서 라그깔고 GRF Editor 로 Gravity - Ragnarok 폴더안에있는 data.grf 열어보면 sprite 경로안에 있슴다. 지금 집이 아니라서 파일 직접 드리지는 못하네요.
  13. Hi, Ive applied updated skill Poisoning weapon of GltCross. https://github.com/rathena/rathena/pull/4705 But there's an annoying error about the skill. First the skill works nicely when I use it. But after I relog my character, he gets poisoned.(That effect is Pyrexia and all other poisons are same) That's abnormal, I think... right? How to fix that...?
  14. Exactly my item script is : if(getskilllv("MO_TRIPLEATTACK") == 10){ skill "MO_TRIPLEATTACK",getskilllv("MO_TRIPLEATTACK")+1; } But I don't want to use "skill" script because when I unequip and equip this item, Tripleattack skill level is shown as 10 until I relog my character, even though it still works as 11. OH MY GOD.... I found the reason of error. It was my custom weapon card. When I use official card there's no error. I can use skill script now....
  15. That means triple rate is always 30% in any level. Actually I already have tested script : skill "MO_TRIPLEATTACK",11; and have changed battle.cpp to : if(sd && (skillv = pc_checkskill(sd,MO_TRIPLEATTACK)) > 0) { #ifdef RENEWAL int triple_rate = (skillv == 11)?100:30; //Base Rate #else int triple_rate = 30 - skillv; //Base Rate #endif It works well but there's very very tiny error with skill MO_TRIPLEATTACK 11 level. So I'm finding another way. Thanks for advice anyway!!
  16. Hi, I want to make knuckle with changing triple attack rate for +20 refine bonus. I found this in battle.cpp if(sd && (skillv = pc_checkskill(sd,MO_TRIPLEATTACK)) > 0) { #ifdef RENEWAL int triple_rate = 30; //Base Rate #else int triple_rate = 30 - skillv; //Base Rate #endif My custom item name is Asura. Is it possible to change triple rate to 60% if I equip item +20 Asura?
  17. Hi Rathena. There's a small problem in my server about skill "Rising dragon" of Sura. First When I use skill it does not display specific time of remained skill duration. I'm not sure whether KRo main server also does or not... If this is same as local server, I won't mind about this anymore. Anyway a real problem starts when I relog my character. I have just logged out right after I use "Rising dragon", but when I log in again the skill's almost disappearing. Finally, when the skill duration's finished, an icon remains like that above, until my character die or use the skill again. It must be source thing, I guess.... maybe status.cpp? But I can't find about this. Thanks for reading. I am waiting for help.
  18. Hi. I have added skill critical scripts in battle.cpp source file. Skills' crit damage works very well now, but just one thing, displayed damages are all for normal damage, while even critically hitting. I wonder if changing skill crit display is possible. P.S. Most of skills I changed are applied in KRO main server already.
  19. Thanks for great release first. Can you teach me how to apply diff file?
  20. Hi. I have tried to make 'infinite poison bottle' item, but I have no idea to solve problem about skill required item : How to make skill "Enchant Deadly Poison" consume ONLY ONE OF 'POISON BOTTLE' OR MY CUSTOM ITEM 'INFINITE POISON BOTTLE', not both? So I just tried another way : Skill "Research New Poison" First go to Item_db.txt and add script below in any item { if(getskilllv("GC_RESEARCHNEWPOISON") >= 10){ skill "GC_RESEARCHNEWPOISON",11; } },{},{ sc_end SC_EDP; } Next, Status.cpp, find if( sd )// [Ind] - iROwiki says each level increases its duration by 3 seconds tick += pc_checkskill(sd,GC_RESEARCHNEWPOISON)*3000; or if (sd) { uint16 poison_level = pc_checkskill(sd, GC_RESEARCHNEWPOISON); if (poison_level > 0) { tick += 30000; // Base of 30 seconds tick += poison_level * 15 * 1000; // Additional 15 seconds per level } } Then change to if (sd) { uint16 poison_level = pc_checkskill(sd, GC_RESEARCHNEWPOISON); if ((poison_level > 0) && (10 >= poison_level)) { tick += 30000; // Base of 30 seconds tick += poison_level * 15 * 1000; // Additional 15 seconds per level } else if (poison_level > 10) { tick += -60001; } } So I could make skill last permanently, during equiping my custom item with item script above I still can't solve about skill requiring item... Please teach me if anyone knows better, more simple way
  21. OH I HAVE FOUND IT!! NEVER MIND
  22. Hi, friends. The font in left side is from KRO main server and right side's in my server. I think KRO font is better. Can I change it?
×
×
  • Create New...