starting area added
Added a server entry and ooc area
This commit is contained in:
@@ -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));
|
||||
|
@@ -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);
|
||||
|
Reference in New Issue
Block a user