Commit d13087a5 authored by JoyJ's avatar JoyJ

coin / dice toss

parent 0927f3e9
......@@ -5,10 +5,24 @@ ygopro.ctos_follow_before('CHAT', false, async function (buffer, info, client, s
room.rolls = new Object();
}
var msg = _.trim(info.msg);
if (msg.substring(0, 5) == "/dice")
{
var diceresult = Math.floor(Math.random()*6) + 1;
var dicemessage = client.name + "投掷1d6并掷出了" + diceresult + "";
ygopro.stoc_send_chat_to_room(room, dicemessage, ygopro.constants.COLORS.PINK);
return;
}
if (msg.substring(0, 5) == "/coin")
{
var coinresult = Math.floor(Math.random()*2) == 1 ? "正面" : "反面";
var coinmessage = client.name + "投掷硬币并掷出了" + coinresult;
ygopro.stoc_send_chat_to_room(room, coinmessage, ygopro.constants.COLORS.BLUE);
return;
}
if (msg.substring(0, 5) != "/roll") {
return;
}
var regex = /[0-9]+d[0-9]+/;
var regex = /[0-9]*d[0-9]+/;
var found = regex.exec(msg);
var dicenum = 1;
var dicemax = 100;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment