2025/08/24 Update

Updated for PRC8 updates.
This commit is contained in:
Jaysyn904
2025-08-24 22:48:26 -04:00
parent 6e366c0d9c
commit fede1fcc3d
313 changed files with 67 additions and 11 deletions

View File

@@ -41,8 +41,9 @@ void main()
} // more details
//:: Add PRC journal entries
AddJournalQuestEntry("JRNL_XPCHART", 1, oPC, FALSE, FALSE, FALSE);
AddJournalQuestEntry("JRNL_XPCHART", 1, oPC, FALSE, FALSE, FALSE);
AddJournalQuestEntry("JRNL_LA_BUYOFF", 1, oPC, FALSE, FALSE, FALSE);
AddJournalQuestEntry("JRNL_PRC8", 1, oPC, FALSE, FALSE, FALSE);
object oInvItem;
int nPCxp = GetXP(oPC);

View File

@@ -108,8 +108,8 @@ int GetMaxTeams();
void SelectTeam( object oPlayer );
void RandomizeTeamStartLocations();
location GetTeamStartLocation( object oPlayer );
int AddPlayerToTeam( int nTeam, object oPlayer );
int RemovePlayerFromTeam( int nTeam, object oPlayer );
void AddPlayerToTeam( int nTeam, object oPlayer );
void RemovePlayerFromTeam( int nTeam, object oPlayer );
int GetPlayerTeam( object oPlayer );
void UnlockAllTeams();
void SetTeamLocked( int nTeam, int bLocked );
@@ -123,7 +123,7 @@ string GetTeamName(int nTeam);
int TEAM_NUM_PLAYERS = 0;
int TEAM_LOCKED_STATE = 1;
int TEAM_START_LOC_INDEX = 2;
int SetTeamData( int nTeam, int nDataType, int nData );
void SetTeamData( int nTeam, int nDataType, int nData );
int GetTeamData( int nTeam, int nDataType );
// Observer Mode Constants

View File

@@ -1,6 +1,8 @@
// good = 1, evil = 2
#include "inc_rules"
#include "coc_include"
void AddPlayerToTeam( int nTeam, object oPlayer )
/* void AddPlayerToTeam( int nTeam, object oPlayer )
{
// int nNumPlayers, nCount;
// string sAreaTag;
@@ -49,8 +51,10 @@ void AddPlayerToTeam( int nTeam, object oPlayer )
oPC = GetNextPC();
}
}
int GetPlayerTeam( object oPlayer )
*/
/* int GetPlayerTeam( object oPlayer )
{
return GetLocalInt(oPlayer,"m_nTeam");
}
} */
void main() {}