12 lines
318 B
Plaintext
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;
|
|
}
|