Jump to content

Cydh

Developer
  • Posts

    2285
  • Joined

  • Last visited

  • Days Won

    77

Everything posted by Cydh

  1. What's ur job? 18 is for "Trans/Upper" classes or "Trans. Third" classes
  2. about @dropall Modification & @dropalltab, still u guys need @dropalltab? or just modify the @dropall <type> or @dropall <type:type:type:type:type>.
  3. (I thought) even the client datas are updated, if didn't use (at least) 2013-08-07aRagexe, the sprites aren't displayed. @_@
  4. I just found 2013-07-17c instead 2013-07-14c anyone can confirm another client (below 2013-08-07aRagexe) that work with Rebellion?
  5. here you go 8a66d82 I think @Sanasol have something do to again after @Lighta's commits. NOTE: skill_require_db.txt was added 1 column again for require, it's after ,RequiredItemID10,RequiredItemAmount10,<here>
  6. yup, there are some differences between our skill_db and skill_require_db columns, we have more 1 column each file skill_db for INF3 colum, and skill_require_db for RequireStatuses column. @Sanasol can up date those files?
  7. https://github.com/rathena/rathena/pull/12 Thank you.
  8. I just believe they're the correct values. Like hipsterfont said, it's an official way
  9. if anyone has the working diff, can do pull request on our git, it's very helpfull.
  10. Cydh

    SQL DEBUG

    pke SQL log ya gan? log_athena.conf // Use MySQL Logs? [SQL Version Only] (Note 1) sql_logs: yes udah setting inter_athena.conf bwt log databasenya? // MySQL Log SQL Database log_db_ip: 127.0.0.1 log_db_port: 3306 log_db_id: ragnarok log_db_pw: ragnarok log_db_db: ragnarok log_codepage: log_login_db: loginlog udah juga import trunk/sql-files/logs.sql bwt tabel2 lognya gan?
  11. Added Skill Damage Adjustment! (cd9a776 / r17485)
  12. First, what is ur latest restricted zone before that 64? (rA releases until 7) Try use <mapname> mapflag restricted 8the on ur item_noequip.txt <item_id>,4096 Why, for simple explanation: restricted 1 : 32 restricted 2 : 64 restricted 3 : 128 restricted 4 : 256 restricted 5 : 512 restricted 6 : 1024 restricted 7 : 2048 restricted 8 : 4096 You will know the pattern. I'm not sure more than 8 will work.
  13. Cool I hope for better Sept for rA
  14. If it's pre-renewal, you just need 15 instead 63.
  15. 0xFFFFFFFF,2 to 0xFFFFFFFF,63 Please read this post related class update
  16. I got this problem when tried to clone the "forked" rAthena. Solved with this command git config --global http.postBuffer 524288000 NOTE, if u're using windows, maybe u need to find correct directory with 'git.exe' and use 'git.exe' syntax instead 'git' Git clone return result=18 code=200 on a specific repository
  17. cool. I never use 2013 client, so I'll keep my eyes here.
  18. @Beret, I'm not sure which on is correct (maybe, both are wrong) because the previous mistake is, gave 3rd Classes item to "2" (upper/trans). I said maybe both are wrong, because irowiki database said (if we use this db as reference, it doesn't mention about baby. XD): Laphine Staff: Arch Bishop, Shura, Warlock, and Shura. Prev. revision: "7". They should for Normal+Upper+Baby, but since 3rd Class can uses Upper item, "7" and "15" have not difference. That why I replace all "7" or "15" to "63" Double Bound: Sniper and Ranger. Prev. revision: "2" for every Upper/Third. I changed it to "18" because "2" for all rebirth classes except trans-3rd (now is 2), and since it for upper, trans-3rd should be included (now 16). And yeah, Irowiki said Sniper (rebirth) and Ranger, I picked Trans-third because "that weapon it's for rebirth, if I include normal third and baby third, it's very something." of course, we will check if anything doubt about the item classes with official behavior. If any something mistake, please post on database bug report.
  19. RegEx is Regular Expression. Well you can use Notepad++ to do. Open your item_db.txt file CTRL+H (Replace) Check the "Regular expression" on Search Mode Then insert the "Find what" and "Replace with" Then press "Replace All"
  20. Related on this commit 5f12351, this problem will be shown if you're using RENEWAL, for PRE-RENEWAL maybe you won't meet this problem The problem after that update is the item class check (previously called 'upper'), before this update it only provided 1:Normal 2:Trans/Upper or Third 4:Baby 8:Third '8' there is mostly never be used because '2' is handling for 3rd classes too, so item with '11' can be used by any 3rd classes. And after that update, item with '11' can't be used by 3rd classes, because: 1: Normal: It's not those classification below 2: Trans/Upper: hmm rebirth/reborn jobs exclude third classes, we know third classes has transcedent classes 4: Baby: Except third baby classes 8: Third: Except transcedent third classes 16: Trans. Third 32:Third Baby How to solve this? First, if you're using MySQL database for renewal item, we highly recommend you to update your db using sql-files/item_db_re.sql How if I have custom items on my TXT item_db? And if your server contains many custom items, running under RENEWAL, you have to update your item_db with this changes. If you worry 'how to change them all?', maybe you can follow my way to change them all by uisng RegEx. An example, if your 'old' item_db is using '2' for trans/upper classes, after this update that value should be '18', why? 2|16 that allows 2nd-trans and 3rd-trans classes to use this item. And the RegEx are: Find this: (0x[a-zA-Z0-9]*),2,([0-9]+) Replace with: \1,18,\2 And here all the details of RegEx values that you need, open the spoiler: NOTE: - Please use Notepad++ to use this Find&Replace with RegEx. Because other program maybe has different symbol for pattern grouping. Such as, Ms Visual Studio is using { and } for grouping. - The RegEx that I provide maybe not the best, but it's usable. How if I have custom items on my MySQL item_db? You just need execute/import this lines. If your customs are on `item_db2` table just change the table name from item_db_re to item_db2 UPDATE `item_db_re` SET `equip_upper` = 18 WHERE `equip_upper` = 2; UPDATE `item_db_re` SET `equip_upper` = 36 WHERE `equip_upper` = 4; UPDATE `item_db_re` SET `equip_upper` = 56 WHERE `equip_upper` = 8; UPDATE `item_db_re` SET `equip_upper` = 19 WHERE `equip_upper` = 3; UPDATE `item_db_re` SET `equip_upper` = 37 WHERE `equip_upper` = 5; UPDATE `item_db_re` SET `equip_upper` = 57 WHERE `equip_upper` = 9; UPDATE `item_db_re` SET `equip_upper` = 63 WHERE `equip_upper` = 7; UPDATE `item_db_re` SET `equip_upper` = 59 WHERE `equip_upper` = 11; UPDATE `item_db_re` SET `equip_upper` = 63 WHERE `equip_upper` = 15; UPDATE `item_db_re` SET `equip_upper` = 54 WHERE `equip_upper` = 6; UPDATE `item_db_re` SET `equip_upper` = 58 WHERE `equip_upper` = 10; UPDATE `item_db_re` SET `equip_upper` = 62 WHERE `equip_upper` = 14; If you want to change manually, here they are:
×
×
  • Create New...