[Help] Met zone, Special Drops

07/03/2009 00:06 JustChillin#1
1. How do i get it so that Met doves drop mets more often and gears and stuff less often?

2. How do i get it so that items automatically go into you inventory?

3. How about the only drop is you have a certain quest activated?

Any help would be greatly appreciated.
07/03/2009 00:52 _Emme_#2
1.
Above the original drop code (I assume you don't want to rewrite it all tho it's good to do that), just do = if (MapID != MetZoneMapId)
{
}
else
{
Drop Mets higher rate
}
07/03/2009 01:12 kinshi88#3
2. Search for where items drop, and instead of the item dropping to the ground, make it go into your inventory. Its pretty straight forward.

3. Make a bool for the quest, and if that bool is true, drop the item.
07/03/2009 01:15 JustChillin#4
Quote:
Originally Posted by EmmeTheCoder View Post
1.
Above the original drop code (I assume you don't want to rewrite it all tho it's good to do that), just do = if (MapID != MetZoneMapId)
{
}
else
{
Drop Mets higher rate
}
Is that For CoEmu? or Lotf? cause im using CoEmu. In which file does this go into?

Quote:
Originally Posted by kinshi88 View Post
2. Search for where items drop, and instead of the item dropping to the ground, make it go into your inventory. Its pretty straight forward.

3. Make a bool for the quest, and if that bool is true, drop the item.
Thanks. And Bool? Does that does that go like right with the Quest Npc? lol
07/03/2009 02:06 kinshi88#5
Quote:
Originally Posted by JustChillin View Post
Thanks. And Bool? Does that does that go like right with the Quest Npc? lol
A bool is true or false... lol
Learn some basics C#.
07/03/2009 02:46 damianpesta#6
Quote:
Originally Posted by JustChillin View Post
Is that For CoEmu? or Lotf? cause im using CoEmu. In which file does this go into?



Thanks. And Bool? Does that does that go like right with the Quest Npc? lol
#Infamous explained everything well in hes tut's , check them out.I betcha you'll get them and understand everything you need after.