11 lines
224 B
Plaintext
11 lines
224 B
Plaintext
|
//SET RULES READ//
|
||
|
|
||
|
#include "craft_inc"
|
||
|
void main()
|
||
|
{
|
||
|
object oPC = GetLastSpeaker();
|
||
|
object oTargetBack = GetWaypointByTag("TWILIGHT");
|
||
|
ReadRulesSet(oPC, 1);
|
||
|
AssignCommand(oPC, JumpToObject(oTargetBack));
|
||
|
}
|