Jump to content

arisgamers

Members
  • Content Count

    173
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by arisgamers


  1. I am looking for reset npc from npccustomresetnpc.txt

     

    it is said the npc is in prontera,150,193,4

     

    if in coordinate location 150 = x, and 193 = y

    what is the meaning of 4?

    and where is the npc exactly? (in prontera city or prontera castle)


  2. open this file srccommonmmo.h

    find these line :

     

    #ifndef PACKETVER
     #define PACKETVER 20140205
    #endif // PACKETVER

     

    make sure your packetver date (in bold) is same with your client (format yyyymmdd).

    and if you make any change, don't forget to recompile it.


  3. another translation mistake :

    Eden Quest for lvl 56 - 70 : Magic Wand Quest

     

    written :

    need to collect Dokebi Horn 30, and Trunk 30

     

    it should be :

    need to collect Dokebi Horn 30, and Piece Of Bamboo 30


  4. About ayothaya dungeon quest entrance :

     

    1. When I take the quest from Disut (NPC), I got quest to meet Boonthom (NPC), but the quest menu show me "Holy Threads" quest

      (the one that collecting item to make Holy Threads item).

    2. When I speak to Boonthom, the quest changed to "Holy Threads" quest, but the menu show me "The Stone Slate Message" quest.

     

    Quest menu seems show me message 1 step faster than my quest progress. Anyway to fix these ?


  5. 1 more thing that you need to pay attention in confinter-server.conf

     

    // Global SQL settings
    // overriden by local settings when the hostname is defined there
    // (currently only the login-server reads/obeys these settings)
    sql.db_hostname: 127.0.0.1
    sql.db_port: 3306
    sql.db_username: root {mysql connection name, not s1}
    sql.db_password: ragnarok {mysql connection pasword, not p1}
    sql.db_database: hercules
    sql.codepage:


    // MySQL Character SQL server
    char_server_ip: 127.0.0.1
    char_server_port: 3306
    char_server_id: root {mysql connection name, not s1}
    char_server_pw: ragnarok {mysql connection pasword, not p1}
    char_server_db: hercules


    // MySQL Map SQL Server
    map_server_ip: 127.0.0.1
    map_server_port: 3306
    map_server_id: root {mysql connection name, not s1}
    map_server_pw: ragnarok {mysql connection pasword, not p1}
    map_server_db: hercules


    // MySQL Log SQL Database
    log_db_ip: 127.0.0.1
    log_db_port: 3306
    log_db_id: root {mysql connection name, not s1}
    log_db_pw: ragnarok {mysql connection pasword, not p1}
    log_db_db: log
    log_codepage:
    log_login_db: loginlog

     


  6. that client thing is to answer Linne

    Update for gaurav :
    i compared your solution10 with mine (which downloaded via git),
    my solution10 consist of 6 project while yours only 5 (you don't have plugin-HPMHooking).

    I thought this might caused by any of these 2 possibilities :
    1. the SVN version is older than git version, or
    2. your emulator is not downloaded properly.

    that's why i recommend you to try with git.

    2 question :
    1. why you didn't compile all project ?
    2. have you checked the confinter-server.conf (look at patskie guide & make sure your setting correct)?


  7. i found a small glitch with eden quest :

     

    Eden Quest for lvl 86 - 90 (forget the starting lvl) and lvl 91 - 99 are not removed from quest menu.

    (Quest are done and exp reward already taken, my char already rebirth too, but quest still in quest menu)

    i noticed some lower lvl Eden Quest got removed from quest menu after those quest complete and reward taken.

     

    is this intended ?

     

    Update :

    Eden Quest for lvl 71 - 85, many of them do not show in quest menu.


  8. mvp / boss drop rate are not same.

    example :
    dark lord default equipment drop rate :
    -. evil bone wand 8%
    -. bone helm 5.51%
    -. grimtooth 3%
    -. mage coat 3%
    -. ancient cape 1%
    -. kronos 1%
    -. bone helm[1] 0.11%

    if you set
    item_rate_equip_boss: 1000

    then dark lord equipment drop rate will be come :
    -. evil bone wand 80%
    -. bone helm 55.1%
    -. grimtooth 30%
    -. mage coat 30%
    -. ancient cape 10%
    -. kronos 10%
    -. bone helm[1] 1.1%

    evil bone wand become 80% but not with other equipment :unsure:
    and that just dark lord, other mvp may have different drop rate and all will be come : 10 * default

    card is easier because every mobs have same card drop rate 0.01%, so:

    item_rate_card: 100000
    item_rate_card_boss: 10000

    that will make all normal monster card drop rate 10% and boss card drop rate 1%


  9. you can edit in [hercules directory]confbattledrops.conf
    find these lines :

    // Item drop rates (Note 2)

    // The rate the common items are dropped (Items that are in the ETC tab, besides card)
    item_rate_common: 100
    item_rate_common_boss: 100
    item_drop_common_min: 1
    item_drop_common_max: 10000

    // The rate healing items are dropped (items that restore HP or SP)
    item_rate_heal: 100
    item_rate_heal_boss: 100
    item_drop_heal_min: 1
    item_drop_heal_max: 10000

    // The rate at which usable items (in the item tab) other then healing items are dropped.
    item_rate_use: 100
    item_rate_use_boss: 100
    item_drop_use_min: 1
    item_drop_use_max: 10000

    // The rate at which equipment is dropped.
    item_rate_equip: 100
    item_rate_equip_boss: 100
    item_drop_equip_min: 1
    item_drop_equip_max: 10000

    // The rate at which cards are dropped
    item_rate_card: 100
    item_rate_card_boss: 100
    item_drop_card_min: 1
    item_drop_card_max: 10000

    // The rate adjustment for the MVP items that the MVP gets directly in their inventory
    item_rate_mvp: 100
    item_drop_mvp_min: 1
    item_drop_mvp_max: 10000

    // The rate adjustment for card-granted item drops.
    item_rate_adddrop: 100
    item_drop_add_min: 1
    item_drop_add_max: 10000

    // Rate adjustment for Treasure Box drops (these override all other modifiers)
    item_rate_treasure: 100
    item_drop_treasure_min: 1
    item_drop_treasure_max: 10000



    and edit the item_rate

    note :
    item_rate: 100 means 100% from default

    example :
    boss card : by default is 0.01% chance, to make it 1% you should set item_rate_card_boss: 10000

×
×
  • Create New...

Important Information

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