Modified some areas, items, creatures

Added a forge to make a weapon into another weapon of a different base type.
This commit is contained in:
EpicValor
2023-09-25 18:15:41 -05:00
parent 0b236318c4
commit 7770601b3e
213 changed files with 60047 additions and 3650 deletions

View File

@@ -0,0 +1,12 @@
int StartingConditional()
{
// Get the PC who is involved in this conversation
object oPC = GetPCSpeaker();
// The PC must have at least 1000000 gold.
if ( GetGold(oPC) < 1000000 )
return FALSE;
// If we make it this far, we have passed all tests.
return TRUE;
}