[Question] Monsters

Results 1 to 7 of 7
  1. #1
    Member kikolindo is offline
    MemberRank
    Mar 2020 Join Date
    85Posts

    thumbs up [Question] Monsters

    Some questions about monsters and their drops, I'm fixing some monsters here on my server and I came across Crane Machinery, this monster from normal to giant, doesn't drop items:

    Code:
    DropKind(IK3_SWD, 65, 72);
        DropKind(IK3_AXE, 65, 72);
        DropKind(IK3_CHEERSTICK, 65, 72);
        DropKind(IK3_KNUCKLEHAMMER, 65, 72);
        DropKind(IK3_WAND, 65, 72);
        DropKind(IK3_STAFF, 65, 72);
        DropKind(IK3_HELMET, 65, 72);
        DropKind(IK3_SUIT, 65, 74);
        DropKind(IK3_GAUNTLET, 65, 72);
        DropKind(IK3_BOOTS, 65, 72);
        DropKind(IK3_SHIELD, 65, 72);
        DropKind(IK3_BOW, 65, 72);
        DropKind(IK3_YOYO, 65, 72);

    And the drop is the same as the previous bosses and even so it doesn't drop, the only thing that drops are these weapons that I recently added to the monster:

    Code:
    DropItem(II_WEA_SWO_SUHO, 3000000, 0, 1);
        DropItem(II_WEA_SWT_SUHO, 3500000, 0, 1);
        DropItem(II_WEA_AXE_SUHO, 3000000, 0, 1);
        DropItem(II_WEA_AXT_SUHO, 3500000, 0, 1);
        DropItem(II_WEA_KNU_SUHO, 3200000, 0, 1);
        DropItem(II_WEA_CHE_SUHO, 3500000, 0, 1);
        DropItem(II_WEA_WAN_SUHO, 3500000, 0, 1);
        DropItem(II_WEA_STA_SUHO, 3500000, 0, 1);
        DropItem(II_WEA_BOW_SUHO, 3000000, 0, 1);
        DropItem(II_WEA_YOY_SUHO, 3500000, 0, 1);
    My Crane Machinary:

    Code:
    https://pastebin.com/NJJqvhvM
    Why is my crane Machinery not dropping? Do you have any other drop files?



    What do these numbers after the item mean?

    Code:
    DropKind(IK3_SWD, 65, 72);
    You mean it will drop from lvl 65 to 72?


    I'm asking these questions because some bosses, even with the same drop rate, are a little different


  2. #2
    Newbie Ketchup is offline
    MemberRank
    Jan 2009 Join Date
    23Posts

    Re: [Question] Monsters

    All of this is in the top of propMoverEx.inc. Be sure to translate it from Korean to your language and you'll have all the answers.

  3. #3
    Member kikolindo is offline
    MemberRank
    Mar 2020 Join Date
    85Posts

    Re: [Question] Monsters

    I noticed that when I change my location fItemDropRate = 1, no matter how much I increase it, it doesn't change my drops

    and all monsters with:
    DropKind(IK3_SWD, 6, 6);
    DropKind(IK3_AXE, 6, 6);
    DropKind(IK3_CHEERSTICK, 6, 6);
    DropKind(IK3_KNUCKLEHAMMER, 6, 6);
    DropKind(IK3_WAND, 6, 6);
    DropKind(IK3_STAFF, 6, 6);
    DropKind(IK3_HELMET, 6, 6);
    DropKind(IK3_SUIT, 6, 6);
    DropKind(IK3_GAUNTLET, 6, 6);
    DropKind(IK3_BOOTS, 6, 6);
    DropKind(IK3_SHIELD, 6, 6);
    DropKind(IK3_BOW, 6, 6);
    DropKind(IK3_YOYO, 6, 6);
    they are not dropping any items, only food and quest item


    i think it is disabled for normal item drops, any tips on how to re-enable or change it?
    Last edited by kikolindo; 04-06-21 at 04:22 AM.

  4. #4
    Newbie Ketchup is offline
    MemberRank
    Jan 2009 Join Date
    23Posts

    Re: [Question] Monsters

    Quote Originally Posted by kikolindo View Post
    any tips on how to re-enable or change it?
    Try searching the source for: "fItemDropRate" and go from there.

  5. #5
    Member kikolindo is offline
    MemberRank
    Mar 2020 Join Date
    85Posts

    Re: [Question] Monsters

    From any specific file or all? if it's all I'll send

  6. #6
    Newbie Ketchup is offline
    MemberRank
    Jan 2009 Join Date
    23Posts

    Re: [Question] Monsters

    Quote Originally Posted by kikolindo View Post
    From any specific file or all? if it's all I'll send
    Open the source and search, stop being so lazy lol.

  7. #7
    Member kikolindo is offline
    MemberRank
    Mar 2020 Join Date
    85Posts

    Re: [Question] Monsters

    Sorry if it felt like that, I'm not lazy, I'm just finishing separating the files, I just wanted to know so that it doesn't get too long with files that might not be important

    - - - Updated - - -

    these are all the files i found with fDropItemRate

    https://pastebin.com/EveF0XVv
    Last edited by kikolindo; 04-06-21 at 07:57 PM.



Advertisement