summaryrefslogtreecommitdiff
path: root/doc/script_commands.txt
diff options
context:
space:
mode:
authorgumi <mekolat@users.noreply.github.com>2017-06-03 12:49:04 -0400
committergumi <mekolat@users.noreply.github.com>2017-06-03 12:57:39 -0400
commit53c6feb18fb994516945901853d845cdc5e27529 (patch)
treeba5df37131af6bac76664988befb064b8aa3cb3d /doc/script_commands.txt
parent2d241c23d89be5810d2bf51c28ad76084bf95182 (diff)
downloadhercules-53c6feb18fb994516945901853d845cdc5e27529.tar.gz
hercules-53c6feb18fb994516945901853d845cdc5e27529.tar.bz2
hercules-53c6feb18fb994516945901853d845cdc5e27529.tar.xz
hercules-53c6feb18fb994516945901853d845cdc5e27529.zip
flag specialeffect2() as deprecated
Diffstat (limited to 'doc/script_commands.txt')
-rw-r--r--doc/script_commands.txt15
1 files changed, 9 insertions, 6 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt
index c11ee29a9..a7eb55073 100644
--- a/doc/script_commands.txt
+++ b/doc/script_commands.txt
@@ -5857,13 +5857,16 @@ Example usage:
*specialeffect2(<effect number>{, <send_target>{, "<Player Name>"}})
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
+ @ /!\ This command is deprecated @
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
+
This command behaves identically to the specialeffect(), but the effect
will be centered on the invoking character's sprite.
-<Player name> parameter will display <effect number> on another Player
-than the one currently attached to the script. Like with specialeffect(),
-when specifying a player, <send_target> must be supplied, specifying AREA
-will retain the default behavior of the command.
+This command is deprecated and it should not be used in new scripts, as it is
+likely to be removed at a later time. Please use specialeffect instead,
+ie: specialeffect(<effect number>, <send_target>, playerattached())
---------------------------------------
@@ -5963,7 +5966,7 @@ target in autobonus() and autobonus3()).
//Grants a 1% chance of starting the state "all stats +10" for 10 seconds
//when using weapon or misc attacks (both melee and ranged skills) and
//shows a special effect when the bonus is active.
- autobonus("{ bonus(bAllStats, 10); }", 10, 10000, BF_WEAPON|BF_MISC, "{ specialeffect2(EF_FIRESPLASHHIT); }");
+ autobonus("{ bonus(bAllStats, 10); }", 10, 10000, BF_WEAPON|BF_MISC, "{ specialeffect(EF_FIRESPLASHHIT, AREA, playerattached()); }");
---------------------------------------
@@ -7766,7 +7769,7 @@ OnInit:
bindatcmd("test", strnpcinfo(NPC_NAME_UNIQUE)+"::OnAtcommand");
end;
OnAtcommand:
- specialeffect2(EF_ANGEL2);
+ specialeffect(EF_ANGEL2, AREA, playerattached());
end;
}