starting area added

Added a server entry and ooc area
This commit is contained in:
2024-08-28 14:51:58 -04:00
parent 33bf217de1
commit 034a2cd838
7 changed files with 120 additions and 3 deletions

View File

@@ -72,7 +72,7 @@ void main()
//Create corpse at player's feet
xCorpse = CreateObject(OBJECT_TYPE_PLACEABLE,"corpse002",xLoc);
//Drop equipment on corpse
for (xCount = 1; xCount < 15; xCount++)
/* for (xCount = 1; xCount < 15; xCount++)
{
switch (xCount)
{
@@ -95,7 +95,7 @@ void main()
{
AssignCommand(xCorpse,ActionTakeItem(xItem,xPC));
}
}
} */
//Now drop half of player's gold.
xGold = (GetGold(xPC)/2);
AssignCommand(xItem,TakeGoldFromCreature(xGold,xPC,FALSE));

View File

@@ -3,8 +3,15 @@
void main()
{
object oMod = GetModule();
ExecuteScript("_cb_client_enter", oMod);
object oPC = GetEnteringObject();
//:: Add PRC8 journal entries
AddJournalQuestEntry("JRNL_XPCHART", 1, oPC, FALSE, FALSE, FALSE);
AddJournalQuestEntry("JRNL_LA_BUYOFF", 1, oPC, FALSE, FALSE, FALSE);
if(GetIsPC(oPC)&& GetIsObjectValid(oPC))
{
SirElrics_SimplePlayerSetUp(oPC);