Clear out experimental .35 files

Clear out experimental .35 files
This commit is contained in:
Jaysyn904
2024-02-11 13:04:14 -05:00
parent 2112b92e24
commit 618cd42b82
22356 changed files with 0 additions and 1248956 deletions

View File

@@ -1,33 +0,0 @@
/*
Recover all swordsage maneuvers
Only functions in combat, otherwise call delayed recovery
*/
#include "tob_inc_tobfunc"
#include "inc_dynconv"
#include "x0_i0_modes"
void main()
{
object oInitiator = OBJECT_SELF;
if (GetIsInCombat(oInitiator))
{
int nStealth = FALSE;
if(GetStealthMode(oInitiator) == STEALTH_MODE_ACTIVATED) nStealth = TRUE;
AssignCommand(oInitiator, ClearAllActions(TRUE));
StartDynamicConversation("tob_swd_rcrcnv", oInitiator, DYNCONV_EXIT_NOT_ALLOWED, FALSE, TRUE, oInitiator);
if (nStealth)
{
SetActionMode(oInitiator, ACTION_MODE_STEALTH, TRUE);
UseStealthMode();
ActionUseSkill(SKILL_HIDE, oInitiator);
ActionUseSkill(SKILL_MOVE_SILENTLY, oInitiator);
}
}
else
{
// Delayed Recovery Mechanics
ExecuteScript("tob_gen_recover", oInitiator);
}
}