19 lines
575 B
Plaintext
19 lines
575 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName at_sadv_gold
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 1/23/2004 5:22:59 PM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
// Give the speaker some gold
|
|
string sID=GetLocalString(OBJECT_SELF,"sTeamID");
|
|
int nGold=100;
|
|
if (sID=="DWF") nGold=400;
|
|
else if (sID=="UND") nGold=300;
|
|
else if (sID=="UNC") nGold=250;
|
|
GiveGoldToCreature(GetPCSpeaker(), nGold);
|
|
|
|
}
|