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

#21
Cloud

Cloud

    KAPPA

  • Ex-Staff
  • PipPipPip
  • 1,498 posts

I need some lib or program to work?

Inspired bundle with IAC and in testscript1.lua add require('CloudAIO')


  • 0

#22
vstorm2308

vstorm2308

    Newbie

  • Members
  • 9 posts

Help me pls :( i've put

require('Inspired')
require('IAC')
require('CloudAIO')

But it's still nothing :(

7U048fM.jpg


  • 0

#23
GsYcBR

GsYcBR

    Member

  • Members
  • 18 posts

ty nice ^^


  • 0

#24
parad0x

parad0x

    Advanced Member

  • Contributor
  • 163 posts

Help me pls :( i've put

require('Inspired')
require('IAC')
require('CloudAIO')

But it's still nothing :(

7U048fM.jpg

Idem


  • 0

#25
vstorm2308

vstorm2308

    Newbie

  • Members
  • 9 posts

Idem

i don't understand ..


  • 0

#26
parad0x

parad0x

    Advanced Member

  • Contributor
  • 163 posts

i don't understand ..

I Quot your SS, i have the same problem.


  • 0

#27
WizKalibog

WizKalibog

    Advanced Member

  • Members
  • 174 posts
  • LocationSA PILIPINAS KONG MINAMAHAL

no menu :3 why not show the menu :D


  • 0

#28
Javier

Javier

    Advanced Member

  • Members
  • 67 posts
  • LocationHue - VietNam

- Nidalee Script not work!


  • 0

#29
Cloud

Cloud

    KAPPA

  • Ex-Staff
  • PipPipPip
  • 1,498 posts

- Nidalee Script not work!

Working on it.


  • 0

#30
x4x0r1337

x4x0r1337

    Advanced Member

  • Members
  • 44 posts

Any Fixes on Ekko ???


  • 0

#31
Maxxxel

Maxxxel

    The One

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

Syndra Update by me if u like:

 

errors to fix by you: Ulti function u write CastTargetSpell(myHero, _R) have to be CastTargetSpell(unit, _R) to cast it on enemies.

ive added a Stun Combo (Q-E) with hotkey here is the code to add:

 

First line to add after "Config.addParam("R", "Use R", SCRIPT_PARAM_ONOFF, true)":

Config.addParam("Stun", "Press to Stun", SCRIPT_PARAM_KEYDOWN, string.byte("Q"))

Add anywhere in the Script:

local unit = GetCurrentTarget()
local myHeroPos = GetOrigin(myHero)
DrawCircle(myHeroPos.x,myHeroPos.y,myHeroPos.z,1200,2,0,0xffff0000)
	if Config.Stun then
		if ValidTarget(unit,1200) then
			local timea
			local distanceStun=0
			if timea~=nil and CanUseSpell(myHero, _Q) ~= READY and CanUseSpell(myHero, _E) ~= READY then
				timea=nil
			end
		---Values---
			local enemyposition = GetPredictionForPlayer(GetMyHeroPos(),unit,GetMoveSpeed(unit),1700,250,1200,50,true,true)
			enemyposx=enemyposition.PredPos.x
			enemyposy=enemyposition.PredPos.y
			enemyposz=enemyposition.PredPos.z
			local TargetPos = Vector(enemyposx,enemyposy,enemyposz)
			if GetDistance(unit)>=700 then
				distanceStun=GetDistance(unit)-700
			end
			if GetDistance(unit)<700 then
				distanceStun=0
			end
			local firePos = TargetPos-(TargetPos-myHeroPos)*(distanceStun/GetDistance(unit)) 
			local dPredict = GetDistance(myHero,firePosPoint)
		---Values end---
			if CanUseSpell(myHero, _Q) == READY and CanUseSpell(myHero, _E) == READY and timea==nil then
				if dPredict < 1200 then
					CastSkillShot(_Q,firePos.x,0,firePos.z)
					timea = GetTickCount()
				end
			end
			if CanUseSpell(myHero, _E) == READY and timea~=GetTickCount() then
					CastSkillShot(_E,firePos.x,0,firePos.z)
			end
		end
		Move()
	end
	
	function Move()
  	local movePos = GenerateMovePos()
  	if GetDistance(GetMousePos()) > GetHitBox(myHero) then
    	MoveToXYZ(movePos.x, 0, movePos.z)
  	end
	end

What it does, while holding stun key it will do predicted stun if possible.

Did this fast cuz i needed it for a game, worked well for me.


  • 0

#32
vstorm2308

vstorm2308

    Newbie

  • Members
  • 9 posts

it still the same :(
f2f1kr8.jpg


  • 0

#33
Maxxxel

Maxxxel

    The One

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

i dont have any errors.

 

How about using the Script as mentioned?

 

Name the script CloudAIO.lua

and edit testscript1.lua with a require'CloudAIO'


  • 0

#34
vstorm2308

vstorm2308

    Newbie

  • Members
  • 9 posts

i dont have any errors.

 

How about using the Script as mentioned?

 

Name the script CloudAIO.lua

and edit testscript1.lua with a require'CloudAIO'

your script just about syndra not nidalee :(


  • 0

#35
vhdasilva

vhdasilva

    Advanced Member

  • Members
  • 46 posts

Help me pls :( i've put

require('Inspired')
require('IAC')
require('CloudAIO')

But it's still nothing :(

7U048fM.jpg

Me too :( fix pls


  • 0

#36
C3real

C3real

    Newbie

  • Members
  • 9 posts

Awesome man, thanks! 


  • 0

#37
TheOneDeage

TheOneDeage

    Advanced Member

  • Members
  • 86 posts
  • Location127.0.0.1

Just only require('CloudAIO')

not with iac and inspired?


  • 0

#38
Cloud

Cloud

    KAPPA

  • Ex-Staff
  • PipPipPip
  • 1,498 posts

Updating in a few mins errors will be fixed and all scripts should load after this.


  • 0

#39
Cloud

Cloud

    KAPPA

  • Ex-Staff
  • PipPipPip
  • 1,498 posts

Syndra Update by me if u like:

 

errors to fix by you: Ulti function u write CastTargetSpell(myHero, _R) have to be CastTargetSpell(unit, _R) to cast it on enemies.

ive added a Stun Combo (Q-E) with hotkey here is the code to add:

 

First line to add after "Config.addParam("R", "Use R", SCRIPT_PARAM_ONOFF, true)":

Config.addParam("Stun", "Press to Stun", SCRIPT_PARAM_KEYDOWN, string.byte("Q"))

Add anywhere in the Script:

local unit = GetCurrentTarget()
local myHeroPos = GetOrigin(myHero)
DrawCircle(myHeroPos.x,myHeroPos.y,myHeroPos.z,1200,2,0,0xffff0000)
	if Config.Stun then
		if ValidTarget(unit,1200) then
			local timea
			local distanceStun=0
			if timea~=nil and CanUseSpell(myHero, _Q) ~= READY and CanUseSpell(myHero, _E) ~= READY then
				timea=nil
			end
		---Values---
			local enemyposition = GetPredictionForPlayer(GetMyHeroPos(),unit,GetMoveSpeed(unit),1700,250,1200,50,true,true)
			enemyposx=enemyposition.PredPos.x
			enemyposy=enemyposition.PredPos.y
			enemyposz=enemyposition.PredPos.z
			local TargetPos = Vector(enemyposx,enemyposy,enemyposz)
			if GetDistance(unit)>=700 then
				distanceStun=GetDistance(unit)-700
			end
			if GetDistance(unit)<700 then
				distanceStun=0
			end
			local firePos = TargetPos-(TargetPos-myHeroPos)*(distanceStun/GetDistance(unit)) 
			local dPredict = GetDistance(myHero,firePosPoint)
		---Values end---
			if CanUseSpell(myHero, _Q) == READY and CanUseSpell(myHero, _E) == READY and timea==nil then
				if dPredict < 1200 then
					CastSkillShot(_Q,firePos.x,0,firePos.z)
					timea = GetTickCount()
				end
			end
			if CanUseSpell(myHero, _E) == READY and timea~=GetTickCount() then
					CastSkillShot(_E,firePos.x,0,firePos.z)
			end
		end
		Move()
	end
	
	function Move()
  	local movePos = GenerateMovePos()
  	if GetDistance(GetMousePos()) > GetHitBox(myHero) then
    	MoveToXYZ(movePos.x, 0, movePos.z)
  	end
	end

What it does, while holding stun key it will do predicted stun if possible.

Did this fast cuz i needed it for a game, worked well for me.

Thanks man will be added and credits will be given.


  • 0

#40
Cloud

Cloud

    KAPPA

  • Ex-Staff
  • PipPipPip
  • 1,498 posts

#Updated


  • 0




1 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users


    Bing (1)