Merge branch 'dev' of https://github.com/Kwoth/NadekoBot into dev
This commit is contained in:
commit
51c6743fec
12
README.md
12
README.md
@ -2,9 +2,13 @@
|
|||||||
[](https://discord.gg/0ehQwTK2RBjAxzEY)
|
[](https://discord.gg/0ehQwTK2RBjAxzEY)
|
||||||
[](http://nadekobot.readthedocs.io/en/1.0/?badge=latest)
|
[](http://nadekobot.readthedocs.io/en/1.0/?badge=latest)
|
||||||
# NadekoBot
|
# NadekoBot
|
||||||
|
[](https://discordapp.com/oauth2/authorize?client_id=170254782546575360&scope=bot&permissions=66186303)
|
||||||
|
[](http://nadekobot.readthedocs.io/en/1.0/Commands%20List/)
|
||||||
|
|
||||||
|
##For Update, Help and Guidlines
|
||||||
|
|
||||||
|
`Follow me on twitter for updates. | Join my Discord server if you need help. | Read the Docs for hosting guides.`
|
||||||
|
|
||||||
|
[](https://twitter.com/TheNadekoBot) [](https://discord.gg/0ehQwTK2RBjAxzEY) [](http://nadekobot.readthedocs.io/en/1.0/)
|
||||||
|
|
||||||
## [Click here to invite Nadeko to your Discord server](https://discordapp.com/oauth2/authorize?client_id=170254782546575360&scope=bot&permissions=66186303)
|
|
||||||
## [Click here for a list of commands](http://nadekobot.readthedocs.io/en/1.0/Commands%20List/)
|
|
||||||
## INSTRUCTIONS, FAQ ---> [Wiki](http://nadekobot.readthedocs.io/en/1.0/)
|
|
||||||
|
|
||||||
You might want to join my discord server where i can provide help etc. https://discord.gg/0ehQwTK2RBjAxzEY
|
|
||||||
|
@ -48,7 +48,7 @@ namespace NadekoBot.Modules.Games
|
|||||||
if (string.IsNullOrWhiteSpace(question))
|
if (string.IsNullOrWhiteSpace(question))
|
||||||
return;
|
return;
|
||||||
var rng = new NadekoRandom();
|
var rng = new NadekoRandom();
|
||||||
await channel.SendMessageAsync($@":question: `Question` __**{question}**__
|
await channel.SendMessageAsync($@"❓ `Question` __**{question}**__
|
||||||
🎱 `8Ball Answers` __**{_8BallResponses.Shuffle().FirstOrDefault()}**__").ConfigureAwait(false);
|
🎱 `8Ball Answers` __**{_8BallResponses.Shuffle().FirstOrDefault()}**__").ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -61,11 +61,11 @@ namespace NadekoBot.Modules.Games
|
|||||||
Func<int,string> GetRPSPick = (p) =>
|
Func<int,string> GetRPSPick = (p) =>
|
||||||
{
|
{
|
||||||
if (p == 0)
|
if (p == 0)
|
||||||
return "rocket";
|
return "🚀";
|
||||||
else if (p == 1)
|
else if (p == 1)
|
||||||
return "paperclip";
|
return "📎";
|
||||||
else
|
else
|
||||||
return "scissors";
|
return "✂️";
|
||||||
};
|
};
|
||||||
|
|
||||||
int pick;
|
int pick;
|
||||||
@ -91,13 +91,13 @@ namespace NadekoBot.Modules.Games
|
|||||||
var nadekoPick = new NadekoRandom().Next(0, 3);
|
var nadekoPick = new NadekoRandom().Next(0, 3);
|
||||||
var msg = "";
|
var msg = "";
|
||||||
if (pick == nadekoPick)
|
if (pick == nadekoPick)
|
||||||
msg = $"It's a draw! Both picked :{GetRPSPick(pick)}:";
|
msg = $"It's a draw! Both picked {GetRPSPick(pick)}";
|
||||||
else if ((pick == 0 && nadekoPick == 1) ||
|
else if ((pick == 0 && nadekoPick == 1) ||
|
||||||
(pick == 1 && nadekoPick == 2) ||
|
(pick == 1 && nadekoPick == 2) ||
|
||||||
(pick == 2 && nadekoPick == 0))
|
(pick == 2 && nadekoPick == 0))
|
||||||
msg = $"{NadekoBot.Client.GetCurrentUser().Mention} won! :{GetRPSPick(nadekoPick)}: beats :{GetRPSPick(pick)}:";
|
msg = $"{NadekoBot.Client.GetCurrentUser().Mention} won! {GetRPSPick(nadekoPick)} beats {GetRPSPick(pick)}";
|
||||||
else
|
else
|
||||||
msg = $"{umsg.Author.Mention} won! :{GetRPSPick(pick)}: beats :{GetRPSPick(nadekoPick)}:";
|
msg = $"{umsg.Author.Mention} won! {GetRPSPick(pick)} beats {GetRPSPick(nadekoPick)}";
|
||||||
|
|
||||||
await channel.SendMessageAsync(msg).ConfigureAwait(false);
|
await channel.SendMessageAsync(msg).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user