9 lines
226 B
Plaintext
9 lines
226 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
location lLocation = GetLocation(oPC);
|
||
|
// Remove some gold from the player
|
||
|
TakeGoldFromCreature(20000, oPC, TRUE);
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "AryunOx", lLocation, FALSE);
|
||
|
}
|