19 lines
616 B
Plaintext
19 lines
616 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName at_swordandgold
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 6/21/2003 12:43:56 AM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
// Give the speaker some gold
|
|
GiveGoldToCreature(GetPCSpeaker(), 2000);
|
|
|
|
// Give the speaker the items
|
|
CreateItemOnObject("rts_it_mag50", GetPCSpeaker(), 1);
|
|
int nQuests=GetLocalInt(GetPCSpeaker(),"nQuests");
|
|
nQuests++;
|
|
SetLocalInt(GetPCSpeaker(),"nQuests",nQuests);
|
|
}
|