Tweaked & Bugfixed "Spider's Captive" quest. Breathed a little life into the Warrior's Guild. Changed several quest rewards to be split among the party. Full compile.
26 lines
752 B
Plaintext
26 lines
752 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName at_spiders_lie
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 8/28/2005 11:07:31 PM
|
|
//:://////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
//:: Declare Major Variables
|
|
object oPC = GetPCSpeaker();
|
|
|
|
int nChange;
|
|
|
|
int nAlignment = GetAlignmentGoodEvil(oPC);
|
|
|
|
if (nAlignment == ALIGNMENT_LAWFUL) {nChange = 5;}
|
|
if (nAlignment == ALIGNMENT_NEUTRAL) {nChange = 3;}
|
|
if (nAlignment == ALIGNMENT_CHAOTIC) {nChange = 1;}
|
|
|
|
//:: Give the speaker some gold
|
|
GiveGoldToCreature(oPC, 250);
|
|
AdjustAlignment(oPC, ALIGNMENT_CHAOTIC, nAlignment, FALSE);
|
|
}
|