Jump to content
  • 0

Help Needed (normal monster card not droping 100%)


JassMax

Question


  • Group:  Members
  • Topic Count:  65
  • Topics Per Day:  0.01
  • Content Count:  235
  • Reputation:   0
  • Joined:  05/03/13
  • Last Seen:  

Hello rA,

i want to make drop rate of normal monster 100% like poring, drops, horn, ect
and mvp drop rate 10% and mini boss rate 20%

i already edited trunk/conf/battle/drops.conf

its still not working

 

// The rate the common items are dropped (Items that are in the ETC tab, besides card)
item_rate_common: 10000
item_rate_common_boss: 10000
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: 10000
item_rate_heal_boss: 10000
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: 10000
item_rate_use_boss: 10000
item_drop_use_min: 1
item_drop_use_max: 10000

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

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

 

Also i added in edited trunk\src\map\battle.c

 

	{ "item_rate_mvp",                      &battle_config.item_rate_mvp,                   1000,    0,      1000000,        },
	{ "item_rate_common",                   &battle_config.item_rate_common,                1000,    0,      1000000,        },
	{ "item_rate_common_boss",              &battle_config.item_rate_common_boss,           1000,    0,      1000000,        },
	{ "item_rate_equip",                    &battle_config.item_rate_equip,                 10000,    0,      1000000,        },
	{ "item_rate_equip_boss",               &battle_config.item_rate_equip_boss,            10000,    0,      1000000,        },
	{ "item_rate_card",                     &battle_config.item_rate_card,                  10000,    0,      1000000,        },
	{ "item_rate_card_boss",                &battle_config.item_rate_card_boss,             1000,    0,      1000000,        },
	{ "item_rate_heal",                     &battle_config.item_rate_heal,                  10000,    0,      1000000,        },
	{ "item_rate_heal_boss",                &battle_config.item_rate_heal_boss,             10000,    0,      1000000,        },
	{ "item_rate_use",                      &battle_config.item_rate_use,                   100,    0,      1000000,        },
	{ "item_rate_use_boss",                 &battle_config.item_rate_use_boss,              100,    0,      1000000,        },
	{ "item_rate_adddrop",                  &battle_config.item_rate_adddrop,               100,    0,      1000000,        },
	{ "item_rate_treasure",                 &battle_config.item_rate_treasure,              10000,    0,      1000000,        },
	{ "prevent_logout",                     &battle_config.prevent_logout,                  10000,  0,      60000,          },

 

and i recompiled also..after changes..still normal monster not drop 100% card

Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1282
  • Reputation:   393
  • Joined:  02/03/12
  • Last Seen:  

Hmm that's weird... Have you tried @rates? what does it return...

As a temporary solution you can try my Drop Emulator https://code.google.com/p/ea-addicts/downloads/detail?name=dropemulator.txt&can=2&q=

Do @mi what does it return?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  65
  • Topics Per Day:  0.01
  • Content Count:  235
  • Reputation:   0
  • Joined:  05/03/13
  • Last Seen:  

Hmm that's weird... Have you tried @rates? what does it return...

As a temporary solution you can try my Drop Emulator https://code.google.com/p/ea-addicts/downloads/detail?name=dropemulator.txt&can=2&q=

Do @mi what does it return?

@mi poring

card drop rate shows 1.00%

 

&

 

@rates

post-17166-0-44469900-1371422557_thumb.png

post-17166-0-58722900-1371422942_thumb.png

Edited by JassMax
Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1282
  • Reputation:   393
  • Joined:  02/03/12
  • Last Seen:  

1000000 = 100%
100000 = 10%
10000 = 1%
1000 = 0.1%
100 = 0.01%

 

Try that.

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  65
  • Topics Per Day:  0.01
  • Content Count:  235
  • Reputation:   0
  • Joined:  05/03/13
  • Last Seen:  

1000000 = 100%
100000 = 10%
10000 = 1%
1000 = 0.1%
100 = 0.01%

 

Try that.

Thanks man now working Awesome /no1

i was using 10000 for 100% drop...xD

i was wondering lol why card is not drop..i mean they drop but it wasn't 100%...

Edited by JassMax
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...