10 lines
191 B
Plaintext
10 lines
191 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
int iHeard = GetLocalInt(oPC,"iheard");
|
||
|
|
||
|
SetCreatureAppearanceType(oPC,iHeard);
|
||
|
|
||
|
SendMessageToPC(oPC,"Appearance set to " + IntToString(iHeard));
|
||
|
}
|