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

CloudAIO v16[IAC] v5.4 *FINAL* I Will no longer...


  • This topic is locked This topic is locked
513 replies to this topic

#41
vhdasilva

vhdasilva

    Advanced Member

  • Members
  • 46 posts

Still not show in menu :(

I9wnc14.jpg?1


  • 0

#42
Cloud

Cloud

    KAPPA

  • Ex-Staff
  • PipPipPip
  • 1,498 posts

Still not show in menu :(

I9wnc14.jpg?1

Did you get the newest version of Inspired lib just in case download it today. Which champion are you using? 


  • 0

#43
vhdasilva

vhdasilva

    Advanced Member

  • Members
  • 46 posts

It all newest version, i play ekko


  • 0

#44
LeagueAsh

LeagueAsh

    Member

  • Members
  • 22 posts

yea the q pred still doen's work for me :(


  • 0

#45
Cloud

Cloud

    KAPPA

  • Ex-Staff
  • PipPipPip
  • 1,498 posts

yea the q pred still doen's work for me :(

K checking it out right now.


  • 0

#46
Cloud

Cloud

    KAPPA

  • Ex-Staff
  • PipPipPip
  • 1,498 posts

yea the q pred still doen's work for me :(

Seems to work for me.


  • 0

#47
SuperNova

SuperNova

    Newbie

  • Members
  • 8 posts

Don't show your menu ! Here

 

XvDHbrF.png

 

LMKi5Bt.png

 

K5xYkNO.png


  • 0

#48
vstorm2308

vstorm2308

    Newbie

  • Members
  • 9 posts

nidalee still doesn't show up the menu


  • 0

#49
lightout

lightout

    Newbie

  • Members
  • 7 posts

Nothing happened! I cannot load this script :v!


  • 0

#50
x4x0r1337

x4x0r1337

    Advanced Member

  • Members
  • 44 posts

Ekko not work good ........


  • 0

#51
Maxxxel

Maxxxel

    The One

  • Scripts Developer
  • 1,196 posts
  • LocationGuess the right City to win 10$

Just a question what is your op kill logic on syndra ive checked and dont see any dmg calcs.


  • 0

#52
Cloud

Cloud

    KAPPA

  • Ex-Staff
  • PipPipPip
  • 1,498 posts

Just a question what is your op kill logic on syndra ive checked and dont see any dmg calcs.

Working on it.

 

Don't show your menu ! Here

 

XvDHbrF.png

 

LMKi5Bt.png

 

K5xYkNO.png

Put require('CloudAIO') before pcall also download the very latest Inspired.


  • 0

#53
vstorm2308

vstorm2308

    Newbie

  • Members
  • 9 posts

Working on it.

 

Put require('CloudAIO') before pcall also download the very latest Inspired.

Just still the same, notthing happen. I play Nidalee


  • 0

#54
fullze

fullze

    Member

  • Members
  • 18 posts

The menu does not show up.. Playing Nida


  • 0

#55
alexyx

alexyx

    Member

  • Members
  • 20 posts

Where i can get what i need? i mean CLOUDAIO IAC AND ETC?


  • 0

#56
Cloud

Cloud

    KAPPA

  • Ex-Staff
  • PipPipPip
  • 1,498 posts

I have noticed an error in CloudAIO and am currently working on the problem.


  • 1

#57
Chungus

Chungus

    Advanced Member

  • Members
  • 128 posts
  • LocationLithuania

you forgot to add the download link,i would really like to test nida script and give some feedbacks, score of my games with your sciprt , waiting for dl link!


  • 0

#58
lightout

lightout

    Newbie

  • Members
  • 7 posts

Old script nidalee of Cloud i'm using, save as Nidalee.lua in common folder!

 

 

 
--Menu
Config = scriptConfig("Nidalee", "Nidalee.lua")
Config.addParam("Q", "Use Q", SCRIPT_PARAM_ONOFF, true)
Config.addParam("W", "Use W", SCRIPT_PARAM_ONOFF, true)
Config.addParam("E", "Use E", SCRIPT_PARAM_ONOFF, true)
Config.addParam("R", "Use R", SCRIPT_PARAM_ONOFF, true)
Config.addParam("Q2", "Use Q2", SCRIPT_PARAM_ONOFF, true)
Config.addParam("W2", "Use W2", SCRIPT_PARAM_ONOFF, true)
Config.addParam("E2", "Use E2", SCRIPT_PARAM_ONOFF, true)
--Start
OnLoop(function(myHero)
AutoIgnite()
if IWalkConfig.Combo then
local unit = GetCurrentTarget()
if ValidTarget(unit, 1500) then
 
-- Nidalee Human Trap
if GetCastName(myHero, _W) == "Bushwhack" then
local WPred = GetPredictionForPlayer(GetMyHeroPos(),unit,GetMoveSpeed(unit),1700,250,900,50,true,true)
if Config.W then
if CanUseSpell(myHero, _W) == READY and WPred.HitChance == 1 then
CastSkillShot(_W,WPred.PredPos.x,WPred.PredPos.y,WPred.PredPos.z)
end
end
end
-- Nidalee human spear
if GetCastName(myHero, _Q) == "JavelinToss"then
-- GetPredictionForPlayer(startPosition, targetUnit, targetUnitMoveSpeed, spellTravelSpeed, spellDelay, spellRange, spellWidth, collision, addHitBox)
local QPred = GetPredictionForPlayer(GetMyHeroPos(),unit,GetMoveSpeed(unit),1600,250,1500,55,true,true)
if Config.Q then
if CanUseSpell(myHero, _Q) == READY and QPred.HitChance == 1 then
CastSkillShot(_Q,QPred.PredPos.x,QPred.PredPos.y,QPred.PredPos.z)
end
end
end
-- Nidalee human heal
if GetCastName(myHero, _E) == "PrimalSurge" then
if Config.E then
if CanUseSpell(myHero, _E) == READY then
CastTargetSpell(myHero, _E)
end
end
end
-- Tansform to cougar
if GetCastName(myHero, _R) == "AspectOfTheCougar" then
if Config.R then
if unit ~= nil then
if CanUseSpell(myHero, _R) == READY and CanUseSpell(myHero, _W) ~= READY and CanUseSpell(myHero, _Q) ~= READY and IsInDistance(unit, 750) then
CastTargetSpell(myHero, _R)
end
end
end
end
-- Cougar attack Q
if GetCastName(myHero, _Q) == "Takedown" then
if Config.Q2 then
if CanUseSpell(myHero, _Q) == READY and IsInDistance(unit, 475) then
CastTargetSpell(unit, _Q)
end
end
end
-- Cougar pounce W
if GetCastName(myHero, _W) == "Pounce" then
if Config.W2 then
if CanUseSpell(myHero, _W) == READY and IsInDistance(unit, 375) then
CastTargetSpell(unit, _W)
end
end
end
-- E cast in cougar form
if GetCastName(myHero, _E) == "Swipe" then
if Config.E2 then
if CanUseSpell(myHero, _E) == READY and IsInDistance(unit, 300) then
CastTargetSpell(unit, _E)
end
end
end
-- Transform back
if GetCastName(myHero, _R) == "AspectOfTheCougar" then
if Config.R then
if unit ~= nil then
if CanUseSpell(myHero, _R) == READY and CanUseSpell(myHero, _W) ~= READY and CanUseSpell(myHero, _Q) ~= READY then
CastSpell(_R)
end
end
end
end
 
end
end
end)

  • 0

#59
Cloud

Cloud

    KAPPA

  • Ex-Staff
  • PipPipPip
  • 1,498 posts

you forgot to add the download link,i would really like to test nida script and give some feedbacks, score of my games with your sciprt , waiting for dl link!

Wait for me to fix the errors. Also 5.15


  • 0

#60
Cloud

Cloud

    KAPPA

  • Ex-Staff
  • PipPipPip
  • 1,498 posts

CloudAIO updated if you get Iwalk error just click ok and the script will work just fine.


  • 0




2 user(s) are reading this topic

0 members, 2 guests, 0 anonymous users