16 lines
534 B
Plaintext
16 lines
534 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName sha_giveladygift
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 12/9/2004 6:08:11 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
void main()
|
||
|
{
|
||
|
// Give the speaker the items
|
||
|
CreateItemOnObject("sha_amu_ladysgif", GetPCSpeaker(), 1);
|
||
|
AssignCommand(OBJECT_SELF, ClearAllActions(TRUE));
|
||
|
SetIsDestroyable(TRUE);
|
||
|
DestroyObject(OBJECT_SELF);
|
||
|
}
|