mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-24 21:57:44 +00:00
19 lines
223 B
ChaiScript
19 lines
223 B
ChaiScript
![]() |
// Skill Name: Sprint
|
||
|
// Skill ID: 3
|
||
|
|
||
|
class skillDef_6Def
|
||
|
{
|
||
|
def skillDef_6Def()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
def onFinish( player, target )
|
||
|
{
|
||
|
player.returnToHomepoint();
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
GLOBAL skillDef_6 = skillDef_6Def();
|