Area Changes and other fixes

added areas and ccoh,
fixed some areas to work with crafting
fixed some on death issues
added server entry/ooc
This commit is contained in:
2024-08-30 10:38:04 -04:00
parent d39928374d
commit 8622e5ce08
17234 changed files with 0 additions and 4253346 deletions

View File

@@ -1,28 +0,0 @@
void main()
{
// This script is to move a player toward an opposing alignment
// if they prayed at a shrine to a god who is diametrically
// opposed to their own alignment...should be viewed in
// combination with shrine_check_ali
// Uncomment out to move the PC towards good
object oPC=GetPCSpeaker();
AdjustAlignment(oPC,ALIGNMENT_GOOD,5);
// Uncomment out to move the PC towards evil
//object oPC=GetPCSpeaker();
//AdjustAlignment(oPC,ALIGNMENT_EVIL,5);
// Uncomment out to move the PC towards chaos
// object oPC=GetPCSpeaker();
//AdjustAlignment(oPC,ALIGNMENT_CHAOTIC,5);
// Uncomment out to move the PC towards lawfulness
//object oPC=GetPCSpeaker();
//AdjustAlignment(oPC,ALIGNMENT_LAWFUL,5);
//In the example given, the shrine is a to a good god
//therefore evil PCs will drift towards good if they pray
//here. The conversation may have to be changed somewhat
//for turning good players towards darkness!!!!
}