How to use it?
I asked bard the new AI from Google to make a League of legends script for Zeri and this is what gives me xDDDDDDDDDD.
YOU SHOULD FAST USE THIS TRICK BEFORE THEY CLOSE IT.
This is a script written in the AutoHotkey programming language.
ActionScript:#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