Jump to content

Playtester

Developer
  • Posts

    897
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by Playtester

  1. Was a bug on rAthena, I've fixed it now. https://github.com/rathena/rathena/commit/63e8fa0721ea8acf7a533517641a2f693e2e3a65
  2. Bragi stacks additively with item bonuses, that's official behavior (with Isilla Card anyway). So yeah if you have Isilla Card activate and you already have 50% cast reduction from Bragi, then you get instant cast.
  3. Main reasons to remove the exp requirements from the default file is: 1. It's easier to work with as it's a small file. So when official updates come (higher max level), it's easier to update and to compare with previous version. 2. There is no pattern for required EXP from Gravity and depending on what the max level is, a different EXP curve might be better. So it should be left to the server owners to design their EXP curve as suitable. 3. With a spreadsheet program it really doesn't take longer than two minutes to define an EXP curve, so I don't see the necessity of rAthena to support that by default when it just means more work for the devs that should rather concentrate on implementing official features.
  4. Did you try to use a magic skill on a freshly spawned Giearth? Still doesn't work? Another requirement is they need to be in idle state.
  5. You need to either put the required exp values you want for levels above the official level or use the premade import file I prepared. After compile it should automatically be available in your import folder and look like this: https://github.com/rathena/rathena/blob/master/db/import-tmpl/job_exp.txt Follow the instruction at the top of the file.
  6. Freeze time is reduced by equip MDEF, your stats don't matter.
  7. That's the normal damage randomness that comes from weapon damage, no?
  8. What buffs? Can someone else reproduce this issue? If yes, would be nice if you could report a way to reproduce it on the issue tracker: https://github.com/rathena/rathena/issues
  9. Sorry, no idea what you mean. Piercing bonus makes you ignore DEF and then the damage is multiplied by 0.01*(DEF+vitDEF).
  10. Most of the skill's damage come from the cast cost, though. https://github.com/rathena/rathena/blob/master/db/pre-re/skill_require_db.txt // SkillID,HPCost,MaxHPTrigger,SPCost,HPRateCost,[...] 254,0,0,37:44:51:58:65:72:79:86:93:100,20,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //CR_GRANDCROSS
  11. You got a bow equipped? It says job sniper, but seems the ATK displayed there is STR-based.
  12. Will have to code your own bonus for that if you don't want to influence other skills that pierce DEF. Don't think there's a "random" damage bonus yet. Even though you could use random in the item script it would not proc for every attack.
  13. Guide is a bit outdated and generally it should never be suggested to edit db files directly, always use the import folder for that. In any case, you need to add the exp requirements for higher levels as you want them to be. Or use the commented line in import that's already premade and supports levels up to 1000/255, but still needs corresponding job IDs added, see here for template: https://github.com/rathena/rathena/blob/master/db/import-tmpl/job_exp.txt
  14. I would like to know too if that's still possible. It's combined in the 2013-07-08 client, but it isn't in the 2015 client. Maybe it's no longer possible.
  15. There's no concrete episode in emulators since development wasn't episodic but by what data was available. The spawns in RC5 are mostly the spawns that existed between Episode 3 and the Amatsu spawn update. With never episode spawns added for newer maps.
  16. I wouldn't use eAthena RC5 itself, just take the spawn file from it and use it with rAthena. Maybe needs some adjustments first so the format still fits.
  17. Check job_db1.txt. https://github.com/rathena/rathena/blob/master/db/re/job_db1.txt
  18. You can't just replace it with the code in mob.c, you will need to code it yourself to do the same thing. And removing it will still give VIP users more drops, they just won't see it with @mi. Y'know something like: drop_rate += (int)(0.5 + (drop_rate * battle_config.vip_drop_increase) / 100); drop_rate = min(drop_rate,10000); //cap it to 100% But of course in mobinfo the drop rate variable is called "droprate" and I'm not sure if you can do the rounding the same way, needs to check if it's the same variable type and stuff. Just too lazy to do it now as it's a really simple coding issue.
  19. It's official behavior that it splashes into Land Protector. If you want to change it you'll have to make LP depend on the position of the target rather than the position of the unit that deals damage. You can read my post here where I posted how to revert it to unofficial behavior: https://github.com/HerculesWS/Hercules/issues/1203#issuecomment-199170963
  20. It's just a display issue, drop rate still is 100%. The drop rate is properly capped to 100% in mob.c::mob_dead. Only the @mi command doesn't cap it in the display, check atcommand.c #ifdef VIP_ENABLE // Display item rate increase for VIP. if (pc_isvip(sd) && battle_config.vip_drop_increase) droprate += (droprate * battle_config.vip_drop_increase) / 100; #endif This code isn't so good because it uses a different formula than what is used in mob_dead. You could just remove it so it no longer is displayed in @mi or copy what is used in mob.c: // Increase item drop rate for VIP. if (battle_config.vip_drop_increase && (sd && pc_isvip(sd))) { drop_rate += (int)(0.5 + (drop_rate * battle_config.vip_drop_increase) / 100); drop_rate = min(drop_rate,10000); //cap it to 100% }
  21. Maybe you increased the maximum drop rate above 10000?
  22. If you mean the @duel exploit, the fix is here: https://github.com/rathena/rathena/commit/c6ed8a4f92a143eca9ddc1c2161f88c1db9f70f4
  23. How did you edit jobexp.txt? Added exp requirements for pre-re? Or copied over re exp requirements?
  24. Yes, there is only one condition value.
  25. No val1, etc. are used for the skill the monster is using, not the condition. You need to do one row per skill trigger.
×
×
  • Create New...