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.
This commit is contained in:
25
_module/nss/at_spiders_lie.nss
Normal file
25
_module/nss/at_spiders_lie.nss
Normal file
@@ -0,0 +1,25 @@
|
||||
//::///////////////////////////////////////////////
|
||||
//:: 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);
|
||||
}
|
Reference in New Issue
Block a user