12 lines
191 B
Plaintext
12 lines
191 B
Plaintext
//Put this script OnDeath
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetLastKiller();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
FloatingTextStringOnCreature("I gotta remember not to destroy the poor bears!!!", oPC);
|
|
|
|
}
|