Items not dropping at all
Hello ragezoners,
I am having a little problem with my new server. None of the BOSSES (not giants) are dropping weapons, only Sunstones and Diamonds, even if the propMoverEx.inc is properly editted. The drop rate of my server is actually really high (about 200x, but even with 5000x I can't get anything from bosses other than suns and diamonds).
Here's an example:
Monster: Beast King Khan (should drop Lusaka's weapons, right?)
Code:
MI_BESIBIGFOOT01
{
Maxitem = 4;
DropItem(II_GEN_MAT_ORICHALCUM01, 180000000, 0, 1);
DropItem(II_GEN_MAT_ORICHALCUM01, 180000000, 0, 1);
DropItem(II_GEN_MAT_ORICHALCUM01, 180000000, 0, 1);
DropItem(II_GEN_MAT_ORICHALCUM01, 180000000, 0, 1);
DropItem(II_GEN_MAT_ORICHALCUM01, 180000000, 0, 1);
DropItem(II_GEN_MAT_MOONSTONE, 180000000, 0, 1);
DropItem(II_GEN_MAT_MOONSTONE, 180000000, 0, 1);
DropItem(II_GEN_MAT_MOONSTONE, 180000000, 0, 1);
DropItem(II_GEN_MAT_MOONSTONE, 180000000, 0, 1);
DropItem(II_GEN_MAT_MOONSTONE, 180000000, 0, 1);
DropItem(II_WEA_SWO_LUZA, 90000000, 0, 1);
DropItem(II_WEA_SWT_LUZA, 90000000, 0, 1);
DropItem(II_WEA_AXE_LUZA, 90000000, 0, 1);
DropItem(II_WEA_AXT_LUZA, 90000000, 0, 1);
DropItem(II_WEA_KNU_LUZA, 90000000, 0, 1);
DropItem(II_WEA_CHE_LUZA, 90000000, 0, 1);
DropItem(II_WEA_WAN_LUZA, 90000000, 0, 1);
DropItem(II_WEA_STA_LUZA, 90000000, 0, 1);
DropItem(II_WEA_BOW_LUZA, 90000000, 0, 1);
DropItem(II_WEA_YOY_LUZA, 90000000, 0, 1);
DropItem(II_SYS_SYS_SCR_BARUNARUNE01, 30000000, 0, 1);
DropItem(II_GEN_GEM_GEM_BIGFOOTHEART, 200000000, 0, 1);
m_nAttackFirstRange = 8;
AI
{
#Scan
{
scan
}
#battle
{
Attack cunning low
}
#move
{
Loot d 5
}
}
}
I had a similar problem before, when the Kalgas only dropped Templar Armor (in another server though, not this one).
Any tips on how to solve this problem? And yes, the .res files are updated too.
Thanks in advance!
Re: Items not dropping at all
Drop rate is stored in an integer. What's 180000000 * 2000?
Re: Items not dropping at all
Quote:
Originally Posted by
Mootie
Drop rate is stored in an integer. What's 180000000 * 2000?
360 billion? /ridicule
Re: Items not dropping at all
Got it! Problem solved, thanks!