Jump to content

Welcome to Gaming On Steroids Forums
Register now to gain access to all of our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, post status updates, manage your profile and so much more. This message will be removed once you have signed in.
Login to Account Create an Account
Photo

Requesting functions that welded with loader itself!


  • Please log in to reply
No replies to this topic

#1
Inferno

Inferno

    Advanced Member

  • Contributor
  • 217 posts
Do next functions:

OnCombo(function() end)
OnLaneClear(function() end)
OnHarass(function() end)
OnLastHit(function() end)


Those functions must be each time the original key is pressed, regardless of "Enabled HarassCombo" checkbox!
harasscombo.jpg

Also, it should look like that (in loader)
lua-interpreted
function Combo()
  Do_Every_OnCombo_function_if_there_any
  Call_Orbwalk()
end
So if we do this:
OnCombo(function() CastSpell(_W) end)
OnCombo(function() CastSpell(_E) end)
function should do this:
function Combo()
  --
  CastSpell(_W)
  --
  CastSpell(_E)
  --
  Call_Orbwalk()
end
Also it is a good idea to do something like 'SetOrbwalk(function)' function, so it can replace standart orbwalker.

Of course, if there is no OnCombo lua things and there is no custom orbwalker, then you can use standart QWER mechanics that is already implemented.
  • 0




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users