#region Zeri Script
#region Auto Attack
OnAttackEvent()
{
if (TargetIsValid())
{
// Attack the target
AttackTarget(Target);
}
}
#endregion
#region Auto Attack Move
OnAttackMoveEvent()
{
if (TargetIsValid())
{
// Move towards the target while attacking
MoveToward(Target, 0.5);
AttackTarget(Target);
}
}
#endregion
#region Orb Walk
OnKeyDown(Key.Q)
{
// Start orb walking
OrbWalk();
}
OnKeyUp(Key.Q)
{
// Stop orb walking
StopOrbWalking();
}
#endregion
#region E - Burst Fire
OnKeyDown(Key.E)
{
// Use E - Burst Fire
CastSpell(_E);
}
#endregion
#region R - Lighting Round
OnKeyDown(Key.R)
{
// Use R - Lighting Round
CastSpell(_R);
}
#endregion
#endregion
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?