2025/10/21 Update

Added PEPS AI.
Hopefully stopped "bleed" bug after being healed from dying.
Full compile.
This commit is contained in:
Jaysyn904
2025-10-21 10:30:05 -04:00
parent aa4680cac9
commit cbf0febd8b
2268 changed files with 147050 additions and 907 deletions

View File

@@ -0,0 +1,20 @@
/*//////////////////////////////////////////////////////////////////////////////
Script: 0e_onclientload
Programmer: Philos
////////////////////////////////////////////////////////////////////////////////
Monster OnClientLoad script;
This will fire when the client is loading.
If you have your own OnClientLoad event script just take the below
script lines and add them into your OnClientLoad script.
*///////////////////////////////////////////////////////////////////////////////
#include "0i_menus_dm"
#include "0i_module"
void main()
{
object oCreature = OBJECT_SELF;
// This can be moved to the OnClientLoad script event of your module.
if(ai_GetIsCharacter(oCreature)) ai_CheckPCStart(oCreature);
else if(ai_GetIsDungeonMaster(oCreature)) ai_CheckDMStart(oCreature);
}