diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-29 01:08:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-29 01:08:12 +0300 |
commit | dbd26c5aaeabd8ce698f27d8d9874fb3807d4647 (patch) | |
tree | 32e7461b8b5dfd71d18aee2a8b126373b718b5f7 /npc/000-0-0 | |
parent | d7f52abfec6b90a43f8df857877b0ab003d84fa9 (diff) | |
download | serverdata-dbd26c5aaeabd8ce698f27d8d9874fb3807d4647.tar.gz serverdata-dbd26c5aaeabd8ce698f27d8d9874fb3807d4647.tar.bz2 serverdata-dbd26c5aaeabd8ce698f27d8d9874fb3807d4647.tar.xz serverdata-dbd26c5aaeabd8ce698f27d8d9874fb3807d4647.zip |
Restore gender to most npcs.
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; } |