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,37 +0,0 @@
//::///////////////////////////////////////////////
//:: Scarface's Persistent Banking
//:: sfpb_used
//:://////////////////////////////////////////////
/*
Written By Scarface
*/
//////////////////////////////////////////////////
#include "sfpb_config"
void main()
{
// Vars
object oPC = GetLastUsedBy();
object oChest = OBJECT_SELF;
string sID = SF_GetPlayerID(oPC);
string sUserID = GetLocalString(oChest, "USER_ID");
string sModName = GetName(GetModule());
// End script if any of these conditions are met
if (!GetIsPC(oPC) ||
GetIsDM(oPC) ||
GetIsDMPossessed(oPC) ||
GetIsPossessedFamiliar(oPC)) return;
// If the chest is already in use then this must be a thief
if (sUserID != "" && sUserID != sID)
{
AssignCommand(oPC, ClearAllActions());
SetCutsceneMode(oPC, TRUE);
AssignCommand(oPC, ActionMoveAwayFromObject(oChest, TRUE, 50.0));
FloatingTextStringOnCreature("Stop thief!!!!!", oPC);
SendMessageToAllDMs(GetName(oPC) + " is trying to steal from a bank " +
"chest that is already in use.");
DelayCommand(5.0, SetCutsceneMode(oPC, FALSE));
}
}