Fixed CCOH, Fixed starting GP, Fixed DMFI languages, Fix cep weapon appearances, Fixed new player start up system. Added PC deleter. Added ACP 4.1. Full compile. Updated release archive.
14 lines
329 B
Plaintext
14 lines
329 B
Plaintext
int StartingConditional()
|
|
{
|
|
// set the custom tokens
|
|
object oPC = GetPCSpeaker();
|
|
object oTarget = GetLocalObject(oPC, "dmfi_univ_target");
|
|
|
|
string sName = GetName(oTarget);
|
|
SetCustomToken(20680, sName);
|
|
string sOrigName = GetName(oTarget, TRUE);
|
|
SetCustomToken(20681, sOrigName);
|
|
|
|
return TRUE;
|
|
}
|