This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Trees: (Leaves and Logs and Planks and Sapling) | |
- Aspen Tree | |
- Kapok Tree | |
- Pine Tree | |
Plants: | |
- Grass | |
- Blueberry bush | |
- Daisy flower | |
- Cowbell flower |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Voting | |
public void TakeVote() | |
{ | |
if (!VoteIsOn) return; | |
//Actual voting | |
if (!_votingRestarting) | |
{ | |
World[] voteWorlds = PropHuntWorlds.OrderBy(x => RandWorld.Next()) | |
.Take(3) | |
.ToArray(); |
OlderNewer