2025/07/21 Update

Added PEPS AI.
Full compile.
This commit is contained in:
Jaysyn904
2025-07-21 09:07:09 -04:00
parent 0b53f89e02
commit 9ae0679a70
1359 changed files with 44828 additions and 1039 deletions

View File

@@ -0,0 +1,19 @@
/*////////////////////////////////////////////////////////////////////////////////////////////////////
Script Name: 0c_cast_polymorp
Programmer: Philos
//////////////////////////////////////////////////////////////////////////////////////////////////////
Conversation script to setup the tokens for the henchman in the speakers party
except for who they are talking to.
*/////////////////////////////////////////////////////////////////////////////////////////////////////
void main()
{
object oSpeaker = OBJECT_SELF;
object oPC = GetPCSpeaker();
int nCntr = 1;
object oHenchman = GetHenchman(oPC, nCntr);
while(oHenchman != OBJECT_INVALID)
{
if(oHenchman != oSpeaker) SetCustomToken(77100 + nCntr, GetName(oHenchman));
oHenchman = GetHenchman(oPC, ++nCntr);
}
}