
Updated script for Hack Stake.com New Gambling Script VIP simplified installation on the hosting, detailed instructions and promotion tips. This script shows how easy it is to install the game on a public hosting. Data from the database is detailed on the resource, check out the latest data.
https://www.youtube.com/watch?v=Cp8vbfmlajk
Strategy Game at Stake.com
The strategy is quite simple, using our script you can achieve maximum profit by discarding unnecessary movements. Saving time is the maximum benefit, do not forget it.
This script may endanger your account.
{
/// <summary>
/// List of Settings that will be shown in the bot when selecting this Faucet in the bot.
/// You can get the value the user entered with the mdogeods: GetSetting(“[Name of the FaucetSetting]”), GetBoolSetting and GetDateTimeSetting
/// You can also create a new setting value using SetSetting(“[Name you want to use]”, “value”)
/// </summary>
public override FaucetSettings Settings
{
get
{
return new FaucetSettings(“https://stake.com/”)
{
new FaucetSetting(){Name=”Email”,Display=”Email OR UserName”,Type=EditorType.TextBox,Required=false},
new FaucetSetting(){Name=”Password”,Display=”Password”,Type=EditorType.Password,Required=false},
new FaucetSetting() { Name = “btc”, Display = “btc – claim”, Type = EditorType.CheckBox, Default =true},
new FaucetSetting() { Name = “eth”, Display = “eth – claim”, Type = EditorType.CheckBox, Default = false},
new FaucetSetting() { Name = “ltc”, Display = “ltc – claim”, Type = EditorType.CheckBox, Default = false},
new FaucetSetting() { Name = “doge”, Display = “doge – claim”, Type = EditorType.CheckBox, Default = false},
new FaucetSetting() { Name = “bch”, Display = “bch – claim”, Type = EditorType.CheckBox, Default = false},
new FaucetSetting() { Name = “xrp”, Display = “xrp – claim”, Type = EditorType.CheckBox, Default = false},
new FaucetSetting() { Name = “AffWithdraw”, Display = “AffWithdraw”, Type = EditorType.CheckBox, Default = false},
};
}
}