mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-22 12:47:45 +00:00
18 lines
223 B
ChaiScript
18 lines
223 B
ChaiScript
// Skill Name: Return
|
|
// Skill ID: 6
|
|
|
|
class skillDef_6Def
|
|
{
|
|
def skillDef_6Def()
|
|
{
|
|
|
|
}
|
|
|
|
def onFinish( player, target )
|
|
{
|
|
player.returnToHomepoint();
|
|
}
|
|
|
|
};
|
|
|
|
GLOBAL skillDef_6 = skillDef_6Def();
|