Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Commit

Permalink
Added Probabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
xcibe95x committed Jul 2, 2019
1 parent 78978bb commit dcaa78e
Show file tree
Hide file tree
Showing 13 changed files with 406 additions and 12 deletions.
Empty file.
Binary file added .vs/TFT Overlay/v15/Server/sqlite3/storage.ide
Binary file not shown.
Binary file not shown.
Binary file not shown.
320 changes: 308 additions & 12 deletions Form1.Designer.cs

Large diffs are not rendered by default.

88 changes: 88 additions & 0 deletions Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,94 @@ private void button18_Click(object sender, EventArgs e)
{
Application.Exit();
}

int Levels = 2;

private void button19_Click(object sender, EventArgs e)
{

Lvl.Text = "Level " + Levels;

if (Levels < 9)
{
Levels++;
}

switch (Levels)
{
case 1:
T1P.Text = "100%";
T2P.Text = "0%";
T3P.Text = "0%";
T4P.Text = "0%";
T5P.Text = "0%";
break;
case 2:
T1P.Text = "100%";
T2P.Text = "0%";
T3P.Text = "0%";
T4P.Text = "0%";
T5P.Text = "0%";
break;
case 3:
T1P.Text = "70%";
T2P.Text = "30%";
T3P.Text = "0%";
T4P.Text = "0%";
T5P.Text = "0%";
break;
case 4:
T1P.Text = "55%";
T2P.Text = "30%";
T3P.Text = "15%";
T4P.Text = "0%";
T5P.Text = "0%";
break;
case 5:
T1P.Text = "40%";
T2P.Text = "30%";
T3P.Text = "25%";
T4P.Text = "5%";
T5P.Text = "0%";
break;
case 6:
T1P.Text = "29%";
T2P.Text = "29.5%";
T3P.Text = "31%";
T4P.Text = "10%";
T5P.Text = "0.5%";
break;
case 7:
T1P.Text = "24%";
T2P.Text = "28%";
T3P.Text = "31%";
T4P.Text = "15%";
T5P.Text = "2%";
break;
case 8:
T1P.Text = "20%";
T2P.Text = "24%";
T3P.Text = "31%";
T4P.Text = "20%";
T5P.Text = "5%";
break;
case 9:
T1P.Text = "10%";
T2P.Text = "19%";
T3P.Text = "31%";
T4P.Text = "30%";
T5P.Text = "10%";
break;
}



}

private void button20_Click(object sender, EventArgs e)
{
Levels = 1;
}
}

}
Binary file modified bin/Debug/TFT Overlay.exe
Binary file not shown.
Binary file modified bin/Debug/TFT Overlay.pdb
Binary file not shown.
Binary file modified obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Binary file not shown.
10 changes: 10 additions & 0 deletions obj/Debug/TFT Overlay.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,13 @@ C:\Users\xcibe\source\repos\TFT Overlay\TFT Overlay\obj\Debug\TFT Overlay.csproj
C:\Users\xcibe\source\repos\TFT Overlay\TFT Overlay\obj\Debug\TFT Overlay.exe
C:\Users\xcibe\source\repos\TFT Overlay\TFT Overlay\obj\Debug\TFT Overlay.pdb
C:\Users\xcibe\source\repos\TFT Overlay\TFT Overlay\obj\Debug\TFT_Overlay.TFTCrafter.resources
C:\Users\xcibe\Documents\GitHub\TFT-Overlay--Crafting---Utility-s-\bin\Debug\TFT Overlay.exe.config
C:\Users\xcibe\Documents\GitHub\TFT-Overlay--Crafting---Utility-s-\bin\Debug\TFT Overlay.exe
C:\Users\xcibe\Documents\GitHub\TFT-Overlay--Crafting---Utility-s-\bin\Debug\TFT Overlay.pdb
C:\Users\xcibe\Documents\GitHub\TFT-Overlay--Crafting---Utility-s-\obj\Debug\TFT Overlay.csprojAssemblyReference.cache
C:\Users\xcibe\Documents\GitHub\TFT-Overlay--Crafting---Utility-s-\obj\Debug\TFT_Overlay.TFTCrafter.resources
C:\Users\xcibe\Documents\GitHub\TFT-Overlay--Crafting---Utility-s-\obj\Debug\TFT_Overlay.Properties.Resources.resources
C:\Users\xcibe\Documents\GitHub\TFT-Overlay--Crafting---Utility-s-\obj\Debug\TFT Overlay.csproj.GenerateResource.cache
C:\Users\xcibe\Documents\GitHub\TFT-Overlay--Crafting---Utility-s-\obj\Debug\TFT Overlay.csproj.CoreCompileInputs.cache
C:\Users\xcibe\Documents\GitHub\TFT-Overlay--Crafting---Utility-s-\obj\Debug\TFT Overlay.exe
C:\Users\xcibe\Documents\GitHub\TFT-Overlay--Crafting---Utility-s-\obj\Debug\TFT Overlay.pdb
Binary file modified obj/Debug/TFT Overlay.csproj.GenerateResource.cache
Binary file not shown.
Binary file modified obj/Debug/TFT Overlay.exe
Binary file not shown.
Binary file modified obj/Debug/TFT Overlay.pdb
Binary file not shown.

0 comments on commit dcaa78e

Please sign in to comment.