RATDOG/_module/nss/at_spiders_lie.nss
Jaysyn904 8989a30fc8 Tweaked & Bugfixed "Spider's Captive" quest
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.
2022-11-20 00:21:57 -05:00

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);
}