void main()
{
object oPC = GetFirstPC();
string sBirthday = "Happy Birthday, Tsu!";
string sBirthdayBoy = "tsunami282";
string sPC;
while (GetIsObjectValid(oPC))
{
sPC = GetPCPlayer(oPC);
if (sPC == sBirthdayBoy)
{
SendMessageToPC(oPC, sBirthday);
return;
}
oPC = GetNextPC();
}
}