diff options
author | gumi <mekolat@users.noreply.github.com> | 2017-03-09 10:58:57 -0500 |
---|---|---|
committer | gumi <mekolat@users.noreply.github.com> | 2017-04-18 15:37:43 -0400 |
commit | 60b1a31b3d190cce795cd015d054ce4da097503b (patch) | |
tree | 87167389ccd716e60e62f5b480952afa9bf961f6 | |
parent | e80f321d70e989cadc7bae6ed587a5f799a47ced (diff) | |
download | serverdata-60b1a31b3d190cce795cd015d054ce4da097503b.tar.gz serverdata-60b1a31b3d190cce795cd015d054ce4da097503b.tar.bz2 serverdata-60b1a31b3d190cce795cd015d054ce4da097503b.tar.xz serverdata-60b1a31b3d190cce795cd015d054ce4da097503b.zip |
make the flying piou do a sound on clicks20170419
-rw-r--r-- | npc/001-1/flyingpiou.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/001-1/flyingpiou.txt b/npc/001-1/flyingpiou.txt index 06240b9d..49abe4b8 100644 --- a/npc/001-1/flyingpiou.txt +++ b/npc/001-1/flyingpiou.txt @@ -60,6 +60,7 @@ function script ArtisFlyingPiouLogic { { message strcharinfo(0), l("Dang, I scared it! More patience, @@, more patience.", strcharinfo(0)); .LastTimeTouched = .@tick; + specialeffect2 33, SELF; end; } @@ -80,7 +81,8 @@ function script ArtisFlyingPiouLogic { set getvariableofnpc(.LastPiouHunterID, .@trader$), .@charid; set getvariableofnpc(.PiouCaught, .@trader$), 1; donpcevent .@trader$ + "::OnPiouFlee"; - next; + specialeffect2 26, SELF; + close2; disablenpc strnpcinfo(3); close; } @@ -91,6 +93,7 @@ function script ArtisFlyingPiouLogic { message strcharinfo(0), .RandomFailureMessages$[.@r]; .speed = max(140, 200 - 10 * (@ArtisQuests_CatchPiouTries + ArtisQuests_CatchPiou_Difficulcy)); + specialeffect2 33, SELF; } end; |