1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-02 08:57:44 +00:00

More skill scripting, fixing insta cast skills for real

This commit is contained in:
amibu 2017-08-15 16:15:29 +02:00
parent 5ae9099f2b
commit 04814a3f15

View file

@ -0,0 +1,18 @@
// Skill Name: Stone
// Skill ID: 119
class skillDef_119Def
{
def skillDef_119Def()
{
}
def onFinish( player, target )
{
player.handleScriptSkill( STD_DAMAGE, 119, 30, 0, target );
}
};
GLOBAL skillDef_119 = skillDef_119Def();