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