void main()
{
object oPC = GetFirstPC();
if (GetLocalInt(oPC, "iSlayedBrigs") == 0)
{
SetLocalInt(oPC, "iSlayedBrigs", 1);
AddJournalQuestEntry("ctf_soul", 2, oPC, FALSE, FALSE, TRUE);
GiveXPToCreature(oPC, 1000);
}
else
{
SetLocalInt(oPC, "iSlayedBrigs", GetLocalInt(oPC, "iSlayedBrigs")+1);
if (GetLocalInt(oPC, "iSlayedBrigs") == 3)
{
AddJournalQuestEntry("ctf_thebeast", 1, oPC, FALSE, FALSE, TRUE);
SetLocalInt(GetFirstPC(), "arnahconv", 1);
}
else
if (GetLocalInt(oPC, "iSlayedBrigs") == 10)
{
AddJournalQuestEntry("ctf_thebeast", 2, oPC, FALSE, FALSE, TRUE);
GiveXPToCreature(oPC, 500);
}
}
}