17 lines
495 B
Plaintext
17 lines
495 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName grocer_food1
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 3/4/2004 9:12:14 PM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
// Give the speaker the items
|
|
CreateItemOnObject("water", GetPCSpeaker(), 1);
|
|
|
|
|
|
// Remove some gold from the player
|
|
TakeGoldFromCreature(5, GetPCSpeaker(), TRUE);
|
|
}
|