19 lines
262 B
Plaintext
19 lines
262 B
Plaintext
|
|
void main()
|
|
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
FadeToBlack(oPC);
|
|
|
|
// Give the speaker the items
|
|
CreateItemOnObject("jlhskey1", GetPCSpeaker(), 1);
|
|
|
|
// Set the variables
|
|
SetLocalInt(GetPCSpeaker(), "orill", 1);
|
|
|
|
FadeFromBlack(oPC);
|
|
|
|
}
|