-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAutoWhipStacking.cs
85 lines (76 loc) · 2.44 KB
/
AutoWhipStacking.cs
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
using System.ComponentModel;
using Terraria;
using Terraria.ModLoader;
using Terraria.ModLoader.Config;
namespace AutoWhipStacking
{
public class AutoWhipStackingPlayer : ModPlayer
{
private bool whipHit = false;
private uint lastTimeSecondWhipHit = 0;
public override void OnHitNPCWithProj(Projectile proj, NPC target, NPC.HitInfo hit, int damageDone)
{
if (proj.DamageType == DamageClass.SummonMeleeSpeed)
{
whipHit = true;
if (Player.selectedItem == GetSecondWhipSlot())
{
lastTimeSecondWhipHit = Main.GameUpdateCount;
}
}
}
public override void PostUpdate()
{
if (whipHit && Player.itemAnimation == 1)
{
if (Player.selectedItem == GetFirstWhipSlot() && Main.GameUpdateCount - lastTimeSecondWhipHit + Player.HeldItem.useTime > 60 * ModContent.GetInstance<AutoWhipStackingConfig>().WhipLoopDelay || Player.selectedItem != GetFirstWhipSlot())
{
SwitchToNextWhip();
}
whipHit = false;
}
}
private void SwitchToNextWhip()
{
for (int i = 0; i < 10; i++)
{
int nextSlot = (Player.selectedItem + i + 1) % 10;
if (Player.inventory[nextSlot].DamageType == DamageClass.SummonMeleeSpeed)
{
Player.selectedItem = nextSlot;
break;
}
}
}
private int GetFirstWhipSlot()
{
for (int i = 0; i < 10; i++)
{
if (Player.inventory[i].DamageType == DamageClass.SummonMeleeSpeed)
{
return i;
}
}
return -1;
}
private int GetSecondWhipSlot()
{
for (int i = 0; i < 10; i++)
{
if (Player.inventory[i].DamageType == DamageClass.SummonMeleeSpeed && i != GetFirstWhipSlot())
{
return i;
}
}
return -1;
}
}
public class AutoWhipStackingConfig : ModConfig
{
public override ConfigScope Mode => ConfigScope.ClientSide;
[DefaultValue(4)]
[Range(3, 4)]
[Slider]
public int WhipLoopDelay { get; set; }
}
}