About Store Forum Documentation Contact



Post Reply 
Making my own Stat System
Author Message
Revek Offline
Member

Post: #1
Making my own Stat System
I need help creating/editing my own stat system is there any tutorial for this? I see on obj creation you can set stats but idk how to change/add other stats.
09-09-2012 08:45 AM
Find all posts by this user Quote this message in a reply
laugan Offline
Member

Post: #2
RE: Making my own Stat System
you can do it in C++, it's more comfortable that in editor smile

Code:
STRUCT(MyChrStruct,  Game::Chr)
//{
Int Chr_Health;
Int Chr_Mana;
Int Chr_Strength;
<...etc...>
}
09-09-2012 10:12 AM
Find all posts by this user Quote this message in a reply
Post Reply