NWNWiki
NWNWiki
3,719
pages

Void is a null data type. Functions set to void don't return an assignable value. Only functions of type 'void' can be assigned to the action queue.


//Example
void DeductXP(object oPC)
{
    // deduct some XP in here...
}