[quote=curtwagner1984]Yes, but scripting approach has much greater flexibility. Let's say I want to have 3 Attrib points instead of 2 per level.

But sadly I'm not familiar enough with the Editor to do this. Any help on who to write a script that would achieve that would be greatly appreciated. [/quote]

EDIT:

This shouldn't be too difficult to achieve. Something along the line of:

(Pseudocode)
[code]
ON EVENT (LEVEL_UP)
{
FOREACH (CHAR) IN (PARTY)
{
IF (CHAR_LEVEL) % 4 == 0
{
CHAR_CIVIC_POINTS = 2;
}
}
}


[/code]

But I don't really know how to start such a script in the editor. Like I said before, any help or pointers would be appreciated.