15 lines
178 B
Plaintext
15 lines
178 B
Plaintext
|
// Simple Teleport from conversation
|
||
|
|
||
|
void main()
|
||
|
|
||
|
{
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
|
||
|
AssignCommand(oPC,ActionJumpToObject(GetObjectByTag("WP_BCastleCourtyard"),FALSE));
|
||
|
|
||
|
}
|
||
|
|
||
|
|