Aschbourne_PRC8/_module/nss/deity_bard.nss
GetOffMyYarn 69879d6957 Areas and Fixes
Added CCOH and missing areas
Changed some areas to be craftable,
Fixed some on death issues,
Fixed the Gaurd
2024-08-30 11:38:44 -04:00

15 lines
309 B
Plaintext

#include "prc_class_const"
int StartingConditional()
{
object oPC = GetPCSpeaker();
int iBardic = GetLevelByClass(CLASS_TYPE_BARD, oPC)
+ GetLevelByClass(CLASS_TYPE_SUBLIME_CHORD, oPC)
+ GetLevelByClass(CLASS_TYPE_VIRTUOSO, oPC);
if(iBardic > 0)
return TRUE;
return FALSE;
}