Jump to content

Deleted User

Members
  • Posts

    235
  • Joined

  • Days Won

    6

Everything posted by Deleted User

  1. (1.) Find: int skillid, lv; Replaced: int skill_id, lv; (2.) Find skillid=( script_isstringtype(st,2) ? skill->name2id(script_getstr(st,2)) : script_getnum(st,2) ); Replaced: skill_id = ( script_isstring(st,2) ? skill_name2id(script_getstr(st,2)) : script_getnum(st,2) ); (3.) Find: if (pc_checkskill(sd,RG_PLAGIARISM)) { sd->cloneskill_idx = skillid; sd->status.skill[sd->cloneskill_idx].id = skillid; sd->status.skill[sd->cloneskill_idx].lv = lv; sd->status.skill[sd->cloneskill_idx].flag = 13;//cloneskill flag pc_setglobalreg(sd, add_str(SKILL_VAR_PLAGIARISM), skillid); pc_setglobalreg(sd, add_str(SKILL_VAR_PLAGIARISM_LV), lv); clif_skillinfoblock(sd); } return 0; } Replaced: if (pc_checkskill(sd,RG_PLAGIARISM)) { sd->cloneskill_idx = skill_id; sd->status.skill[sd->cloneskill_idx].id = skill_id; sd->status.skill[sd->cloneskill_idx].lv = lv; sd->status.skill[sd->cloneskill_idx].flag = 13;//cloneskill flag pc_setglobalreg(sd, add_str(SKILL_VAR_PLAGIARISM), skill_id); pc_setglobalreg(sd, add_str(SKILL_VAR_PLAGIARISM_LV), lv); clif_skillinfoblock(sd); } return 0; } Then recompile your Emulator. PS: The source is written in Hercules, so it requires a little edits.
  2. If you know how to do HEXING then you solved this issue, its hard since the client is Hard-Coded.
  3. announce is a global server wide, while mapannounce is just only the specific map itself. It's the behavior of the client that it will show to your Chat Filter.
  4. This is really sad, that server is just NEW for like several of months. I'm sorry to hear it.
  5. I don't check Hercules, i'm not Hercules users so i'm not interested. besides there's no reason to used this at the moment since Dev is currently working even 2016 not yet fully supported and you just jumped to 2017 seriously? I don't need to rewording my comments i'm just telling honestly because people keep on asking support for 2017 even though 2016 still a lot of bugs and issues regarding 2016. so it does not make sense.
  6. I wanted to clarify you, that Hercules DON'T support 2016 and 2017 Client. (they are stucked in 2015-05-15a) no improvement at all. Even rAthena don't support 2017 client yet which is isn't stable at the moment. I'd suggest stop using this Client.
  7. Maybe you can support for cards? since i used 4 slotted, maybe tweak a little on source code? This is really a good idea! =) i'm willing to buy it.
  8. Great job! unique idea =) i have only few question, how about those cards? since its rental It's easy to bypass this. or its really recommended for Equipment Items only?
  9. I kinda confuse about your questions? "PAYPAL" requires Debit/Credit Card.
  10. Hey,
    Would you mind to share the links of your XRAG Cheat? i wanna see how it works.

  11. At least you know my side I was concern about the Paid Files, before it was fucked up and you've been inactive on that time even Brian disappears. I'm just concern about the who put Paid Files on the Download Section. I paid a lot of scripts from Download Section which is no longer available and i lost them all. i don't wanna everyone will be messed up again. Im just only concern members as A CLIENT here. i hope you undeerstand my opinion and my side. Thank you! looking forward.
  12. So, no wonder why? most paid files got a lot of downloads because they're using superior Member as Moderator. I would suggest don't let 'Moderators' able to download the file. they must PAID it before they can download the certain files.
  13. src\map\map.h Look for: Increase what values you liked. Don't forget to recompile your emulator.
  14. I'm kinda agree with this issue. because i checked the formula of the PA_SACRIFICE: the skill depends on the VIT/HP. i guess it requires a source modification to apply those cards. I checked my old rAthena. yes the cards are counted and give more damage to SACRFICE. 1. With Weapon + Cards 2. Without Weapon I can tell the differences between both with or without weapons and cards.
  15. I think you mention something i only know 1 SERVER has fully functional RODEX which is NovaRO. most of their contents is close to kRO now and up to date contents.
  16. @Tokei just wondering is this usually normal? it appears on my console everytime i make clone maps. I must say this is really unique! no need to touched the client-side anymore! Good for EVENT!
  17. @Tokei Thank you! for awesome contribution this is really neat.
  18. @Cydh by chance to update your patched?

     

  19. .patch and .diff are just the same. Usually i add the .diff/patch manually since every code you add you can check it easily. Diff files A diff file is a file to make: implementation of a modification easier check what and where you modified things share your modifications with the rest of the world it is also an easy way for people that give support on forums to check themselves what is wrong to the modifications you made Creating .diff files using the tortoise menu right click on the folder goto TortoiseSVN menu click create patch save as .diff file Manually Creating .diff files (knowing the mechanics and repairing .diffs if needed) create a new txt file rename the .txt extention to .diff start with pointing out the index (path where the diff files will patch) example: Index: src add a ========================================= line to indicate the next file example: ========================================= add the patch of the file where content will be removed (---) and add the revision example: --- src/common/mmo.c (revision 12300 Stable) add the path of the file where content will be added (+++) and add (working copy) example: +++ src/common/mmo.c (working copy) add the location of the lines that need to be modified in this way: @@ -100: start reading original lines at line 100 ,5: read 5 original lines +100: start reading new lines at line 100 ,7: read 7 new lines @@ example: @@ -100,5 +100,7 @@ add a and write a line that is from the original text (this line will be unmodified) and all others starting with a space A SPACE IS NEEDED, IF YOU COPY A DIFF FROM A FORUM APPLY THE SPACES YOURSELF example: this line will be unmodified add a "-" and write the line that must be modified example: -this line will be removed from the original code add a "+" and write the line that need to be placed to replace or added to the original code example: +this line will be added in the new code full example on a @@ -x,7 +x,8 @@: line1: this line will be unmodified line2: this line will be unmodified line3:-this line will be deleted line4:+this line will replace line 3 line5:+this line will add a line of code line6: this line will be unmodified, but will move down one line line7: line8: this line will be unmodified, move down one line (same as the line above since an counts as a line) NOTICE = THE ON LINE 7 MUST START WITH A as well Using .diff/.patch files to patch your server Windows: go place the folder in the index folder richt click the *.diff file and go to TortoiseSVN menu click patch Linux: cd /path/to/your/server/folder patch -p0 < /path/to/patch/file/filename.extension
  20. @Fii or A.K.A Blueheel. That script though does not neccessary to put any credits on that since you can just find that script somewhere in uPaste and pastebin.
×
×
  • Create New...