Redownload inspired and IWalk. because nothing in this script uses IWalk
Login to Account Create an Account
#61
Posted 27 July 2015 - 08:33
#62
Posted 27 July 2015 - 08:35
Redownload inspired and IWalk. because nothing in this script uses IWalk
testscript1.lua
require('Inspired') require('IWalk') require('twgank') require('Lee') pcall( require, GetObjectName(GetMyHero()) )
I have require, but when i put Ryze script, WORK PERFECTLy.. When i put your script , ERRORS !!
So..?? Something wrong in u..
#63
Posted 27 July 2015 - 09:03
testscript1.lua
require('Inspired') require('IWalk') require('twgank') require('Lee') pcall( require, GetObjectName(GetMyHero()) )I have require, but when i put Ryze script, WORK PERFECTLy.. When i put your script , ERRORS !!
So..?? Something wrong in u..
It works with everybody else but less with you... If you havê team viewer send me your id and ill make it work
#64
Posted 27 July 2015 - 09:10
It works with everybody else but less with you... If you havê team viewer send me your id and ill make it work
I send you TeamViewer ID, via PM ..
#65
Posted 27 July 2015 - 09:18
i just tested this code it's amazing however, if you go up against another lee sin who has the same exact scrips and you have no runes ur gonna get butt raped. just a heads up lel
#66
Posted 27 July 2015 - 11:55
edit fixed
#67
Posted 28 July 2015 - 12:49
ok now i have a problem, can click is nothing in the menu
EDIT: ok now works
with your POST
That Code is OutDATED! use this one, but i put this code in testscript1.lua and delete twgank.lua
than works only that.
require('Inspired') minionTable = {} --wardTable = {} --ver 1.0.0.2, added GetCloserIsnecToMinion --api 0.0.4 --Made by TheWelder --ItemGhostWard aka sightstone 2049 --sightward aka ward 2044 Config = scriptConfig("leesin", "LeStar:") 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("Combo", "Combo", SCRIPT_PARAM_KEYDOWN, string.byte(" ")) OnLoop(function(myHero) local myHero = GetMyHero() local myHeroPos = GetOrigin(myHero) local champName = GetObjectName(myHero) local target = GetCurrentTarget() local targetPos = GetOrigin(target) local allDMG = GetBonusDmg(myHero)+GetBaseDamage(myHero) local perc90 = (allDMG*90)/100 local Qdmg = (GetCastLevel(myHero,_Q)*30)+50+perc90 local Edmg =(GetCastLevel(myHero,_E)*35)+25+allDMG local Rdmg = (GetCastLevel(myHero,_R)*200)+(allDMG*2) local minionPos = GetOrigin(minion) local hero_origin = myHeroPos local targetPos = GetOrigin(target) --local ward1 = GetItemSlot(myHero,2045),GetItemSlot(myHero,2044),GetItemSlot(myHero,2049),GetItemSlot(myHero,2043) if champName == "LeeSin" then DrawText(string.format("%s LeStar", GetObjectName(myHero)),24,750,50,0xff00ff00); --if KeyIsDown(0x20) and IsObjectAlive(target) then if Config.Combo and IsObjectAlive(target) then if Config.Q then if ValidTarget(target,1000) then local FQpred = GetPredictionForPlayer(myHeroPos,target,GetMoveSpeed(target),2000,250,900,50,true,true) if CanUseSpell(myHero,_Q) == READY and FQpred.HitChance == 1 then CastSkillShot(_Q,FQpred.PredPos.x,FQpred.PredPos.y,FQpred.PredPos.z) CastTargetSpell(target,GetItemSlot(myHero,3153)) CastTargetSpell(target,GetItemSlot(myHero,3144)) end end end if Config.E then if ValidTarget(target,350) then local FQpred = GetPredictionForPlayer(myHero,target,GetMoveSpeed(target),2000,250,350,50,true,true) if CanUseSpell(myHero,_E) == READY then CastSkillShot(_E,FQpred.PredPos.x,FQpred.PredPos.y,FQpred.PredPos.z) CastTargetSpell(target,GetItemSlot(myHero,3077)) CastTargetSpell(target,GetItemSlot(myHero,3074)) CastTargetSpell(target,GetItemSlot(myHero,3143)) end end end if Config.W then if IsInDistance(target,1300) and IsObjectAlive(target) then --if GetDistance(minion,target) < GetDistance(myHero,target) and GetDistance(myHero,target) > 200 then local minion = XlosestMinion(myHeroPos,MINION_ALLY) if minion and GetOrigin(minion) ~= nil then if GetDistance(minion,target) < GetDistance(myHero,target) and GetDistance(myHero,target) > 200 then if CanUseSpell(myHero,_W) == READY then CastTargetSpell(minion,_W) end end end else if GetDistance(myHero,target) < 200 then if CanUseSpell(myHero,_W) == READY then CastTargetSpell(myHero,_W) end end end end if Config.R then if ValidTarget(target,375) then if CalcDamage(myHero, target, Rdmg) > GetCurrentHP(target) + GetHPRegen(target) then if CanUseSpell(myHero,_R) == READY then CastTargetSpell(target,_R) end end end end end else DrawText(string.format("%s not suported", GetObjectName(myHero)),24,750,50,0xffffff00) end end) --[[OnProcessSpell(function(target,spell) if target and target == myHero and spell then if spell.name:lower():find("itemghostward") then waitTickCount = GetTickCount() + 13500 end end end)]] --Credits to Inspired function XlosestMinion(pos, team) local minion = nil for k,v in pairs(GetAllMinions()) do local objTeam = GetTeam(v) if not minion and v and objTeam == team then minion = v end if minion and v and objTeam == team and GetDistanceSqr(GetOrigin(minion),pos) > GetDistanceSqr(GetOrigin(v),pos) then minion = v end end return minion end function GetAllMinions(team) local result = {} for _,k in pairs(minionTable) do if k and not IsDead(k) then if not team or GetTeam(k) == team then result[_] = k end else minionTable[_] = nil end end return result end
#68
Posted 28 July 2015 - 04:57
#69
Posted 28 July 2015 - 11:11
v12?
#70
Posted 28 July 2015 - 11:27
many bugs please just check before release the update and thank u in advance
cause i never use it or u can say not work for me atm
#71
Posted 28 July 2015 - 12:02
many bugs please just check before release the update and thank u in advance
cause i never use it or u can say not work for me atm
Ive fixed it.
and everybody that complained about "your script doesnt work" i helped them by teamViwer and guess what? Nothing to do with the script just wrong configurations. Please go read how to install the testscript1.lua or make sure you read all the main thread of LeStar before posting something like this. And most important do not change any line of code, if i done it that way its because its ment to be that way
#72
Posted 28 July 2015 - 01:46
i try but failed i can no install successful the twgank and other stuff
only one script
#73
Posted 28 July 2015 - 02:01
tnx bro!!!! the other testscript1.lua files i put it into other place C:\Users\Peregrine\AppData\Roaming\GamingOnSteroids\LOL this folder i put i delete in the common folder leestar.lua!!! and follow instruction and 100% working successfully!!! tnx
#74
Posted 28 July 2015 - 02:35
tnx bro!!!! the other testscript1.lua files i put it into other place C:\Users\Peregrine\AppData\Roaming\GamingOnSteroids\LOL this folder i put i delete in the common folder leestar.lua!!! and follow instruction and 100% working successfully!!! tnx
see? np dude enjoy it
#75
Posted 28 July 2015 - 02:40
i'm gonna test it now i'll reply in few sec
#76
Posted 28 July 2015 - 02:52
i'm gonna test it now i'll reply in few sec
don't forget to leave feed back and upvote when it works, it's a good script !
#77
Posted 28 July 2015 - 02:58
wooow really great lee but what the logic behind second q and w on minion or ally on ganks ??
#78
Posted 28 July 2015 - 03:01
wooow really great lee but what the logic behind second q and w on minion or ally on ganks ??
dont need any Q == READY? then cast, E == READY? then cast again. W == READY and Target in range? then get a minion/ward and get closer
#79
Posted 28 July 2015 - 03:06
really amazed but how about insec and ward jump would be the best lee if included
#80
Posted 28 July 2015 - 03:07
u got +1
Also tagged with one or more of these keywords: leesin, sin, lee, blind, monk, le, star, lestar, thewelder, welder
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users