15 lines
246 B
Plaintext
15 lines
246 B
Plaintext
#include "x0_i0_partywide"
|
|
|
|
|
|
void main()
|
|
{
|
|
// Get the PC who is in this conversation.
|
|
object oPC = GetPCSpeaker();
|
|
|
|
GiveXPToAll(oPC, 1000);
|
|
|
|
// Give the speaker the items
|
|
CreateItemOnObject("ningstone", GetPCSpeaker(), 1);
|
|
|
|
}
|