diff options
Diffstat (limited to 'npc/000-0-0')
-rw-r--r-- | npc/000-0-0/q'onan.txt | 7 | ||||
-rw-r--r-- | npc/000-0-0/sailors.txt | 10 |
2 files changed, 13 insertions, 4 deletions
diff --git a/npc/000-0-0/q'onan.txt b/npc/000-0-0/q'onan.txt index dc124c4d0..637266374 100644 --- a/npc/000-0-0/q'onan.txt +++ b/npc/000-0-0/q'onan.txt @@ -5,8 +5,11 @@ // Description: // Sleeping and snoring NPC. -// Gender = 1 000-0-0,29,28,0 script Q'Onan#000-0-0 402,{ - callfunc "Asleep"; + close; + +OnInit: + setnpcsex 1; + end; } diff --git a/npc/000-0-0/sailors.txt b/npc/000-0-0/sailors.txt index 7c32c68cf..b8ffae0b8 100644 --- a/npc/000-0-0/sailors.txt +++ b/npc/000-0-0/sailors.txt @@ -6,7 +6,6 @@ // Introduction scene where two sailors talk about how the player was found on his raft. // Elmo will handle dialogs between both NPCs. -// Gender = 1 000-0-0,26,23,0 script Elmo#sailors 409,{ OnTalk: @@ -75,10 +74,17 @@ OnTalk: addtoskill 1, 1; // Add Emote skill. closedialog; close; + +OnInit: + setnpcsex 1; + end; } -// Gender = 1 000-0-0,25,23,0 script Magic Arpan#sailors 407,{ doevent "Elmo#sailors::OnTalk"; close; + +OnInit: + setnpcsex 1; + end; } |