Jump to content

Cydh

Developer
  • Posts

    2285
  • Joined

  • Last visited

  • Days Won

    77

Everything posted by Cydh

  1. seems ur svn working copy still in old ver, if u're using, right click the root working copy -> SVN Upgrade working copy.
  2. April & May Digest 2014 The following digest covers the month of April and May, 2014. Development Team & Staff @Emistry is now a Global Moderator @helvetica is now a Core Developer @Antares is now a Supporting Developer @rayn is now a Supporting Developer @Capuche is now a Script/DB Developer @nanakiwurtz is now a Script/DB Developer @Pneuma is now a Support Leader @Xynvaroth has been moved to Community Contributors. Development Highlights Major updates:Implemented Wolfchev's Laboratory instance. (dd9719d) @Aleos had another terrific months of bug-squashing, fixing a large number of skill issues in particular. Quest Log system improvement. (2fe8140) Costume System cleanup (0081e25)Added new command: @costume <costume name> Replaced all setoption on item scripts to sc_start Implemented a flagged items database for item groups and Dead Branch type item checks. (c95be2e) Item Group improvements (2d53a78, 704f4f2)Removed limit for Item Group database. Removed fixed array for item heal bonus for item group at player. Separated item heal rate for item group to bItemGroupHealRate. Many Item DB Updates, thank for the contributions. Statistics 8 authors have pushed 50 commits during this period. Thanks for submitting those pull requests! On master, 85 files have changed. There have been 10,104 additions and 4,602 deletions. - My apologies for the delay; we've all been very busy lately, so thank you all for your patience. - There are no stats for April as Github's "pulse" only goes back as far as 1 month.
  3. [info=Development Update][/info] Added some new battle configs, in conf/battle/player.conf
  4. select the database first before u use any query/command
  5. run the server first.
  6. your MySQL server isn't running yet, 6.1 CE, you were talking about MySQL Workbench version, not the MySQL itself.
  7. Slow Grace/Don't Forget Me effect isn't flat 20%, it's based on caster's dex/int, skill level, and Dancing Lesson level, as you can see here src/map/skill.c#L11905. And by default, that effect is'n removed when player is dead, you can comment this line to make it removed on player dead src/map/status.c#L10346 Asura Strike/Extremity Fist damage, you can adjust it in this file db/skill_damage_db.txt, or you can mak eyour own formula here src/map/battle.c#L3153
  8. I interested to make tool (may just .sql upgrade) to convert other RO emu to rA, by comparing current rA tables vs theirs. so don't need to update it every their table structures are changed.
  9. there, attached new .patch file for eA
  10. you can use this old release
  11. TFE, have link for download jRO? better if torrent or part files. thank you

    1. Show previous comments  4 more
    2. TheFinalEpisode

      TheFinalEpisode

      I want to help Cydh, since i have jRO Client at home. but to tell you honestly -i never play jRO. I will make a Thread of jRO Updates here in rAthena. i hope you can help me in this thing

    3. Cydh

      Cydh

      if you want, actually you can make thread just like Ziu does on Ragnarok News.

      well for the file, if you can extract from the GRF, try share/give me the .txt & lua/lub files

    4. TheFinalEpisode
  12. because I said "discount", not only for Discount Skill a Merchant skill.
  13. [info=Development Update][/info] Cleaned up the Font System Char-Server refactor
  14. Cydh

    Ctrl + V

    Paid Ragnarok-related services. (All topics within here require administrative approval.)
  15. it's group's permission. look at doc/permissions
  16. No Discount: "Disable Discount on a map' const.txt: mf_nodiscount mapflag: nodiscount No Over Charge: "Disable Overcharge on a map" const.txt: mf_noovercharge mapflag: noovercharge Just a simple release. mf_nodiscount-overcharge-rA.diff mf_nodiscount-overcharge-eA.patch
  17. mapflag 'movespeed <rate>'?
  18. mapflag 'nodiscount'? Mapflags to disable Discount & Overcharge
  19. Try this diff --git a/src/map/status.c b/src/map/status.c index d0b493b..96ec547 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -7101,6 +7101,14 @@ int status_get_sc_def(struct block_list *src, struct block_list *bl, enum sc_typ if( sc && !sc->count ) sc = NULL; + /* DIY */ + switch (type) { + case SC_FREEZE: + if (status->luk >= 255) + return 0; + break; + } + switch (type) { case SC_POISON: case SC_DPOISON:
  20. new weapons for event of 11th idRO anniversary
  21. there's item script with invalid item bonus
×
×
  • Create New...