I actually think I might have added the reflect code wrong from 12 tails but I'm pretty sure I got it right...since once I got an error saying on Database.cs saying something aboutQuote:
What all have you added to this?
I added his reflect code ofQuote:
C.Skills.Add(S.ID, S);
if(Skill.ID == 3060) C.CanReflect = true;
But you gotta do something in Mob.cs.Quote:
If.KillCount = '":?
Yeah, Ill get empty to help meQuote:
But you gotta do something in Mob.cs.
Here is a mini guide for it.
In world.cs do something like:
public static bool MonsterQuest = false;
Then go to Character.cs and do somethinglike
public int KillCount = 0;
Then you would wanna go to Mob.cs and do something like this//Example using birdmen.
if(Name.Contains("Birdman"))
{
if (World.MonsterQuest)
{
GC.MyChar.KillCount++
}
else
{
Drop codes;
}
}
Get it?