diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/020-7-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/020-7-1/janitors.txt | 10 | ||||
-rw-r--r-- | npc/020-7-1/pagefinders.txt | 6 | ||||
-rw-r--r-- | npc/020-7-1/pagemakers.txt | 8 | ||||
-rw-r--r-- | npc/020-7-1/peetu.txt | 18 | ||||
-rw-r--r-- | npc/020-7-1/sage.txt | 2 |
6 files changed, 45 insertions, 0 deletions
diff --git a/npc/020-7-1/_import.txt b/npc/020-7-1/_import.txt index 81c8b454d..27758e15b 100644 --- a/npc/020-7-1/_import.txt +++ b/npc/020-7-1/_import.txt @@ -5,4 +5,5 @@ "npc/020-7-1/janitors.txt", "npc/020-7-1/pagefinders.txt", "npc/020-7-1/pagemakers.txt", +"npc/020-7-1/peetu.txt", "npc/020-7-1/sage.txt", diff --git a/npc/020-7-1/janitors.txt b/npc/020-7-1/janitors.txt index 199a90b8e..a268e243f 100644 --- a/npc/020-7-1/janitors.txt +++ b/npc/020-7-1/janitors.txt @@ -12,6 +12,8 @@ end; OnInit: + .sex=G_MALE; + .distance=5; npcsit; end; } @@ -24,6 +26,8 @@ OnInit: end; OnInit: + .sex=G_FEMALE; + .distance=5; npcsit; end; } @@ -36,6 +40,8 @@ OnInit: end; OnInit: + .sex=G_MALE; + .distance=5; end; } @@ -48,6 +54,8 @@ OnInit: end; OnInit: + .sex=G_MALE; + .distance=5; end; } @@ -59,6 +67,8 @@ OnInit: end; OnInit: + .sex=G_FEMALE; + .distance=5; end; } diff --git a/npc/020-7-1/pagefinders.txt b/npc/020-7-1/pagefinders.txt index 1ee4ca6fc..49d534f90 100644 --- a/npc/020-7-1/pagefinders.txt +++ b/npc/020-7-1/pagefinders.txt @@ -12,6 +12,8 @@ end; OnInit: + .sex=G_MALE; + .distance=5; npcsit; end; } @@ -24,6 +26,8 @@ OnInit: end; OnInit: + .sex=G_FEMALE; + .distance=5; npcsit; end; } @@ -39,6 +43,8 @@ OnInit: end; OnInit: + .sex=G_MALE; + .distance=5; npcsit; end; } diff --git a/npc/020-7-1/pagemakers.txt b/npc/020-7-1/pagemakers.txt index 58188a8ea..24ccee558 100644 --- a/npc/020-7-1/pagemakers.txt +++ b/npc/020-7-1/pagemakers.txt @@ -12,6 +12,8 @@ end; OnInit: + .sex=G_MALE; + .distance=5; npcsit; end; } @@ -24,6 +26,8 @@ OnInit: end; OnInit: + .sex=G_FEMALE; + .distance=5; end; } @@ -35,6 +39,8 @@ OnInit: end; OnInit: + .sex=G_MALE; + .distance=5; npcsit; end; } @@ -47,6 +53,8 @@ OnInit: end; OnInit: + .sex=G_MALE; + .distance=5; end; } diff --git a/npc/020-7-1/peetu.txt b/npc/020-7-1/peetu.txt new file mode 100644 index 000000000..68cf26e46 --- /dev/null +++ b/npc/020-7-1/peetu.txt @@ -0,0 +1,18 @@ +// TMW2 scripts. +// Authors: +// Jesusalva +// TMW Org. +// Description: +// Peetu + +020-7-1,122,27,2 script Peetu NPC_BLUESAGEWORKER_MA,{ + npctalk3 any(l("*sob sob*"), l("*crying*")); + end; + +OnInit: + .sex=G_MALE; + .distance=5; + npcsit; + end; +} + diff --git a/npc/020-7-1/sage.txt b/npc/020-7-1/sage.txt index 679c3ba6d..cb31d51b5 100644 --- a/npc/020-7-1/sage.txt +++ b/npc/020-7-1/sage.txt @@ -83,6 +83,8 @@ close; OnInit: + .sex=G_MALE; + .distance=5; npcsit; end; } |