Void
From NWNWiki
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...
}
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...
}