Jump to content

Black Box

Members
  • Content Count

    42
  • Joined

  • Last visited


Reputation Activity

  1. Upvote
    Black Box reacted to Dastgir in extended vending system plugin   
    Update 2:
    Added Extended Vending System
    https://github.com/dastgir/HPM-plugins
     
    (Please Take a Look and +1 at my Plugin Collection Topic: http://herc.ws/board/topic/8202-plugin-collections/page-1)
  2. Upvote
    Black Box reacted to Tio Akima in all mounts working?   
    thanks
  3. Upvote
    Black Box got a reaction from Tio Akima in all mounts working?   
    Test with the item: 12622
  4. Upvote
    Black Box reacted to Dastgir in Error compiling plugins   
    I guess you were the one who appeared on IRC...
     
     
    http://pastebin.com/t6aNP0iQ
     
    Use ./configure first, since there were updates to it, so that it can pick up correct location.
  5. Upvote
    Black Box got a reaction from Triedge in how to adjust the browser resolution of the hexed?   
    how to adjust the browser resolution? because when i click the link in-game the browser need to be resized with mouse resizer and maximize, is there any way to maximize a default resolution for the ragnarok browser?
  6. Upvote
    Black Box reacted to TecnoCronus in Source variables   
    As far as I know, these are commonly struct pointers used in source to point to structs like: map_session_data, etc..
     
    you first need to learn the basis of C language, I suggest you this site:
     
    http://www.programiz.com/c-programming
     
    then you're able to understanding the source code of Hercules, you can find some info about it in her's wiki:
     
    http://herc.ws/wiki/Main_Page
     
    and I did a long time ago a little doc with a few explanations about eAthena's Source Code, it's outdated but can be helpful for learning:
     
    https://xp-dev.com/svn/tecnocronus_scripts/docs/EN/source_documentation.txt
     
    the best way to learn hercule's or eAthena source code is to studying C language a lot and looking source snippets, see what they can do a good way to learn too.
  7. Upvote
    Black Box reacted to Angelmelody in Doubt on labels as: OnPCKillEvent   
    example:
    https://github.com/MrKeiKun/Hercules/commit/a7280f7e1e1f3f78288d60df0fd7b77748c63fc7
  8. Upvote
    Black Box reacted to Ragnar Lothbrok in [Compile Error] Latest update in Hercules 05-31-15   
    it should be like this:
     
  9. Upvote
    Black Box reacted to OmarAcero in How increase the amount of skills of the homunculus?   
    @Neo is already working on it  :  Here
  10. Upvote
    Black Box reacted to OmarAcero in Custom skill does not work.   
    *** You review these Steps***
     
    1.- SKILL  RANGES: 
    Player Skills Slots available: 5020 skills (mmo.h::MAX_SKILL) From: 0 To: 5019 (max. to 5019)



    Note: mmo.h::MAX_SKILL is 5020, if using ID more than 5019, ID will be invalid for player's skill, or can use the values more than 5019 but need to add the src/common/mmo.h #define MAX_SKILL value. (the current MAX_SKILL is kind of waste space! Even in Renewal, skill is less than 200)
     
    2.- EDIT SRC.
    yourserver/src/map/skill.h =          YOU_SKILL = 5020,
    yourserver/src/map/skill.c =        Case YOU_SKILL;
    yourserver/src/map/battle.c   = Case YOU_SKILL: skillratio += 10*(skill_lv-1); break;
     
    3.- LUA FILES.
    a) skillinfolist.lub
    [sKID.YOU_SKILL] = { "YOU_SKILL"; SkillName = "Custom skill", MaxLv = 10, SpAmount = {8, 8, 8, 8, 8, 15, 15, 15, 15, 15}, bSeperateLv = true, AttackRange = {1, 1, 1, 1, 1, 1, 1, 1, 1, 1} },   b )  skillid.lub
     YOU_SKILL = 5020,
     
    c) skilldescript.lub
      [sKID.YOU_SKILL] = {     "Custom skill", "Max Level: 10", "Skill Form: ^FF0000Offensive^000000", "Target: ^777777Enemy^000000", "Description: ^777777Hit an enemy with crushing force.", "If the Fatal Blow skill is learned, Bash will have", "an added ^702180Stun^777777 effect at level 6 and higher.^000000", "[Lv 1]: ^777777130% ATK^000000", "[Lv 2]: ^777777160% ATK^000000", "[Lv 3]: ^777777190% ATK^000000", "[Lv 4]: ^777777220% ATK^000000", "[Lv 5]: ^777777250% ATK^000000", "[Lv 6]: ^777777280% ATK^000000", "[Lv 7]: ^777777310% ATK^000000", "[Lv 8]: ^777777340% ATK^000000", "[Lv 9]: ^777777370% ATK^000000", "[Lv 10]: ^777777400% ATK^000000"   },  
    4.- TEXTURE
     a) data/texture/À¯ÀúÀÎÅÍÆäÀ̽º/item/YOU_SKILL.bmp
  11. Upvote
    Black Box reacted to ossi0110 in Skill ID Processing Overhaul   
    Adding Custom Skills is limited from the Client Side , since the Values are hardcoded
     
    Skill ID  900 - 1000 Are Save to use for Custom Skills
  12. Upvote
    Black Box got a reaction from luis.seifert in Crash in Custom Weapon   
    thank so much, very nice, it's working. :)
  13. Upvote
    Black Box reacted to luis.seifert in Crash in Custom Weapon   
    item_db2.conf :   Slots: 1 iteminfo.lub : slotCount = 2   change both to 2.         [Weapon_IDs.WEAPONTYPE_longsword] = Weapon_IDs.WPCLASS_WEAPONTYPE_SWORD change to   [Weapon_IDs.WEAPONTYPE_longsword] = Weapon_IDs.WEAPONTYPE_SWORD
  14. Upvote
    Black Box reacted to Kuya Jeo in Crash in Custom Weapon   
    i will test it later and guide you how to fix it 
  15. Upvote
    Black Box reacted to Ind in 2014-10-22, Roulette and per-char gender!   
    2014-10-22 Client, Roulette and per-char gender!


    Made Possible Thanks to Yommy
    We're only able to provide you with this patch thanks to Yommy, Thank you very much!  
    Roulette
    During test period it will be disabled by default, to enable you must edit conf/battle/feature.conf // Roulette (Note 1)// Requires: 2014-10-22bRagexe or later// Off by default while test version is out; enable at your own risk -- the mean dev.feature.roulette: off Roulette rewards can be defined in db/roulette_db.conf As we understand the coins are points that you obtain by consuming an item, while such an item is not yet available (will be in a upcoming commit), you can set these values with @set command, they're TmpRouletteBronze,TmpRouletteSilver and TmpRouletteGold -- e.g. @set TmpRouletteBronze 5 Requires PACKETVER 20141022 or higher. Where you can get such client? Here (Again, Thanks to Yommy!) In action: http://herc.ws/board/damocles/ind/screenHercules136.jpg
      Per-Character Gender
    Sex is now a character table field, which can be defined as 'M', 'F' or 'U'. 'U' being the default value, meaning undefined, which means the accounts gender takes precedence (upcoming) a script command to change a characters gender Requires PACKETVER 20141022 or higher. Where you can get such client? Here (Again, Thanks to Yommy!) In action: http://herc.ws/board/damocles/ind/screenHercules137.jpg  
    Special Thanks to
    Yommy ..Yommy ...The all-awesome Yommy~! Thank you again! Ziu for extra roulette information (some yet to be applied) Haruna  
    Link~u!
    Commit 2014-10-22 client
  16. Upvote
    Black Box reacted to Yommy in 2014-10-22 Client Download   
    Hello Hercules, its been a while
     
    here i present a new client, which requires a fully updated kRO and Hercules.
    https://mega.co.nz/#!kYRAFRqJ!GF4vLIcOKQHsIQkCgZ2oGbXiJaxRsmn1ldohBgOXi3I
     
    its already patched with some options, which i needed for testing..
    ..Disable Ahnlab
    ..Disable ragexe filename check
    ..Read msgstringtable
    ..Read datafolder first
     
    NEMO Patcher should work for most things, but there may be some patches that are broken.
     
    <3
  17. Upvote
    Black Box reacted to evilpuncker in how to read a hexed url?   
    I don't know, but I got those info at a text file in my PC that may be helpful:
     
    mes "go to <NAVI>[Hat Maker]<INFO>izlude,131,148,</INFO></NAVI> to make hats"; the [Hat Maker] will be clickable in the client and make a navigation to the npc. also it works with the browser too mes "You can <URL>Google<INFO>http://www.google.com/</INFO></URL> anything";clicking Google will open the browsermes "<ITEMLINK>HIIII Im valk shield<INFO>2115</INFO></ITEMLINK>";
  18. Upvote
    Black Box reacted to evilpuncker in how to read a hexed url?   
    I didn't quite understood your english (are u really from USA? xD), but I guess you are searching for the following:
     
    mes "You can <URL>Google<INFO>http://www.google.com/</INFO></URL> anything";
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.