Skip to content

Commit

Permalink
Banlist, Reddit Thread Flair Reading
Browse files Browse the repository at this point in the history
Option to check reddit commenter's flairs for FCs before trading

A global banlist available
  • Loading branch information
imaboy321 committed Jan 14, 2017
1 parent 8e69145 commit b453806
Show file tree
Hide file tree
Showing 19 changed files with 13,354 additions and 201 deletions.
Binary file modified .vs/Ledybot/v14/.suo
Binary file not shown.
14 changes: 0 additions & 14 deletions Ledybot/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,6 @@
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<appSettings>
<add key="IP" value="192.168.1."/>
<add key="Port" value="8000"/>
<add key="PID" value="2c"/>
<add key="Deposited" value="Finneon"/>
<add key="Dex" value="1"/>
<add key="StartFromEnd" value="true"/>
<add key="GiveAway" value="Wimpod"/>
<add key="Spanish" value="false"/>
<add key="Default" value="D:/Ledybot/pk7s/Wimpod.pk7"/>
<add key="Folder" value="D:/Ledybot/pk7s/"/>
<add key="Gender" value="0"/>
<add key="Level" value="9"/>
</appSettings>
<userSettings>
<Ledybot.Properties.Settings>
<setting name="IP" serializeAs="String">
Expand Down
145 changes: 145 additions & 0 deletions Ledybot/BLInput.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 32 additions & 0 deletions Ledybot/BLInput.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Ledybot
{
public partial class BLInput : Form
{

public string input = "";

public BLInput()
{
InitializeComponent();
}

private void btn_Save_Click(object sender, EventArgs e)
{
input += nud_FC1.Value.ToString().PadLeft(4, '0');
input += "-" + nud_FC2.Value.ToString().PadLeft(4, '0');
input += "-" + nud_FC3.Value.ToString().PadLeft(4, '0');
this.DialogResult = DialogResult.OK;
this.Close();
}
}
}
Loading

0 comments on commit b453806

Please sign in to comment.