-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGreedsDomain.cs
120 lines (104 loc) · 3.27 KB
/
GreedsDomain.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
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using Zeta.Bot;
using Zeta.Bot.Navigation;
using Zeta.Common;
using Zeta.Common.Plugins;
using Zeta.Game;
namespace VaultRunner
{
public class GreedsDomain : IPlugin
{
private static GreedEvents eventHandler;
public string Author
{
get { return "SmurfX"; }
}
public string Description
{
get { return "Greed's Domain"; }
}
public string Name
{
get { return "Vault Runner"; }
}
public void OnDisabled()
{
Logger.Log("Plugin - Disabled");
eventHandler = null;
GameEvents.OnGameJoined -= GameEvents_OnGameJoined;
}
public void OnEnabled()
{
eventHandler = new GreedEvents();
Logger.Log("Plugin - Enabled");
GameEvents.OnGameJoined += GameEvents_OnGameJoined;
}
void GameEvents_OnGameJoined(object sender, EventArgs e)
{
eventHandler = new GreedEvents();
}
public void OnInitialize() { }
public void OnPulse()
{
if (ZetaDia.Me == null)
return;
if (!ZetaDia.IsInGame || !ZetaDia.Me.IsValid || ZetaDia.IsLoadingWorld || ZetaDia.IsPlayingCutscene || ZetaDia.WorldType != Act.OpenWorld)
return;
if (eventHandler == null)
eventHandler = new GreedEvents();
switch (eventHandler.state)
{
case GreedState.LookingForPortal:
{
eventHandler.state = eventHandler.FindPortal();
return;
}
case GreedState.FoundPortal:
{
eventHandler.state = eventHandler.FoundPortal();
return;
}
case GreedState.InsidePortal:
{
eventHandler.state = eventHandler.InsidePortal();
return;
}
case GreedState.InBossArea:
{
eventHandler.state = eventHandler.InsideBossArea();
return;
}
case GreedState.BossDead:
{
eventHandler.state = eventHandler.BossDead();
return;
}
default:
return;
}
}
public void OnShutdown()
{
eventHandler = null;
GameEvents.OnGameJoined -= GameEvents_OnGameJoined;
}
Version IPlugin.Version
{
get { return new Version(1, 0, 1); }
}
public bool Equals(IPlugin other)
{
return other.Name == Name;
}
public Window DisplayWindow
{
//get { return GreedWindow.GetDisplay(); }
get { return null; }
}
}
}