19 lines
618 B
Plaintext
Raw Permalink Normal View History

2024-11-25 19:36:07 -05:00
//::///////////////////////////////////////////////
//:: FileName at_mana5andgold
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 6/21/2003 12:50:38 AM
//:://////////////////////////////////////////////
void main()
{
// Give the speaker some gold
GiveGoldToCreature(GetPCSpeaker(), 2000);
// Give the speaker the items
CreateItemOnObject("mana_crystal_5", GetPCSpeaker(), 1);
int nQuests=GetLocalInt(GetPCSpeaker(),"nQuests");
nQuests++;
SetLocalInt(GetPCSpeaker(),"nQuests",nQuests);
}