19 lines
195 B
Plaintext
19 lines
195 B
Plaintext
|
|
||
|
#include "x0_i0_partywide"
|
||
|
|
||
|
void main()
|
||
|
|
||
|
{
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
FadeToBlack(oPC);
|
||
|
|
||
|
// Give 5 XP (to party) to the PC.
|
||
|
GiveXPToAll(oPC, 5);
|
||
|
|
||
|
FadeFromBlack(oPC);
|
||
|
|
||
|
}
|
||
|
|