Jump to content

Cydh

Developer
  • Posts

    2,285
  • Joined

  • Last visited

  • Days Won

    72

Community Answers

  1. Cydh's post in help Disable VIP Message was marked as the answer   
    conf/battle/player.conf
    change this to no
    // Will display rate information (EXP, Drop, and Death penalty message)? (Note 1) vip_disp_rate: yes
  2. Cydh's post in Itemdb_read_itemratio was marked as the answer   
    ehh, seems there's typo on that error message. should be 'mob_readdb_itemratio'
    well, and then it's because mob.c reads the files with this sequence.
    read db/re/mob_db.txt read db/mob_item_ratio.txt read db/import/mob_db.txt read db/import/mob_item_ratio.txt when u put item in db/mob_item_ratio.txt for custom monsters that written in db/import/mob_db.txt, of course map-server doesn't recognize them.
    Try put ur custom mobs & custom mob_item_ratio on import files.
  3. Cydh's post in updating server using git was marked as the answer   
    that's mean, ur file need to be staged
    git add --force <file>
  4. Cydh's post in Itens dont stack on ALT+E was marked as the answer   
    thanks for not reading https://rathena.org/board/topic/99743-item-guid/
  5. Cydh's post in Pull or Negative Knockback was marked as the answer   
    should be like this maybe
    negative_blewcount.diff
  6. Cydh's post in Requesting Creating SQL TABLE was marked as the answer   
    maybe?


    CREATE TABLE `reward_table` (
    `id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
    `char_id` INT(11) UNSIGNED NOT NULL,
    `nameid` SMALLINT(5) UNSIGNED NOT NULL,
    `amount` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '1',
    `refine` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0',
    `identify` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0',
    `attribute` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0',
    `card0` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
    `card1` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
    `card2` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
    `card3` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
    PRIMARY KEY (`id`)
    ) Engine=InnoDB AUTO_INCREMENT=1;

  7. Cydh's post in Item Bonus Bug r17704 was marked as the answer   
    what a sad, that 17704 has huge bugs related bonuses like that.
    as Winz mention, update it. xD
     
    and, by accident the svn is sync'd with d9a9a02, it's r17707 now
    http://svn.rathena.org/svn/rathena/trunk/
    https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/
  8. Cydh's post in bonus2 bAddRace,RC_DemiHuman not WORKING please check was marked as the answer   
    emu?
    if u're using rAthena (latest rev or after 17704 or after this changes) RC_DemiHuman working only for Demi-Human. (humanoid monsters), and for player is using RC_Player
  9. Cydh's post in R> back option to enable/disable showing shield icons to players under devotion was marked as the answer   
    if you want ti faster, and don't mind to edit it later, u can edit it hardcoded
    here src/map/status.c#L10257

    if(!(flag&SCSTART_NOICON) && !(flag&SCSTART_LOADED && StatusDisplayType[type]))change to
    if(!(flag&SCSTART_LOADED && StatusDisplayType[type]))currently SCSTART_NOICON flag is being used by those SC from Devotion effects, nothing else, so remove the check won't breaks other behaviors
  10. Cydh's post in Help me to find issue what make my dispell work on normal maps against players? was marked as the answer   
    if( sd && dstsd && !map_flag_vs(sd->bl.m) && sd->status.guild_id == dstsd->status.guild_id ) {                 clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0);                 break;             } Fail If a player try to dispel a guild mates at non-PVP map
    Always success if
    Caster or target is not player Map is PVP map Both are in different guild <= this makes you can dispel everyone everywhere but at PVP map and not guild mates (wow, sounds ridiculous)
  11. Cydh's post in FIXED please close topic was marked as the answer   
    if u're using default, I see a trailing white space
    ipban_db_pw: ragnarok  just try retype every config that u need on conf/import, see conf/import-tmpl for the files
  12. Cydh's post in rAthena Guild Conf Request was marked as the answer   
    try Guild Configs & Script Commands
  13. Cydh's post in how to prevent? was marked as the answer   
    add this maybe at char.c::char_check_char_name
    // check for reserved names if( strcmpi(name, charserv_config.wisp_server_name) == 0 ) return -1; // nick reserved for internal server messages + // Failed if char name has 'GM' (case-sensitive) + if (strstr(name, "GM")) + return -1; // Check Authorised letters/symbols in the name of the character if( charserv_config.char_config.char_name_option == 1 )
  14. Cydh's post in Disable Guild Create was marked as the answer   
    add this

    if( 1 ) { clif_guild_created(sd,1); return 0; }at src/map/guild.c#L349
  15. Cydh's post in Dark Crow / Cross Impact was marked as the answer   
    Dark crow wound effect src/map/status.c#L9751
    Dark crow damage ratio src/map/battle.c#L3424
  16. Cydh's post in How to modify @autotrade duration? was marked as the answer   
    ok, just for archiving, conf/battle/misc.conf#L102
  17. Cydh's post in healing items was marked as the answer   
    like this?
    607,Yggdrasilberry,Yggdrasil Berry,0,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ if (countitem(607) <= 250) { percentheal 100,100; } },{},{}
  18. Cydh's post in how to change storage max capacity was marked as the answer   
    it,s on src/common/mmo.h
    MAX_STORAGE
  19. Cydh's post in help updating rathena using git was marked as the answer   
    git stash && git pull && git stash pop
  20. Cydh's post in SKILLALL was marked as the answer   
    it's group's permission. look at doc/permissions
  21. Cydh's post in [Warning]: pc_bonus2: unknown type 0 1 30! was marked as the answer   
    there's item script with invalid item bonus
  22. Cydh's post in about clif_viewpoint. was marked as the answer   
    you can look the sample that I use on Crimson Marker (SC_C_MARKER)
  23. Cydh's post in Item_cash_db was marked as the answer   
    it's a bugreport:9003
  24. Cydh's post in Dead Branch and Bloody Branch Rate? was marked as the answer   
    It's not rate, but probability.
    example
    <id>,Poring,20 <id>,Poporing,10 <id>,Drops,15 <id>,Marin,10 <id>,Angeling,1 It means,
    Poring has chance 20/56. Poporing has chance 10/56 Drops has chance 15/56 Marin has chance 10/56 Angeling has chane 1/56 If my reply answers your question, please mark as solved and gimme five.
  25. Cydh's post in Issue with Passive Skill was marked as the answer   
    1. skill id to 3040
    2. change the skill db to
    3040,0,0,0,0,0,0,1,0,no,0,0x1,0,none,0,0x0,ALL_FISHING,Fishing 3. on script, use flag 4, it will ignore skill tree.
    skill "ALL_FISHING",1,4;
×
×
  • Create New...

Important Information

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