Jump to content

Cydh

Members
  • Content Count

    37
  • Joined

  • Last visited

  • Days Won

    2

Reputation Activity

  1. Upvote
    Cydh got a reaction from Nebraskka in Ragnarok Episode Timeline   
    and if from idRO, some info that I got:
    [*]Episode 2: they also added "Cute Pet" system at that episode. [*]Episode 3: they also added status change: Poison, Frozen, Sleep, Blind, Stun, Hiding [*]Episode 4: they also added Turtle Island, Monster Skill, also Guild Skill [*]Epsiode 5: they also added Class 2-2, added/modified some effects (status changes, skill animation, warp animation), Novice can't use weapon level 3 or above, added NPC Refiner [*]Episode 6: added some emotions?   [*]Episode 7: - [*]Episode 8.1.1 (idRO called it 8): Divorce added! [*]Episode 8.1.2 (idRO called it 8.1): New Payon, Novice Training Ground, NPC Red Potion Trader, Hair Stylist at Alberta (Veronica, alberta_in 55 142), Kafra storage from 100 to 300.  [*]Episode 8.2: also added Battle Arena, Inn System, Buff Save System (idRO added this episode with name "Asian Journey", Ayothaya, Jawaii, and Louyang are added here)  [*]Episode 9: added Adoption system [*](idRO) Episode 9.1: "Guild Skill Reloaded": added new guild skills, guild skill tree, party/organize system. [*](idRO) Episode 9.2: "Godly Item"  [*](idRO) Episode 9.3: "Love for You", (what an epic name is it. >_<) Wedding skills are added here  [*]Episode 10.1 (idRO is episode 10): also added Yuno area (fields?), Geffenia Dungeon, Aldebaran Turbo Track  [*]Episode 10.2: Lighthalzen mean Homunculus, Lighthalzen Dungeon (Bio Lab), also Juperos Dungeon [*]Episode 10.3: Taekwon Boy, Cooking, Thanatos Tower, Abyss Lake and Abyss Lake Dungeon  [*]Episode 10.4: Gunslinger, Hugel, Odin Shrine, Kiel Hyre, Mini Games (Bingo!), Moved Hunter guild from Payon to Hugel, Blacksmith guild from Geffen to Einbroch, Mastela Fruit is being sold by NPC at Hugel @8,500Z, Added Airplane route to Hugel.  [*](idRO) Episode 10.5: Ninja, Monster Race, Marvelous Medal Hugel (Hugel mini games reward?), Marvelous Medal Einbroch (Einbroch mini games reward?) [*]Episode 11.1 (idRO episode 11): also added Ice Dungeon, Equipment sets (Angelic, Morpheus, Morrigane, Goibne, Odins, Valkyrie, etc), Slot system,  [*]Episode 11.2: also added Thor Volcano, Novice Castle, and hmm BoE (Battle of Emperium)? Reading System and New MVP Skills   [*] Episode 11.3: beside Nameless Island, also added Monastery Abbey, another emoticon, GvG room.  [*]Episode 12: - [*]Episode 13.1: - [*]Episode 13.2: - [*]Episode 13.3: - [*]Afterthat, Lyto didn't tell the episode anymore, just the title. /swt

  2. Upvote
    Cydh got a reaction from AnnieRuru in @item item_deny   
    just a little improvement if u want (I ever made this for my own server)
    instead of loading item each command being used, always accessing MySQL, just load it once and reloaded by @reloaditemdb. use item flag to mark it as "this item cannot be @item/@refine/@etc etc by group level/id below `this`"
     
     
    EDIT: attaching file
    item_restriction.diff
  3. Upvote
    Cydh got a reaction from AnnieRuru in Maintenance mode   
    for rAthena, u can do simply trick
    [*]just do normal announcement "/b I gonna do maintenance bla bla bla"
    [*]"@kickall"
    [*]with a little modification on char & login server (see my PR on rA "server:reloadconf"
    [*]edit the configs that have mean to "only this group level above can login"
    [*]on your char & login server console, (make sure console:yes for both servers) just go type "server:reloadconf"

    ehh, the proper sort is 3-1-4-5-2.
     
    @Annie
    instead of use 0 here, u should use INVALID_TIMER (and other lines)
    +       if ( chrif->maintenance_countid > 0 ) {+               timer->delete( chrif->maintenance_countid, chrif->maintenance_countdown );+               chrif->maintenance_countid = 0; +       }
  4. Upvote
    Cydh got a reaction from Mumbles in Extending item_db.conf   
    First, please don't feel strange if I make new post as suggestion here. Thank you.
     
    We know that on of many differences between Hercules and other emu is on item_db.conf. I feel 'the new' format file & item_db structure can provides some item_db values that currently are separated, like item_buyingstore.txt, item_delay.txt, item_trade.txt, item_nouse.txt, item_stack.txt, and item_avail.txt.
     
    I have suggestion to move those separated file to item_db.conf format:
    Buyingstore: Yes //item_buyingstore.txt Delay: <duration> //item_delay.txt Trade: <flag>,<override> //item_trade.txt Nouse: <flag>,<override> //item_nouse.txt Stack: <amount>,<flag> //or sperated values instead of use a flag, <inventory>,<cart>,<storage>,<guild storage> //item_stack.txt Sprite: <item_id> //item_avail.txt

    When those files are merged, then, the sql table for item_db can stores those values too.
    And maybe, later some db files can be merge to be one file like mob_db, skill, item creation, etc.
     
    (actually I'm doing something on 'other' emu related SQL - TXT databases then found that Herc's item_db.conf the only one can merges some separated item dbs)
  5. Upvote
    Cydh got a reaction from evilpuncker in Extending item_db.conf   
    First, please don't feel strange if I make new post as suggestion here. Thank you.
     
    We know that on of many differences between Hercules and other emu is on item_db.conf. I feel 'the new' format file & item_db structure can provides some item_db values that currently are separated, like item_buyingstore.txt, item_delay.txt, item_trade.txt, item_nouse.txt, item_stack.txt, and item_avail.txt.
     
    I have suggestion to move those separated file to item_db.conf format:
    Buyingstore: Yes //item_buyingstore.txt Delay: <duration> //item_delay.txt Trade: <flag>,<override> //item_trade.txt Nouse: <flag>,<override> //item_nouse.txt Stack: <amount>,<flag> //or sperated values instead of use a flag, <inventory>,<cart>,<storage>,<guild storage> //item_stack.txt Sprite: <item_id> //item_avail.txt

    When those files are merged, then, the sql table for item_db can stores those values too.
    And maybe, later some db files can be merge to be one file like mob_db, skill, item creation, etc.
     
    (actually I'm doing something on 'other' emu related SQL - TXT databases then found that Herc's item_db.conf the only one can merges some separated item dbs)
  6. Upvote
    Cydh got a reaction from Dastgir in Extending item_db.conf   
    First, please don't feel strange if I make new post as suggestion here. Thank you.
     
    We know that on of many differences between Hercules and other emu is on item_db.conf. I feel 'the new' format file & item_db structure can provides some item_db values that currently are separated, like item_buyingstore.txt, item_delay.txt, item_trade.txt, item_nouse.txt, item_stack.txt, and item_avail.txt.
     
    I have suggestion to move those separated file to item_db.conf format:
    Buyingstore: Yes //item_buyingstore.txt Delay: <duration> //item_delay.txt Trade: <flag>,<override> //item_trade.txt Nouse: <flag>,<override> //item_nouse.txt Stack: <amount>,<flag> //or sperated values instead of use a flag, <inventory>,<cart>,<storage>,<guild storage> //item_stack.txt Sprite: <item_id> //item_avail.txt

    When those files are merged, then, the sql table for item_db can stores those values too.
    And maybe, later some db files can be merge to be one file like mob_db, skill, item creation, etc.
     
    (actually I'm doing something on 'other' emu related SQL - TXT databases then found that Herc's item_db.conf the only one can merges some separated item dbs)
  7. Upvote
    Cydh reacted to Neo-Mind in 2013-12-23c kRO Client, Merry Christmas <3   
    Hi guys i have fixed the bugs in Disable HShield and Restore Login Window (i believe).
     
    Anyways the client had some extra baggage inside (looks like Gravity is giving garbage bytes for christmas). I have cleaned it up and uploaded the new
    client => https://www.mediafire.com/?cc4vfdrdd4r15hb
     
    This should fix most of the other patches. Im looking into the remaining.
     
    Please update NEMO to the latest revision (i hope you are using the subversion link).
  8. Upvote
    Cydh reacted to jaBote in Oktoberfest ACT and SPR files   
    File Name: Oktoberfest ACT and SPR files
    File Submitter: jaBote
    File Submitted: 31 Dec 2013
    File Category: Sprites & Palettes
     
    These are the Oktoberfest ACT and SPR files available at fRO server GRF, just for these who don't have them, along with their correct location inside the GRF.
     
    I will provide no support for these since I didn't make them and the fact that I'm not quite good on client-side.
     
    You only have to download one of two files offered here:
     
    File 1 (data.zip) provides the content extracted from the GRF, while file 2 (oktoberfest.zip) contains an oktoberfest.grf file with the same contents, for easy management and merging with existing GRFs. It's not necessary to download both of them.
     
    Click here to download this file
  9. Upvote
    Cydh reacted to Yommy in 2013-12-23c kRO Client, Merry Christmas <3   
    Here is my christmas gift to Hercules. I wish you all have an awesome holiday and nice time with family.
    I have included an xdiff file, but I recommend (when he manage to fix the multiple grf) you to use NEMO Client Patcher made by Neo.

    You need to add the PacketShuffle stuff into src/map/packets.h, just follow the files pattern,
    then edit src/common/mmo.h and change the PACKETVER to 20131223
    do a recompile and the client will be able to connect.


    2013-12-23cRagexe_v2.zip 2.5 MB
    https://mega.co.nz/#!Yt1DQSQC!TWk1AQU8sTXpP_t57Uowpne2-ZYSPhTB2_4WT55PFcY


    2013-12-23cRagexe_v2.xdiff 102 KB
    https://mega.co.nz/#!ogUUFLQJ!CPbCaX29tJLe_JOoeQd1oR24ug8WL83B0z_2T1XTXfQ


    This is a very new client, and it will probably require resources from the latest kRO updates.
    so kRO will need to be fully updated, i recommend to use RO Patcher Lite made by Ai4rei.


    Special Thanks to Rytech and Ind


    See you in 2014.
    Yommy
     
    Ps
    Neo posted.an update here
    http://herc.ws/board/topic/3609-2013-12-23c-kro-client-merry-christmas-3/?p=24183
     
    Thank you
     
    Ps:
    Neo posted some update here 
  10. Upvote
    Cydh reacted to evilpuncker in Introducing Hercules Plugin Manager   
    this may help you:
    http://herc.ws/board/tracker/issue-7803-hpmhookingc/
  11. Upvote
    Cydh got a reaction from AnnieRuru in Ragnarok Episode Timeline   
    and if from idRO, some info that I got:
    [*]Episode 2: they also added "Cute Pet" system at that episode. [*]Episode 3: they also added status change: Poison, Frozen, Sleep, Blind, Stun, Hiding [*]Episode 4: they also added Turtle Island, Monster Skill, also Guild Skill [*]Epsiode 5: they also added Class 2-2, added/modified some effects (status changes, skill animation, warp animation), Novice can't use weapon level 3 or above, added NPC Refiner [*]Episode 6: added some emotions?   [*]Episode 7: - [*]Episode 8.1.1 (idRO called it 8): Divorce added! [*]Episode 8.1.2 (idRO called it 8.1): New Payon, Novice Training Ground, NPC Red Potion Trader, Hair Stylist at Alberta (Veronica, alberta_in 55 142), Kafra storage from 100 to 300.  [*]Episode 8.2: also added Battle Arena, Inn System, Buff Save System (idRO added this episode with name "Asian Journey", Ayothaya, Jawaii, and Louyang are added here)  [*]Episode 9: added Adoption system [*](idRO) Episode 9.1: "Guild Skill Reloaded": added new guild skills, guild skill tree, party/organize system. [*](idRO) Episode 9.2: "Godly Item"  [*](idRO) Episode 9.3: "Love for You", (what an epic name is it. >_<) Wedding skills are added here  [*]Episode 10.1 (idRO is episode 10): also added Yuno area (fields?), Geffenia Dungeon, Aldebaran Turbo Track  [*]Episode 10.2: Lighthalzen mean Homunculus, Lighthalzen Dungeon (Bio Lab), also Juperos Dungeon [*]Episode 10.3: Taekwon Boy, Cooking, Thanatos Tower, Abyss Lake and Abyss Lake Dungeon  [*]Episode 10.4: Gunslinger, Hugel, Odin Shrine, Kiel Hyre, Mini Games (Bingo!), Moved Hunter guild from Payon to Hugel, Blacksmith guild from Geffen to Einbroch, Mastela Fruit is being sold by NPC at Hugel @8,500Z, Added Airplane route to Hugel.  [*](idRO) Episode 10.5: Ninja, Monster Race, Marvelous Medal Hugel (Hugel mini games reward?), Marvelous Medal Einbroch (Einbroch mini games reward?) [*]Episode 11.1 (idRO episode 11): also added Ice Dungeon, Equipment sets (Angelic, Morpheus, Morrigane, Goibne, Odins, Valkyrie, etc), Slot system,  [*]Episode 11.2: also added Thor Volcano, Novice Castle, and hmm BoE (Battle of Emperium)? Reading System and New MVP Skills   [*] Episode 11.3: beside Nameless Island, also added Monastery Abbey, another emoticon, GvG room.  [*]Episode 12: - [*]Episode 13.1: - [*]Episode 13.2: - [*]Episode 13.3: - [*]Afterthat, Lyto didn't tell the episode anymore, just the title. /swt

  12. Upvote
    Cydh got a reaction from pr3p in Client Translation Project   
    msgstringtable.txt, line 2331 should be
     
    %.1f%% (PCRoom %.1f%% + TPLUS %.1f%% + Premium %.1f%% + %s Server %.1f%%)#
  13. Upvote
    Cydh got a reaction from jaBote in Official VIP System   
    The difference between iRO/kRO (and with other official servers) maybe on the features and rates, but they have same behavior.
    Isn't Herc (and other emu that implement it) can make the configs/settings is adjustable by users?
×
×
  • Create New...

Important Information

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