16 lines
317 B
Plaintext
16 lines
317 B
Plaintext
// 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));
|
|
}
|
|
}
|