Monster Drop

03/15/2019 11:38 babyminion#1
Code:
MI_CAITSITH01
{
	Maxitem = 2;
	DropGold(1300, 2600);

	DropItem(II_GEN_GEM_GEM_CATBELL, 100000000, 0, 1);

	m_nAttackFirstRange = 8;

	AI
	{
		#Scan
                    {
			scan
                    }
		#battle
		    {
			Attack
                    }
		#move
		    {
			
		    }	
   	}               
}
As you can see theres no other drop in that monster except of catbell. But this monster still can drop suns/moons and even green items how can posibly remove the drop from this monster or decrese the drop rate of green items on this monster?

P.S i already decrese the drop rates on EventFunc.lua
03/15/2019 13:16 Naltalah#2
Check propDropEvent.inc
03/15/2019 13:46 Lindanus#3
example propDropEvent.inc:
Code:
...
DropItem(II_GEN_MAT_ORICHALCUM01, 20000000, 0, -1, 1, 150);
DropItem(II_GEN_MAT_MOONSTONE, 5000000, 0, -1, 101,130);
...
03/15/2019 15:39 KingKeesie#4
propDropEvent.inc (This file is for the GENERAL drops) The file you quotet is SPECIFIED for that monster. so moost likely only a quest item or when having a boss the items it should drop
03/16/2019 09:30 babyminion#5
Quote:
Originally Posted by Naltalah View Post
Check propDropEvent.inc
Quote:
Originally Posted by Lindanus View Post
example propDropEvent.inc:
Code:
...
DropItem(II_GEN_MAT_ORICHALCUM01, 20000000, 0, -1, 1, 150);
DropItem(II_GEN_MAT_MOONSTONE, 5000000, 0, -1, 101,130);
...
Quote:
Originally Posted by KingKeesie View Post
propDropEvent.inc (This file is for the GENERAL drops) The file you quotet is SPECIFIED for that monster. so moost likely only a quest item or when having a boss the items it should drop
Thanks for the tip guys!
03/20/2019 04:41 kldongkl#6
good bye