Ancordia_PRC8/_module/nss/tour_round2.nss
Jaysyn904 102ba7dab6 Initial Commit
Initial Commit
2023-09-21 19:51:32 -04:00

12 lines
318 B
Plaintext

#include "x4_inc_functions"
int StartingConditional()
{
object oPC = GetPCSpeaker();
string sDB = CharacterDB(oPC);
if (GetCampaignInt(sDB, "TOUR_ROUND") != 2) return FALSE;
//Prepare the token with the opponent's name
SetCustomToken(789, GetCampaignString(sDB, "TOUR_NAME2"));
return TRUE;
}