diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-03-18 21:36:07 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-03-18 21:36:07 -0300 |
commit | 86cfad9a26d76772af47e4222a803d6726cf57a8 (patch) | |
tree | d3d457ad9628a76159fb9c911509401bfe390e98 /npc/029-0 | |
parent | b666fe796d83795198c6d54c81db4bb246dad038 (diff) | |
download | serverdata-86cfad9a26d76772af47e4222a803d6726cf57a8.tar.gz serverdata-86cfad9a26d76772af47e4222a803d6726cf57a8.tar.bz2 serverdata-86cfad9a26d76772af47e4222a803d6726cf57a8.tar.xz serverdata-86cfad9a26d76772af47e4222a803d6726cf57a8.zip |
If Andrei Sakar dies... Well, then he is dead?
Game World should react at least a bit to this fact.
Diffstat (limited to 'npc/029-0')
-rw-r--r-- | npc/029-0/elora.txt | 2 | ||||
-rw-r--r-- | npc/029-0/sakar.txt | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/npc/029-0/elora.txt b/npc/029-0/elora.txt index 4bbafdd27..3ca707244 100644 --- a/npc/029-0/elora.txt +++ b/npc/029-0/elora.txt @@ -52,6 +52,8 @@ OnInit: .distance=5; .sex=G_FEMALE; + if ($FIRESOFSTEAM >= 10) + disablenpc .name$; end; } diff --git a/npc/029-0/sakar.txt b/npc/029-0/sakar.txt index 2373698a5..eac3dcc18 100644 --- a/npc/029-0/sakar.txt +++ b/npc/029-0/sakar.txt @@ -26,12 +26,14 @@ close; OnInit: .distance=5; + if ($FIRESOFSTEAM >= 10) + setnpcdisplay("Andrei Sakar#FoS298", "Elora#FoS298", NPC_HUMAN_FEMALE_NOOB); end; } 029-0,88,33,0 script Andrei Sakar#FoS290 NPC_ANDREI,{ function prologue; - if (!FIRESOFSTEAM_CD) + if (!FIRESOFSTEAM_CD && $FIRESOFSTEAM < 10) prologue(); mesn; mesq l("Do you want to advance?"); @@ -78,6 +80,8 @@ function prologue { OnInit: .distance=5; + if ($FIRESOFSTEAM >= 10) + setnpcdisplay("Andrei Sakar#FoS290", "Elora#FoS290", NPC_HUMAN_FEMALE_NOOB); end; } |