16 lines
533 B
Plaintext
16 lines
533 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName at_give5ptr
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 6/21/2003 12:50:05 AM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
// Give the speaker the items
|
|
CreateItemOnObject("mana_crystal_5", GetPCSpeaker(), 1);
|
|
int nQuests=GetLocalInt(GetPCSpeaker(),"nQuests");
|
|
nQuests++;
|
|
SetLocalInt(GetPCSpeaker(),"nQuests",nQuests);
|
|
}
|