Aschbourne_PRC8/_module/nss/dm_reads_line.nss
GetOffMyYarn bd6efd3825 Changes and Fixes
Removed old cripple creek maps and added originals back in. Fixed outfits for some mobs that were not showing up previously. Added and fixed some transitions.
2024-10-07 11:32:07 -04:00

12 lines
227 B
Plaintext

int StartingConditional()
{
object oSpeaker = GetPCSpeaker();
//Show this line in the conversation ONLY if it's a DM!
if(GetIsDM(oSpeaker))
return TRUE;
//Otherwise Don't show the line to anyone else!
return FALSE;
}