Further file organization
Further file organization
This commit is contained in:
18
nwn/nwnprc/trunk/scripts/prc_domain_check.nss
Normal file
18
nwn/nwnprc/trunk/scripts/prc_domain_check.nss
Normal file
@@ -0,0 +1,18 @@
|
||||
// Written by Stratovarius
|
||||
// Checks what Bonus domains you have and in what slots.
|
||||
|
||||
#include "inc_newspellbook"
|
||||
#include "prc_inc_domain"
|
||||
|
||||
void main()
|
||||
{
|
||||
object oPC = OBJECT_SELF;
|
||||
int nDomain, i;
|
||||
string sName;
|
||||
for(i = 1; i < 6; i++)
|
||||
{
|
||||
nDomain = GetBonusDomain(oPC, i);
|
||||
sName = GetDomainName(nDomain);
|
||||
FloatingTextStringOnCreature("Bonus Domain in Slot " + IntToString(i) + ": " + sName, oPC, FALSE);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user