16 lines
516 B
Plaintext
16 lines
516 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName at_8kgold
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 6/21/2003 12:48:26 AM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
// Give the speaker some gold
|
|
GiveGoldToCreature(GetPCSpeaker(), 8000);
|
|
int nQuests=GetLocalInt(GetPCSpeaker(),"nQuests");
|
|
nQuests++;
|
|
SetLocalInt(GetPCSpeaker(),"nQuests",nQuests);
|
|
}
|