So I added the skills, seems to work and I have added the Fists (weapons) I am able to buy Fists but I can't equip them what am I missing? Character just doesn't equip them?
private static bool WarriorEpic(uint p)
{
if (p >= 624000 && p <= 619439 || (p >= 624439 && p <= 624439))
return true;
return false;
}
Correct. The ids must be in the range of valid ids for the patch for the type of equipment you're trying to add.Quote:
You are giving no information about how you added them, what you tried to solve the problem or any output on the problem (like does server get the packet when you try to equip the item, is item recognized as an equipment in your source). Which makes me believe you just copy-pasta code and have no idea what you are doing lol.
Anyways, I had a similar problem where I added item to my source and my client and everything was working except for the item action script. My server didn't get any packets whatsoever even though I was right-clicking on the item in my inventory. It turns out, conquer doesn't accept random ids for items. That's probably your problem, make sure your ids are correct.