16 lines
661 B
Plaintext
16 lines
661 B
Plaintext
///MOD Visits Counter By: Zebr@He@d\\\\
|
||
void main()
|
||
{
|
||
object oPC = GetLastUsedBy();
|
||
object oMod = GetModule();
|
||
string oPCPLAYER = GetPCPlayerName(oPC);
|
||
string oPCName = GetCampaignString("ENTER2","PCNAME2",oMod);
|
||
string PCPLAYER = GetCampaignString("ENTER2","PCPLAYER",oMod);
|
||
int PCNUMBER = GetCampaignInt("ENTER2","NUMBER2",oMod);
|
||
string PCNUMBER2 = IntToString(PCNUMBER);
|
||
ApplyEffectToObject(DURATION_TYPE_TEMPORARY,EffectVisualEffect(VFX_DUR_PROT_EPIC_ARMOR_2),OBJECT_SELF,6.0);
|
||
AssignCommand(OBJECT_SELF,SpeakString("<cööö> There Has Been <cÜ~>"+PCNUMBER2+"<cööö> Visits to ==PRC World-Extreme== and<cÜ~> "+oPCName+"<cööö> was the Last to Enter."));
|
||
|
||
|
||
}
|