-
Notifications
You must be signed in to change notification settings - Fork 17
/
LastHitHelper+.lua
2154 lines (2026 loc) · 68.9 KB
/
LastHitHelper+.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- _ _ _ _ _ _ _ _ _
-- | | __ _ ___ | |_ | | | |(_)| |_ | | | | ___ | | _ __ ___ _ __ _
-- | | / _` |/ __|| __|| |_| || || __|| |_| | / _ \| || '_ \ / _ \| '__|_| |_
-- | |___| (_| |\__ \| |_ | _ || || |_ | _ || __/| || |_) || __/| | |_ _|
-- |_____|\__,_||___/ \__||_| |_||_| \__||_| |_| \___||_|| .__/ \___||_| |_|
-- |_|
-- ==================
-- == Introduction ==
-- ==================
-- GoS script which uses your spells to farm/lasthit perfectly.
-- Actually supports 25 champions.
-- Features:
-- + LastHit [Auto/Manual]
-- * Auto - lasthits automatically
-- * Manual - lasthits by holding LaneClear key (default: V)
-- + Lasthit marker drawings
-- + Perfect calculations
-- ==================
-- == Requirements ==
-- ==================
-- + GPrediction (Use IOW or GoSWalk)
-- + Inspired
-- ===============
-- == Changelog ==
-- ===============
-- 1.1.1
-- + Corrected Ryze's E damage
-- 1.1
-- + Added Kayle, Kennen, KogMaw, LeBlanc, Malphite, Nasus, Ryze
-- 1.0.7 BETA
-- + Improved lasthit marker drawings
-- + Fixed spell casting
-- 1.0.6 BETA
-- + Removed marker for Yasuo's Q
-- 1.0.5 BETA
-- + Fixed Yasuo's Q
-- 1.0.4 BETA
-- + Added Yasuo
-- 1.0.3 BETA
-- + Added Fiddlesticks, Fizz, Gnar, Irelia, Jax, Kalista, Karthus, Kassadin, Katarina
-- + Improved damage calculations & minor functions
-- 1.0.2 BETA
-- + Improved farming (use LaneClear key, default: V)
-- + Fixed lasthit marker drawings
-- 1.0.1 BETA
-- + Added Darius, DrMundo, Ezreal
-- 1.0
-- + Initial release
-- + Imported Akali, Amumu, Anivia, Annie, Cassiopeia
-- + Imported Lasthit marker
require('Inspired')
PrintChat("<b><font color='#FFD700'>LastHitHelper+ <b><font color='#FFFF00'>v1.1")
function Mode()
if _G.IOW_Loaded and IOW:Mode() then
return IOW:Mode()
elseif GoSWalkLoaded and GoSWalk.CurrentMode then
return ({"Combo", "Harass", "LaneClear", "LastHit"})[GoSWalk.CurrentMode+1]
end
end
OnTick(function(myHero)
if Mode() == "LaneClear" then
for i,minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if GetItemSlot(myHero, 3074) >= 1 and ValidTarget(minion, 400) then
if CanUseSpell(myHero, GetItemSlot(myHero, 3074)) == READY then
local HydraTiamat = (GetBonusDmg(myHero) + GetBaseDamage(myHero)) * 0.6
if GetCurrentHP(minion) < HydraTiamat then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSpell(GetItemSlot(myHero, 3074))
end -- Ravenous Hydra
end
end
if GetItemSlot(myHero, 3077) >= 1 and ValidTarget(minion, 400) then
if CanUseSpell(myHero, GetItemSlot(myHero, 3077)) == READY then
local HydraTiamat = (GetBonusDmg(myHero) + GetBaseDamage(myHero)) * 0.6
if GetCurrentHP(minion) < HydraTiamat then
CastSpell(GetItemSlot(myHero, 3077))
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
end -- Tiamat
end
end
end
end
end
end)
-- Akali
if "Akali" == GetObjectName(myHero) then
local AkaliQ = { range = 600 }
local AkaliE = { range = 300 }
PrintChat("<font color='#F0E68C'>[<font color='#FFD700'>LastHitHelper+<font color='#F0E68C'>] <font color='#FFD700'>Akali loaded successfully!")
local AkaliLHMenu = Menu("[LH+] Akali", "[LH+] Akali")
AkaliLHMenu:Menu("Auto", "Auto")
AkaliLHMenu.Auto:Boolean('AutoQ', 'Use Q', false)
AkaliLHMenu.Auto:Boolean('AutoE', 'Use E', false)
AkaliLHMenu:Menu("Manual", "Manual")
AkaliLHMenu.Manual:Boolean('UseQ', 'Use Q', true)
AkaliLHMenu.Manual:Boolean('UseE', 'Use E', true)
OnTick(function(myHero)
if Mode() == "LaneClear" then
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if AkaliLHMenu.Manual.UseQ:Value() then
if CanUseSpell(myHero,_Q) == READY then
if ValidTarget(minion, AkaliQ.range) then
local AkaliQDmg = (20*GetCastLevel(myHero,_Q)+15)+(0.4*GetBonusAP(myHero))
if GetCurrentHP(minion) < AkaliQDmg then
BlockInput(true)
if _G.IOW then
IOW.attacksEnabled = false
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(false)
end
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastTargetSpell(minion, _Q)
BlockInput(false)
if _G.IOW then
IOW.attacksEnabled = true
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(true)
end
end
end
end
end
if AkaliLHMenu.Manual.UseE:Value() then
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, AkaliE.range) then
local AkaliEDmg = (30*GetCastLevel(myHero,_E)+40)+(0.8*GetBonusDmg(myHero))+(0.6*GetBonusAP(myHero))
if GetCurrentHP(minion) < AkaliEDmg then
BlockInput(true)
if _G.IOW then
IOW.attacksEnabled = false
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(false)
end
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSpell(_E)
BlockInput(false)
if _G.IOW then
IOW.attacksEnabled = true
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(true)
end
end
end
end
end
end
end
end
end)
OnTick(function(myHero)
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if AkaliLHMenu.Auto.AutoQ:Value() then
if CanUseSpell(myHero,_Q) == READY then
if ValidTarget(minion, AkaliQ.range) then
local AkaliQDmg = (20*GetCastLevel(myHero,_Q)+15)+(0.4*GetBonusAP(myHero))
if GetCurrentHP(minion) < AkaliQDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastTargetSpell(minion, _Q)
end
end
end
else
if CanUseSpell(myHero,_Q) == READY then
if ValidTarget(minion, AkaliQ.range) then
local AkaliQDmg = (20*GetCastLevel(myHero,_Q)+15)+(0.4*GetBonusAP(myHero))
if GetCurrentHP(minion) < AkaliQDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
end
end
end
end
end
end
end)
OnTick(function(myHero)
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if AkaliLHMenu.Auto.AutoE:Value() then
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, AkaliE.range) then
local AkaliEDmg = (30*GetCastLevel(myHero,_E)+40)+(0.8*GetBonusDmg(myHero))+(0.6*GetBonusAP(myHero))
if GetCurrentHP(minion) < AkaliEDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSpell(_E)
end
end
end
else
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, AkaliE.range) then
local AkaliEDmg = (30*GetCastLevel(myHero,_E)+40)+(0.8*GetBonusDmg(myHero))+(0.6*GetBonusAP(myHero))
if GetCurrentHP(minion) < AkaliEDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
end
end
end
end
end
end
end)
-- Amumu
elseif "Amumu" == GetObjectName(myHero) then
local AmumuE = { range = 350 }
PrintChat("<font color='#F0E68C'>[<font color='#FFD700'>LastHitHelper+<font color='#F0E68C'>] <font color='#FFD700'>Amumu loaded successfully!")
local AmumuLHMenu = Menu("[LH+] Amumu", "[LH+] Amumu")
AmumuLHMenu:Menu("Auto", "Auto")
AmumuLHMenu.Auto:Boolean('AutoE', 'Use E', false)
AmumuLHMenu:Menu("Manual", "Manual")
AmumuLHMenu.Manual:Boolean('UseE', 'Use E', true)
OnTick(function(myHero)
if Mode() == "LaneClear" then
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if AmumuLHMenu.Manual.UseE:Value() then
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, AmumuE.range) then
local AmumuEDmg = (25*GetCastLevel(myHero,_E)+50)+(0.5*GetBonusAP(myHero))
if GetCurrentHP(minion) < AmumuEDmg then
BlockInput(true)
if _G.IOW then
IOW.attacksEnabled = false
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(false)
end
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSpell(_E)
BlockInput(false)
if _G.IOW then
IOW.attacksEnabled = true
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(true)
end
end
end
end
end
end
end
end
end)
OnTick(function(myHero)
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if AmumuLHMenu.Auto.AutoE:Value() then
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, AmumuE.range) then
local AmumuEDmg = (25*GetCastLevel(myHero,_E)+50)+(0.5*GetBonusAP(myHero))
if GetCurrentHP(minion) < AmumuEDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSpell(_E)
end
end
end
else
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, AmumuE.range) then
local AmumuEDmg = (25*GetCastLevel(myHero,_E)+50)+(0.5*GetBonusAP(myHero))
if GetCurrentHP(minion) < AmumuEDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
end
end
end
end
end
end
end)
-- Anivia
elseif "Anivia" == GetObjectName(myHero) then
local AniviaE = { range = 650 }
PrintChat("<font color='#F0E68C'>[<font color='#FFD700'>LastHitHelper+<font color='#F0E68C'>] <font color='#FFD700'>Anivia loaded successfully!")
local AniviaLHMenu = Menu("[LH+] Anivia", "[LH+] Anivia")
AniviaLHMenu:Menu("Auto", "Auto")
AniviaLHMenu.Auto:Boolean('AutoE', 'Use E', false)
AniviaLHMenu:Menu("Manual", "Manual")
AniviaLHMenu.Manual:Boolean('UseE', 'Use E', true)
OnTick(function(myHero)
if Mode() == "LaneClear" then
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if AniviaLHMenu.Manual.UseE:Value() then
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, AniviaE.range) then
local AniviaEDmg = (25*GetCastLevel(myHero,_E)+25)+(0.5*GetBonusAP(myHero))
if GetCurrentHP(minion) < AniviaEDmg then
BlockInput(true)
if _G.IOW then
IOW.attacksEnabled = false
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(false)
end
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastTargetSpell(minion, _E)
BlockInput(false)
if _G.IOW then
IOW.attacksEnabled = true
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(true)
end
end
end
end
end
end
end
end
end)
OnTick(function(myHero)
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if AniviaLHMenu.Auto.AutoE:Value() then
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, AniviaE.range) then
local AniviaEDmg = (25*GetCastLevel(myHero,_E)+25)+(0.5*GetBonusAP(myHero))
if GetCurrentHP(minion) < AniviaEDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastTargetSpell(minion, _E)
end
end
end
else
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, AniviaE.range) then
local AniviaEDmg = (25*GetCastLevel(myHero,_E)+25)+(0.5*GetBonusAP(myHero))
if GetCurrentHP(minion) < AniviaEDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
end
end
end
end
end
end
end)
-- Annie
elseif "Annie" == GetObjectName(myHero) then
local AnnieQ = { range = 625 }
PrintChat("<font color='#F0E68C'>[<font color='#FFD700'>LastHitHelper+<font color='#F0E68C'>] <font color='#FFD700'>Annie loaded successfully!")
local AnnieLHMenu = Menu("[LH+] Annie", "[LH+] Annie")
AnnieLHMenu:Menu("Auto", "Auto")
AnnieLHMenu.Auto:Boolean('AutoQ', 'Use Q', false)
AnnieLHMenu:Menu("Manual", "Manual")
AnnieLHMenu.Manual:Boolean('UseQ', 'Use Q', true)
OnTick(function(myHero)
if Mode() == "LaneClear" then
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if AnnieLHMenu.Manual.UseQ:Value() then
if CanUseSpell(myHero,_Q) == READY then
if ValidTarget(minion, AnnieQ.range) then
local AnnieQDmg = (35*GetCastLevel(myHero,_Q)+45)+(0.8*GetBonusAP(myHero))
if GetCurrentHP(minion) < AnnieQDmg then
BlockInput(true)
if _G.IOW then
IOW.attacksEnabled = false
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(false)
end
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastTargetSpell(minion, _Q)
BlockInput(false)
if _G.IOW then
IOW.attacksEnabled = true
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(true)
end
end
end
end
end
end
end
end
end)
OnTick(function(myHero)
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if AnnieLHMenu.Auto.AutoQ:Value() then
if CanUseSpell(myHero,_Q) == READY then
if ValidTarget(minion, AnnieQ.range) then
local AnnieQDmg = (35*GetCastLevel(myHero,_Q)+45)+(0.8*GetBonusAP(myHero))
if GetCurrentHP(minion) < AnnieQDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastTargetSpell(minion, _Q)
end
end
end
else
if CanUseSpell(myHero,_Q) == READY then
if ValidTarget(minion, AnnieQ.range) then
local AnnieQDmg = (35*GetCastLevel(myHero,_Q)+45)+(0.8*GetBonusAP(myHero))
if GetCurrentHP(minion) < AnnieQDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
end
end
end
end
end
end
end)
-- Cassiopeia
elseif "Cassiopeia" == GetObjectName(myHero) then
local CassiopeiaE = { range = 700 }
PrintChat("<font color='#F0E68C'>[<font color='#FFD700'>LastHitHelper+<font color='#F0E68C'>] <font color='#FFD700'>Cassiopeia loaded successfully!")
local CassiopeiaLHMenu = Menu("[LH+] Cassiopeia", "[LH+] Cassiopeia")
CassiopeiaLHMenu:Menu("Auto", "Auto")
CassiopeiaLHMenu.Auto:Boolean('AutoE', 'Use E', false)
CassiopeiaLHMenu:Menu("Manual", "Manual")
CassiopeiaLHMenu.Manual:Boolean('UseE', 'Use E', true)
OnTick(function(myHero)
if Mode() == "LaneClear" then
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if CassiopeiaLHMenu.Manual.UseE:Value() then
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, CassiopeiaE.range) then
local CassiopeiaE1Dmg = (4*GetLevel(myHero)+48)+(0.1*GetBonusAP(myHero))
local CassiopeiaE2Dmg = CassiopeiaE1Dmg+(20*GetCastLevel(myHero,_E)-10)+(0.6*GetBonusAP(myHero))
if GotBuff(minion, "cassiopeiaqdebuff") > 0 then
if GetCurrentHP(minion) < CassiopeiaE2Dmg then
BlockInput(true)
if _G.IOW then
IOW.attacksEnabled = false
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(false)
end
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastTargetSpell(minion, _E)
BlockInput(false)
if _G.IOW then
IOW.attacksEnabled = true
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(true)
end
end
else
if GetCurrentHP(minion) < CassiopeiaE1Dmg then
BlockInput(true)
if _G.IOW then
IOW.attacksEnabled = false
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(false)
end
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastTargetSpell(minion, _E)
BlockInput(false)
if _G.IOW then
IOW.attacksEnabled = true
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(true)
end
end
end
end
end
end
end
end
end
end)
OnTick(function(myHero)
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if CassiopeiaLHMenu.Auto.AutoE:Value() then
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, CassiopeiaE.range) then
local CassiopeiaE1Dmg = (4*GetLevel(myHero)+48)+(0.1*GetBonusAP(myHero))
local CassiopeiaE2Dmg = CassiopeiaE1Dmg+(20*GetCastLevel(myHero,_E)-10)+(0.6*GetBonusAP(myHero))
if GotBuff(minion, "cassiopeiaqdebuff") > 0 then
if GetCurrentHP(minion) < CassiopeiaE2Dmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastTargetSpell(minion, _E)
end
else
if GetCurrentHP(minion) < CassiopeiaE1Dmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastTargetSpell(minion, _E)
end
end
end
end
else
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, CassiopeiaE.range) then
local CassiopeiaE1Dmg = (4*GetLevel(myHero)+48)+(0.1*GetBonusAP(myHero))
local CassiopeiaE2Dmg = CassiopeiaE1Dmg+(20*GetCastLevel(myHero,_E)-10)+(0.6*GetBonusAP(myHero))
if GotBuff(minion, "cassiopeiaqdebuff") > 0 then
if GetCurrentHP(minion) < CassiopeiaE2Dmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
end
else
if GetCurrentHP(minion) < CassiopeiaE1Dmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
end
end
end
end
end
end
end
end)
-- Darius
elseif "Darius" == GetObjectName(myHero) then
local DariusW = { range = 300 }
PrintChat("<font color='#F0E68C'>[<font color='#FFD700'>LastHitHelper+<font color='#F0E68C'>] <font color='#FFD700'>Darius loaded successfully!")
local DariusLHMenu = Menu("[LH+] Darius", "[LH+] Darius")
DariusLHMenu:Menu("Auto", "Auto")
DariusLHMenu.Auto:Boolean('AutoW', 'Use W', false)
DariusLHMenu:Menu("Manual", "Manual")
DariusLHMenu.Manual:Boolean('UseW', 'Use W', true)
OnTick(function(myHero)
if Mode() == "LaneClear" then
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if DariusLHMenu.Manual.UseW:Value() then
if CanUseSpell(myHero,_W) == READY then
if ValidTarget(minion, DariusW.range) then
local DariusWDmg = 1.4*(GetBonusDmg(myHero)+GetBaseDamage(myHero))
if GetCurrentHP(minion) < DariusWDmg then
BlockInput(true)
if _G.IOW then
IOW.attacksEnabled = false
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(false)
end
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSpell(_W)
AttackUnit(minion)
BlockInput(false)
if _G.IOW then
IOW.attacksEnabled = true
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(true)
end
end
end
end
end
end
end
end
end)
OnTick(function(myHero)
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if DariusLHMenu.Auto.AutoW:Value() then
if CanUseSpell(myHero,_W) == READY then
if ValidTarget(minion, DariusW.range) then
local DariusWDmg = 1.4*(GetBonusDmg(myHero)+GetBaseDamage(myHero))
if GetCurrentHP(minion) < DariusWDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSpell(_W)
AttackUnit(minion)
end
end
end
else
if CanUseSpell(myHero,_W) == READY then
if ValidTarget(minion, DariusW.range) then
local DariusWDmg = 1.4*(GetBonusDmg(myHero)+GetBaseDamage(myHero))
if GetCurrentHP(minion) < DariusWDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
end
end
end
end
end
end
end)
-- DrMundo
elseif "DrMundo" == GetObjectName(myHero) then
local DrMundoE = { range = 250 }
PrintChat("<font color='#F0E68C'>[<font color='#FFD700'>LastHitHelper+<font color='#F0E68C'>] <font color='#FFD700'>DrMundo loaded successfully!")
local DrMundoLHMenu = Menu("[LH+] DrMundo", "[LH+] DrMundo")
DrMundoLHMenu:Menu("Auto", "Auto")
DrMundoLHMenu.Auto:Boolean('AutoE', 'Use E', false)
DrMundoLHMenu:Menu("Manual", "Manual")
DrMundoLHMenu.Manual:Boolean('UseE', 'Use E', true)
OnTick(function(myHero)
if Mode() == "LaneClear" then
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if DrMundoLHMenu.Manual.UseE:Value() then
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, DrMundoE.range) then
local DrMundoEDmg = (GetBaseDamage(myHero)+GetBonusDmg(myHero))+((20*GetCastLevel(myHero,_E)+10)*((1-(GetCurrentHP(myHero)/GetMaxHP(myHero)))+1))+((0.005*GetCastLevel(myHero,_E)+0.025)*GetMaxHP(myHero))
if GetCurrentHP(minion) < DrMundoEDmg then
BlockInput(true)
if _G.IOW then
IOW.attacksEnabled = false
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(false)
end
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSpell(_E)
AttackUnit(minion)
BlockInput(false)
if _G.IOW then
IOW.attacksEnabled = true
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(true)
end
end
end
end
end
end
end
end
end)
OnTick(function(myHero)
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if DrMundoLHMenu.Auto.AutoE:Value() then
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, DrMundoE.range) then
local DrMundoEDmg = (GetBaseDamage(myHero)+GetBonusDmg(myHero))+((20*GetCastLevel(myHero,_E)+10)*((1-(GetCurrentHP(myHero)/GetMaxHP(myHero)))+1))+((0.005*GetCastLevel(myHero,_E)+0.025)*GetMaxHP(myHero))
if GetCurrentHP(minion) < DrMundoEDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSpell(_E)
AttackUnit(minion)
end
end
end
else
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, DrMundoE.range) then
local DrMundoEDmg = (GetBaseDamage(myHero)+GetBonusDmg(myHero))+((20*GetCastLevel(myHero,_E)+10)*((1-(GetCurrentHP(myHero)/GetMaxHP(myHero)))+1))+((0.005*GetCastLevel(myHero,_E)+0.025)*GetMaxHP(myHero))
if GetCurrentHP(minion) < DrMundoEDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
end
end
end
end
end
end
end)
-- Ezreal
elseif "Ezreal" == GetObjectName(myHero) then
local EzrealQ = { range = 1150, radius = 60, speed = 2000, delay = 0.25, type = "line", col = {"minion","champion","yasuowall"}}
PrintChat("<font color='#F0E68C'>[<font color='#FFD700'>LastHitHelper+<font color='#F0E68C'>] <font color='#FFD700'>Ezreal loaded successfully!")
local EzrealLHMenu = Menu("[LH+] Ezreal", "[LH+] Ezreal")
EzrealLHMenu:Menu("Auto", "Auto")
EzrealLHMenu.Auto:Boolean('AutoQ', 'Use Q', false)
EzrealLHMenu:Menu("Manual", "Manual")
EzrealLHMenu.Manual:Boolean('UseQ', 'Use Q', true)
OnTick(function(myHero)
if Mode() == "LaneClear" then
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if EzrealLHMenu.Manual.UseQ:Value() then
if CanUseSpell(myHero,_Q) == READY then
if ValidTarget(minion, EzrealQ.range) then
local EzrealQDmg = (20*GetCastLevel(myHero,_Q)+15)+(1.1*(GetBonusDmg(myHero)+GetBaseDamage(myHero)))+(0.4*GetBonusAP(myHero))
if GetCurrentHP(minion) < EzrealQDmg then
BlockInput(true)
if _G.IOW then
IOW.attacksEnabled = false
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(false)
end
local qPred = _G.gPred:GetPrediction(minion,myHero,EzrealQ,false,true)
if qPred and qPred.HitChance >= 3 then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSkillShot(_Q, qPred.CastPosition)
end
BlockInput(false)
if _G.IOW then
IOW.attacksEnabled = true
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(true)
end
end
end
end
end
end
end
end
end)
OnTick(function(myHero)
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if EzrealLHMenu.Auto.AutoQ:Value() then
if CanUseSpell(myHero,_Q) == READY then
if ValidTarget(minion, EzrealQ.range) then
local EzrealQDmg = (20*GetCastLevel(myHero,_Q)+15)+(1.1*(GetBonusDmg(myHero)+GetBaseDamage(myHero)))+(0.4*GetBonusAP(myHero))
if GetCurrentHP(minion) < EzrealQDmg then
local qPred = _G.gPred:GetPrediction(minion,myHero,EzrealQ,false,true)
if qPred and qPred.HitChance >= 3 then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSkillShot(_Q, qPred.CastPosition)
end
end
end
end
else
if CanUseSpell(myHero,_Q) == READY then
if ValidTarget(minion, EzrealQ.range) then
local EzrealQDmg = (20*GetCastLevel(myHero,_Q)+15)+(1.1*(GetBonusDmg(myHero)+GetBaseDamage(myHero)))+(0.4*GetBonusAP(myHero))
if GetCurrentHP(minion) < EzrealQDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
end
end
end
end
end
end
end)
-- Fiddlesticks
elseif "Fiddlesticks" == GetObjectName(myHero) then
local FiddlesticksE = { range = 750 }
PrintChat("<font color='#F0E68C'>[<font color='#FFD700'>LastHitHelper+<font color='#F0E68C'>] <font color='#FFD700'>Fiddlesticks loaded successfully!")
local FiddlesticksLHMenu = Menu("[LH+] Fiddlesticks", "[LH+] Fiddlesticks")
FiddlesticksLHMenu:Menu("Auto", "Auto")
FiddlesticksLHMenu.Auto:Boolean('AutoE', 'Use E', false)
FiddlesticksLHMenu:Menu("Manual", "Manual")
FiddlesticksLHMenu.Manual:Boolean('UseE', 'Use E', true)
OnTick(function(myHero)
if Mode() == "LaneClear" then
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if FiddlesticksLHMenu.Manual.UseE:Value() then
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, FiddlesticksE.range) then
local FiddlesticksEDmg = (30*GetCastLevel(myHero,_E)+67.5)+(0.675*GetBonusAP(myHero))
if GetCurrentHP(minion) < FiddlesticksEDmg then
BlockInput(true)
if _G.IOW then
IOW.attacksEnabled = false
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(false)
end
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastTargetSpell(minion, _E)
BlockInput(false)
if _G.IOW then
IOW.attacksEnabled = true
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(true)
end
end
end
end
end
end
end
end
end)
OnTick(function(myHero)
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if FiddlesticksLHMenu.Auto.AutoE:Value() then
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, FiddlesticksE.range) then
local FiddlesticksEDmg = (30*GetCastLevel(myHero,_E)+67.5)+(0.675*GetBonusAP(myHero))
if GetCurrentHP(minion) < FiddlesticksEDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastTargetSpell(minion, _E)
end
end
end
else
if CanUseSpell(myHero,_E) == READY then
if ValidTarget(minion, FiddlesticksE.range) then
local FiddlesticksEDmg = (30*GetCastLevel(myHero,_E)+67.5)+(0.675*GetBonusAP(myHero))
if GetCurrentHP(minion) < FiddlesticksEDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
end
end
end
end
end
end
end)
elseif "Fizz" == GetObjectName(myHero) then
local FizzW = { range = 300 }
PrintChat("<font color='#F0E68C'>[<font color='#FFD700'>LastHitHelper+<font color='#F0E68C'>] <font color='#FFD700'>Fizz loaded successfully!")
local FizzLHMenu = Menu("[LH+] Fizz", "[LH+] Fizz")
FizzLHMenu:Menu("Auto", "Auto")
FizzLHMenu.Auto:Boolean('AutoW', 'Use W', false)
FizzLHMenu:Menu("Manual", "Manual")
FizzLHMenu.Manual:Boolean('UseW', 'Use W', true)
OnTick(function(myHero)
if Mode() == "LaneClear" then
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if FizzLHMenu.Manual.UseW:Value() then
if CanUseSpell(myHero,_W) == READY then
if ValidTarget(minion, FizzW.range) then
local FizzWDmg = (GetBaseDamage(myHero)+GetBonusDmg(myHero))+(10*GetCastLevel(myHero,_W)+10)+(0.4*GetBonusDmg(myHero))
if GetCurrentHP(minion) < FizzWDmg then
BlockInput(true)
if _G.IOW then
IOW.attacksEnabled = false
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(false)
end
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSpell(_W)
AttackUnit(minion)
BlockInput(false)
if _G.IOW then
IOW.attacksEnabled = true
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(true)
end
end
end
end
end
end
end
end
end)
OnTick(function(myHero)
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if FizzLHMenu.Auto.AutoW:Value() then
if CanUseSpell(myHero,_W) == READY then
if ValidTarget(minion, FizzW.range) then
local FizzWDmg = (GetBaseDamage(myHero)+GetBonusDmg(myHero))+(10*GetCastLevel(myHero,_W)+10)+(0.4*GetBonusDmg(myHero))
if GetCurrentHP(minion) < FizzWDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSpell(_W)
AttackUnit(minion)
end
end
end
else
if CanUseSpell(myHero,_W) == READY then
if ValidTarget(minion, FizzW.range) then
local FizzWDmg = (GetBaseDamage(myHero)+GetBonusDmg(myHero))+(10*GetCastLevel(myHero,_W)+10)+(0.4*GetBonusDmg(myHero))
if GetCurrentHP(minion) < FizzWDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
end
end
end
end
end
end
end)
-- Gnar
elseif "Gnar" == GetObjectName(myHero) then
local GnarQ = { range = 1100, radius = 55, speed = 1400, delay = 0.25, type = "line", col = {"champion","yasuowall"}}
PrintChat("<font color='#F0E68C'>[<font color='#FFD700'>LastHitHelper+<font color='#F0E68C'>] <font color='#FFD700'>Gnar loaded successfully!")
local GnarLHMenu = Menu("[LH+] Gnar", "[LH+] Gnar")
GnarLHMenu:Menu("Auto", "Auto")
GnarLHMenu.Auto:Boolean('AutoQ', 'Use Q', false)
GnarLHMenu:Menu("Manual", "Manual")
GnarLHMenu.Manual:Boolean('UseQ', 'Use Q', true)
OnTick(function(myHero)
if Mode() == "LaneClear" then
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if GnarLHMenu.Manual.UseQ:Value() then
if CanUseSpell(myHero,_Q) == READY then
if ValidTarget(minion, GnarQ.range) then
local GnarQDmg = (40*GetCastLevel(myHero,_Q)-35)+(1.15*(GetBonusDmg(myHero)+GetBaseDamage(myHero)))
if GetCurrentHP(minion) < GnarQDmg then
BlockInput(true)
if _G.IOW then
IOW.attacksEnabled = false
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(false)
end
local qPred = _G.gPred:GetPrediction(minion,myHero,GnarQ,false,true)
if qPred and qPred.HitChance >= 3 then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSkillShot(_Q, qPred.CastPosition)
end
BlockInput(false)
if _G.IOW then
IOW.attacksEnabled = true
elseif _G.GoSWalkLoaded then
_G.GoSWalk:EnableAttack(true)
end
end
end
end
end
end
end
end
end)
OnTick(function(myHero)
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if GnarLHMenu.Auto.AutoQ:Value() then
if CanUseSpell(myHero,_Q) == READY then
if ValidTarget(minion, GnarQ.range) then
local GnarQDmg = (40*GetCastLevel(myHero,_Q)-35)+(1.15*(GetBonusDmg(myHero)+GetBaseDamage(myHero)))
if GetCurrentHP(minion) < GnarQDmg then
local qPred = _G.gPred:GetPrediction(minion,myHero,GnarQ,false,true)
if qPred and qPred.HitChance >= 3 then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
CastSkillShot(_Q, qPred.CastPosition)
end
end
end
end
else
if CanUseSpell(myHero,_Q) == READY then
if ValidTarget(minion, GnarQ.range) then
local GnarQDmg = (40*GetCastLevel(myHero,_Q)-35)+(1.15*(GetBonusDmg(myHero)+GetBaseDamage(myHero)))
if GetCurrentHP(minion) < GnarQDmg then
DrawCircle(GetOrigin(minion),100,2,25,0xffffff00)
end
end
end
end
end
end
end)
-- Irelia
elseif "Irelia" == GetObjectName(myHero) then
local IreliaQ = { range = 625 }
PrintChat("<font color='#F0E68C'>[<font color='#FFD700'>LastHitHelper+<font color='#F0E68C'>] <font color='#FFD700'>Irelia loaded successfully!")
local IreliaLHMenu = Menu("[LH+] Irelia", "[LH+] Irelia")
IreliaLHMenu:Menu("Auto", "Auto")
IreliaLHMenu.Auto:Boolean('AutoQ', 'Use Q', false)
IreliaLHMenu:Menu("Manual", "Manual")
IreliaLHMenu.Manual:Boolean('UseQ', 'Use Q', true)
OnTick(function(myHero)
if Mode() == "LaneClear" then
for _, minion in pairs(minionManager.objects) do
if GetTeam(minion) == MINION_ENEMY then
if IreliaLHMenu.Manual.UseQ:Value() then
if CanUseSpell(myHero,_Q) == READY then
if ValidTarget(minion, IreliaQ.range) then
local IreliaQDmg = (30*GetCastLevel(myHero,_Q)-10)+(1.2*(GetBonusDmg(myHero)+GetBaseDamage(myHero)))
if GetCurrentHP(minion) < IreliaQDmg then
BlockInput(true)
if _G.IOW then
IOW.attacksEnabled = false
elseif _G.GoSWalkLoaded then