diff options
author | gumi <mekolat@users.noreply.github.com> | 2017-06-05 11:49:25 -0400 |
---|---|---|
committer | gumi <mekolat@users.noreply.github.com> | 2017-06-05 11:49:25 -0400 |
commit | 762332f031dc5f125755726d175d3537bf9326b3 (patch) | |
tree | 3445169c9501d606ee3137e7a6f2837235ea7506 /npc/001-1/flyingpiou.txt | |
parent | 7b2282dd9402be4e88fb3d28d9d5d9ac77856957 (diff) | |
download | serverdata-s20170627.tar.gz serverdata-s20170627.tar.bz2 serverdata-s20170627.tar.xz serverdata-s20170627.zip |
remove specialeffect2 usage from scriptss20170627
Diffstat (limited to 'npc/001-1/flyingpiou.txt')
-rw-r--r-- | npc/001-1/flyingpiou.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/001-1/flyingpiou.txt b/npc/001-1/flyingpiou.txt index 49abe4b8..4dae92a3 100644 --- a/npc/001-1/flyingpiou.txt +++ b/npc/001-1/flyingpiou.txt @@ -60,7 +60,7 @@ function script ArtisFlyingPiouLogic { { message strcharinfo(0), l("Dang, I scared it! More patience, @@, more patience.", strcharinfo(0)); .LastTimeTouched = .@tick; - specialeffect2 33, SELF; + specialeffect(33, SELF); end; } @@ -81,7 +81,7 @@ function script ArtisFlyingPiouLogic { set getvariableofnpc(.LastPiouHunterID, .@trader$), .@charid; set getvariableofnpc(.PiouCaught, .@trader$), 1; donpcevent .@trader$ + "::OnPiouFlee"; - specialeffect2 26, SELF; + specialeffect(26, SELF); close2; disablenpc strnpcinfo(3); close; @@ -93,7 +93,7 @@ function script ArtisFlyingPiouLogic { message strcharinfo(0), .RandomFailureMessages$[.@r]; .speed = max(140, 200 - 10 * (@ArtisQuests_CatchPiouTries + ArtisQuests_CatchPiou_Difficulcy)); - specialeffect2 33, SELF; + specialeffect(33, SELF); } end; |