21 lines
761 B
Plaintext
21 lines
761 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName wom_lg
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 4/16/2005 9:50:31 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
//Remove some gold from the player
|
||
|
TakeGoldFromCreature(1000, GetPCSpeaker(), FALSE);
|
||
|
|
||
|
// AdjustAlignment(GetPCSpeaker(), ALIGNMENT_NEUTRAL, 100);
|
||
|
// AdjustAlignment(GetPCSpeaker(), ALIGNMENT_LAWFUL, 100);
|
||
|
// AdjustAlignment(GetPCSpeaker(), ALIGNMENT_CHAOTIC, 100);
|
||
|
// AdjustAlignment(GetPCSpeaker(), ALIGNMENT_GOOD, 100);
|
||
|
// AdjustAlignment(GetPCSpeaker(), ALIGNMENT_EVIL, 100);
|
||
|
AdjustAlignment(GetPCSpeaker(), ALIGNMENT_ALL, 100);
|
||
|
}
|