Convo, script and vendor changes

This commit is contained in:
EpicValor
2023-08-09 19:41:38 -05:00
parent 49b931d5e5
commit 284b0f39a7
20 changed files with 5391 additions and 901 deletions

View File

@@ -13,4 +13,5 @@ CreateItemOnObject("playershandbook", oPC);
if (GetItemPossessedBy(oPC, "emotewand")!= OBJECT_INVALID)
return;
CreateItemOnObject("emotewand", oPC);
GiveGoldToCreature(oPC, 230);
}

View File

@@ -3,7 +3,7 @@ int StartingConditional()
{
object oPC = GetPCSpeaker();
if (!(GetHitDice(oPC) <= 4)) return TRUE;
if (!(GetHitDice(oPC) <= 6)) return TRUE;
return FALSE;
}

View File

@@ -3,7 +3,7 @@ int StartingConditional()
{
object oPC = GetPCSpeaker();
if (!(GetHitDice(oPC) <= 1)) return TRUE;
if (!(GetHitDice(oPC) <= 6)) return TRUE;
return FALSE;
}