diff options
Diffstat (limited to 'npc/test/npcmarriage.txt')
-rw-r--r-- | npc/test/npcmarriage.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/npc/test/npcmarriage.txt b/npc/test/npcmarriage.txt new file mode 100644 index 000000000..1b7497bdc --- /dev/null +++ b/npc/test/npcmarriage.txt @@ -0,0 +1,19 @@ +// Evol scripts. +// Author: +// 4144 +// Description: +// npc marriage + +test,25,14,0 script marriage1 NPC_PLAYER,{ + marriagemain(); + close; + +OnTimer30000: + marriagecheck(); + end; + +OnInit: + .sex = G_MALE; + .distance = 3; + initnpctimer; +} |