-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
114 lines (105 loc) · 5.1 KB
/
Program.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
using System;
using System.Diagnostics;
using elden_ring_cheatEX;
using Swed64;
MemoryAddresses memoryModifier = new MemoryAddresses();
var mBase = memoryModifier.moduleBase;
Console.WriteLine("MemoryModifier E01A82FJ1");
// Initialize character stats and level
int level = 1;
int vigor = 10;
int endurance = 10;
int strength = 10;
int dexterity = 10;
int intelligence = 10;
int faith = 10;
int arcane = 10;
while (true)
{
Console.WriteLine("\nCharacter Stats:");
Console.WriteLine($"Level: {level}");
Console.WriteLine($"Vigor: {vigor}");
Console.WriteLine($"Endurance: {endurance}");
Console.WriteLine($"Strength: {strength}");
Console.WriteLine($"Dexterity: {dexterity}");
Console.WriteLine($"Intelligence: {intelligence}");
Console.WriteLine($"Faith: {faith}");
Console.WriteLine($"Arcane: {arcane}");
Console.WriteLine("\nChoose an option:");
Console.WriteLine("1. Modify Level");
Console.WriteLine("2. Modify Stats");
Console.WriteLine("3. Exit");
string choice = Console.ReadLine();
switch (choice)
{
case "1":
Console.Write("Enter new level: ");
if (int.TryParse(Console.ReadLine(), out int newLevel))
{
level = newLevel;
Console.WriteLine("Level updated successfully.");
}
else
{
Console.WriteLine("Invalid input. Please enter a valid number.");
}
break;
case "2":
Console.WriteLine("Choose a stat to modify:");
Console.WriteLine("1. Vigor");
Console.WriteLine("2. Endurance");
Console.WriteLine("3. Strength");
Console.WriteLine("4. Dexterity");
Console.WriteLine("5. Intelligence");
Console.WriteLine("6. Faith");
Console.WriteLine("7. Arcane");
string statChoice = Console.ReadLine();
Console.Write("Enter new value: ");
if (int.TryParse(Console.ReadLine(), out int newValue))
{
switch (statChoice)
{
case "1":
vigor = newValue;
Console.WriteLine("Vigor updated successfully.");
break;
case "2":
endurance = newValue;
Console.WriteLine("Endurance updated successfully.");
break;
case "3":
strength = newValue;
Console.WriteLine("Strength updated successfully.");
break;
case "4":
dexterity = newValue;
Console.WriteLine("Dexterity updated successfully.");
break;
case "5":
intelligence = newValue;
Console.WriteLine("Intelligence updated successfully.");
break;
case "6":
faith = newValue;
Console.WriteLine("Faith updated successfully.");
break;
case "7":
arcane = newValue;
Console.WriteLine("Arcane updated successfully.");
break;
default:
Console.WriteLine("Invalid choice. Please select a valid stat.");
break;
}
}
else
{
Console.WriteLine("Invalid input. Please enter a valid number.");
}
break;
case "3":
Console.WriteLine("Exiting the application.");
return;
default:
Console.WriteLine("Invalid choice. Please select a valid option.");
break;