LoD_PRC8/_module/nss/her_debug.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

22 lines
582 B
Plaintext

//a handy way to debug, just send the string and voila, if you caller can't speak
//then send a pc or something along with
void herDebug(string saywhat, object oSpeaker = OBJECT_SELF);
void herDebug(string saywhat, object oSpeaker = OBJECT_SELF)
{
// if (myDebug) AssignCommand(oSpeaker, SpeakString(saywhat));
object oPC = GetFirstPC();
int i;
while (oPC != OBJECT_INVALID)
{
if (GetPCPlayerName(oPC) == "HerMyT")
{
i = 1;
break;
}
oPC = GetNextPC();
}
if (i == 1) SendMessageToPC(oPC, saywhat);
}