jonpetro Posted March 16, 2010 Share Posted March 16, 2010 (edited) All I'm trying to do is change the char's starting points from 5 to 10. I've already updated the M2DA, but I can't get anything to work. #include "events_h" #include "sys_chargen_h" void main() { event ev = GetCurrentEvent(); int nEvent = GetEventType(ev); object oOwner = GetEventCreator(ev); switch(nEvent) { case EVENT_TYPE_CHARGEN_START: { int nMode = GetEventInteger(ev, 0); object oChar = GetEventObject(ev, 0); if(nMode == CHARGEN_MODE_CREATE) { SetCreatureProperty(oChar, PROPERTY_SIMPLE_ATTRIBUTE_POINTS, 10.0, PROPERTY_VALUE_BASE); break; } else { break; } } } } Edited March 21, 2010 by jonpetro Link to comment Share on other sites More sharing options...
jonpetro Posted March 21, 2010 Author Share Posted March 21, 2010 Any ideas? Link to comment Share on other sites More sharing options...
Recommended Posts