deleted
Login to Account Create an Account

#1
Posted 31 July 2015 - 11:41

#2
Posted 31 July 2015 - 11:43

Best vlad script so far , glad to have you in this community
#3
Posted 31 July 2015 - 12:01

Good script
#4
Posted 31 July 2015 - 04:06

Best vlad script so far , glad to have you in this community
Good script
ty guys please post here you're scores with this script
#5
Posted 31 July 2015 - 08:35

for me is not working, maybe you can help me.
When i press "Space" doing Vladi nothing (i listen only a error signal)
i know how your scripts to work, you explain me
but maybe i have a fault, here my screenshot
i use the new files from here: [Script Loader] Inspired.lua + IAC + Scripts ---- v14
and new twgank from your site....
and that my testscript1.lua
require('Inspired') require('twgank') local info = "VladiFukFest Loaded" local upv = "If you like UpVote!" local sig = "Made by TheWelder" local ver = "1.0.0.1 31/07/2015 12:22AM" textTable = {info,upv,sig,ver} PrintChat(textTable[1]) PrintChat(textTable[2]) PrintChat(textTable[3]) PrintChat(textTable[4]) Config = scriptConfig("vladimir", "VladiFukFest") 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 target = GetCurrentTarget() local myHeroPos = GetOrigin(myHero) if "Vladimir" == GetObjectName(myHero) then DrawText(string.format("VladiFukFest %s", GetObjectName(myHero)),24,750,50,0xff00ff00); DrawDmgOverHpBar(target,GetCurrentHP(target),120,60,0xffffffff); if Config.Combo and IsObjectAlive(target) then if ValidTarget(target, 600) then if Config.Q then if CanUseSpell(myHero, _Q) == READY then CastTargetSpell(myHero,_Q) end end end if ValidTarget(target, 150) then if Config.W then if CanUseSpell(myHero, _W) == READY then CastTargetSpell(myHero,_W) end end end if ValidTarget(target, 610) then if Config.E then if CanUseSpell(myHero, _E) == READY then CastTargetSpell(myHero,_E) end end end if ValidTarget(target,700) then if Config.R then local Rdmg = (CastLevel(myHero,_R)*112+56)+(GetBonusAP(myHero)*0.78) local RPred = GetPredictionForPlayer(myHeroPos, target,GetMoveSpeed(target),1875,250,700,55,true,true) if CanUseSpell(myHero, _R) == READY and RPred.HitChance == 1 then if CalcDamage(myHero, target, Rdmg) > GetCurrentHP(target) + GetHPRegen(target)*5 then CastSkillShot(_R,RPred.PredPos.x,RPred.PredPos.y,RPred.PredPos.z) end end end end end else DrawText(string.format("%s not suported", GetObjectName(myHero)),24,750,50,0xffffff00) end end)
#6
Posted 31 July 2015 - 08:35

http://prntscr.com/7zdbs9 solution ? please help!!
#7
Posted 31 July 2015 - 09:24

yo mate, we neame the lua VladiFukFest.lua ? also do we need to put require('VladiFukFest') in testscript ?
#8
Posted 31 July 2015 - 09:42

getting an error in game its a cast level error ? any ideas ?
#9
Posted 31 July 2015 - 09:48

jeah me too, i think the reason is...
TheWelder need update this code because the -Inspired.lua is updated....
#10
Posted 31 July 2015 - 09:52

ahh damn
#11
Posted 31 July 2015 - 11:43

for me is not working, maybe you can help me.
When i press "Space" doing Vladi nothing (i listen only a error signal)
i know how your scripts to work, you explain me
but maybe i have a fault, here my screenshot
i use the new files from here: [Script Loader] Inspired.lua + IAC + Scripts ---- v14
and new twgank from your site....
and that my testscript1.lua
require('Inspired') require('twgank') local info = "VladiFukFest Loaded" local upv = "If you like UpVote!" local sig = "Made by TheWelder" local ver = "1.0.0.1 31/07/2015 12:22AM" textTable = {info,upv,sig,ver} PrintChat(textTable[1]) PrintChat(textTable[2]) PrintChat(textTable[3]) PrintChat(textTable[4]) Config = scriptConfig("vladimir", "VladiFukFest") 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 target = GetCurrentTarget() local myHeroPos = GetOrigin(myHero) if "Vladimir" == GetObjectName(myHero) then DrawText(string.format("VladiFukFest %s", GetObjectName(myHero)),24,750,50,0xff00ff00); DrawDmgOverHpBar(target,GetCurrentHP(target),120,60,0xffffffff); if Config.Combo and IsObjectAlive(target) then if ValidTarget(target, 600) then if Config.Q then if CanUseSpell(myHero, _Q) == READY then CastTargetSpell(myHero,_Q) end end end if ValidTarget(target, 150) then if Config.W then if CanUseSpell(myHero, _W) == READY then CastTargetSpell(myHero,_W) end end end if ValidTarget(target, 610) then if Config.E then if CanUseSpell(myHero, _E) == READY then CastTargetSpell(myHero,_E) end end end if ValidTarget(target,700) then if Config.R then local Rdmg = (CastLevel(myHero,_R)*112+56)+(GetBonusAP(myHero)*0.78) local RPred = GetPredictionForPlayer(myHeroPos, target,GetMoveSpeed(target),1875,250,700,55,true,true) if CanUseSpell(myHero, _R) == READY and RPred.HitChance == 1 then if CalcDamage(myHero, target, Rdmg) > GetCurrentHP(target) + GetHPRegen(target)*5 then CastSkillShot(_R,RPred.PredPos.x,RPred.PredPos.y,RPred.PredPos.z) end end end end end else DrawText(string.format("%s not suported", GetObjectName(myHero)),24,750,50,0xffffff00) end end)
http://prntscr.com/7zdbs9 solution ? please help!!
getting an error in game its a cast level error ? any ideas ?
Can someone confirm if its working now please? i do not own vladi
#12
Posted 01 August 2015 - 08:32

yo mate . what should the testscript look like ? also ive named the lua Vladimir.lua is that correct ?
#13
Posted 01 August 2015 - 08:43

nvm just realised its different to the other way of loading scripts im still new to all this
its working great for me atm, only thing is it hasnt ulti yet, whats the condition for using ult ? lvl 8 atm in a custon game vs wukong in mid and it hasnt used it at all and ive got 2 kills off him so far
#14
Posted 01 August 2015 - 11:57

nvm just realised its different to the other way of loading scripts
im still new to all this
its working great for me atm, only thing is it hasnt ulti yet, whats the condition for using ult ? lvl 8 atm in a custon game vs wukong in mid and it hasnt used it at all and ive got 2 kills off him so far
if Rdmg is > than Target HP he will ulti
#15
Posted 01 August 2015 - 12:58

ahh ok cool
#16
Posted 01 August 2015 - 04:16

ahh ok cool
feel free to Upvote if you liked
#17
Posted 01 August 2015 - 07:42

feel free to Upvote if you liked
if i had a clue how to i would
#18
Posted 02 August 2015 - 03:34

i try the vladimir boss but there's an error up loop!! when i press space bar something it hang and i release it back to normal!!!
#19
Posted 02 August 2015 - 11:53

Updated now suports script loader and IAC.
#20
Posted 03 August 2015 - 05:21

cant find the link wher is it pls :'(
Also tagged with one or more of these keywords: the, welder, thewelder, vladi, vladimir, vladifukfest
2 user(s) are reading this topic
0 members, 2 guests, 0 anonymous users