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/001-1 | |
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/001-1')
-rw-r--r-- | npc/001-1/artaxe.txt | 4 | ||||
-rw-r--r-- | npc/001-1/cookiemaster.txt | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/npc/001-1/artaxe.txt b/npc/001-1/artaxe.txt index 7eafe98c..c8142537 100644 --- a/npc/001-1/artaxe.txt +++ b/npc/001-1/artaxe.txt @@ -6,7 +6,6 @@ // Helping NPC. // Size = 2 -// Gender = 1 000-1,27,55,0 script Artaxe 109,{ mesn; mesq l("Do you feel too weak even if trying to hit the surrounding wildlife?"); @@ -17,4 +16,7 @@ close; +OnInit: + setnpcsex 1; + end; } diff --git a/npc/001-1/cookiemaster.txt b/npc/001-1/cookiemaster.txt index f51c332e..8623760e 100644 --- a/npc/001-1/cookiemaster.txt +++ b/npc/001-1/cookiemaster.txt @@ -11,10 +11,9 @@ // 1 Get a cookie. // Size = 2 -// Gender = 0 001-1,39,38,0 script Cookie Master 419,{ if ((countitemcolor("DeliciousCookie") == 0) && (getq(General_Cookies) == 1)) - goto L_LostCookie; + goto L_LostCookie; if (getq(General_Cookies) == 1) goto L_GetCookie; @@ -255,4 +254,8 @@ L_Bye: npctalk3 l("See you later!"); close; + +OnInit: + setnpcsex 0; + end; } |