Skip to content

Instantly share code, notes, and snippets.

@MrBluePotato
MrBluePotato / gist:9126927
Created February 21, 2014 01:12
New Blocks
Trees: (Leaves and Logs and Planks and Sapling)
- Aspen Tree
- Kapok Tree
- Pine Tree
Plants:
- Grass
- Blueberry bush
- Daisy flower
- Cowbell flower
var _username = "Account.UserName";
var _password = "Account.PassWord";
var data = "wrap_name=" + _username + "&wrap_password=" + _password + "&wrap_scope=http://xxx.com/";
var url = "https://www.starbucks.com/account/signin";
var wc = new WebClient
{
//BaseAddress = "https://www.starbucks.com/account/signin"
};
var URI = new Uri(url);
//Voting
public void TakeVote()
{
if (!VoteIsOn) return;
//Actual voting
if (!_votingRestarting)
{
World[] voteWorlds = PropHuntWorlds.OrderBy(x => RandWorld.Next())
.Take(3)
.ToArray();