Quote:
Originally Posted by nestreys
Anyone can help me on how to make NPC that reallot points cause mine dont work. Anyone has a public code for it. Help me please. Thanks.
|
make a new int like
Code:
int StatPoints;
//so when this void will take care of adding up all of ya's Statp you alreay added up to something
//so next you have to do
MyChar.Str += StatPoints;
MyChar.Vit += StatPoints;
Mychar.Spi += StatPoints;
MyChar.Agi += StatPoints;
MyChar.StatP += StatPoints;
//Now send a packet with stat points , HP, Mana , Str, agi and so on... This should do fine...