17 lines
476 B
Plaintext
17 lines
476 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName aw_givetooth
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 11/23/2003 4:09:18 PM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
// Give the speaker some XP
|
|
GiveXPToCreature(GetPCSpeaker(), 1000);
|
|
|
|
// Give the speaker the items
|
|
CreateItemOnObject("awquestitem", GetPCSpeaker(), 1);
|
|
|
|
}
|