HiddenTradition_PRC8/_module/nss/ro_pc_teletopart.nss

16 lines
317 B
Plaintext
Raw Normal View History

// OnUse script
// void main() {
// BeginConversation("",GetLastUsedBy());
// }
// script for "Actions Taken" tab of the conversation
void main() {
object oPC = GetPCSpeaker();
object oLeader = GetFactionLeader(oPC);
if (oPC!=oLeader) {
AssignCommand(oPC,JumpToObject(oLeader));
}
}