init commit
This commit is contained in:
153
libs/phantombot/scripts/games/gambling.js
Normal file
153
libs/phantombot/scripts/games/gambling.js
Normal file
@@ -0,0 +1,153 @@
|
||||
/*
|
||||
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
(function() {
|
||||
var winGainPercent = $.getSetIniDbNumber('gambling', 'winGainPercent', 30),
|
||||
winRange = $.getSetIniDbNumber('gambling', 'winRange', 50),
|
||||
max = $.getSetIniDbNumber('gambling', 'max', 100),
|
||||
min = $.getSetIniDbNumber('gambling', 'min', 5),
|
||||
gain = Math.abs(winGainPercent / 100);
|
||||
|
||||
/**
|
||||
* @function reloadGamble
|
||||
*/
|
||||
function reloadGamble() {
|
||||
winGainPercent = $.getIniDbNumber('gambling', 'winGainPercent');
|
||||
winRange = $.getIniDbNumber('gambling', 'winRange');
|
||||
max = $.getIniDbNumber('gambling', 'max');
|
||||
min = $.getIniDbNumber('gambling', 'min');
|
||||
gain = Math.abs(winGainPercent / 100);
|
||||
}
|
||||
|
||||
/**
|
||||
* @function gamble
|
||||
*
|
||||
* @param {int amout}
|
||||
* @param {string} sender
|
||||
*/
|
||||
function gamble(sender, amount) {
|
||||
var winnings = 0,
|
||||
winSpot = 0,
|
||||
range = $.randRange(1, 100);
|
||||
|
||||
if ($.getUserPoints(sender) < amount) {
|
||||
$.say($.whisperPrefix(sender) + $.lang.get('gambling.need.points', $.pointNameMultiple));
|
||||
return;
|
||||
}
|
||||
|
||||
if (max < amount) {
|
||||
$.say($.whisperPrefix(sender) + $.lang.get('gambling.error.max', $.getPointsString(max)));
|
||||
return;
|
||||
}
|
||||
|
||||
if (min > amount) {
|
||||
$.say($.whisperPrefix(sender) + $.lang.get('gambling.error.min', $.getPointsString(min)));
|
||||
return;
|
||||
}
|
||||
|
||||
if (range <= winRange) {
|
||||
$.say($.lang.get('gambling.lost', $.resolveRank(sender), range, $.getPointsString(amount), $.getPointsString($.getUserPoints(sender) - amount), $.gameMessages.getLose(sender, 'gamble')));
|
||||
$.inidb.decr('points', sender, amount);
|
||||
} else {
|
||||
winnings = Math.floor(amount + (amount * gain));
|
||||
$.say($.lang.get('gambling.won', $.resolveRank(sender), range, $.getPointsString(winnings - amount), $.getPointsString($.getUserPoints(sender) + (winnings - amount)), $.gameMessages.getWin(sender, 'gamble')));
|
||||
$.inidb.decr('points', sender, amount);
|
||||
$.inidb.incr('points', sender, winnings);
|
||||
}
|
||||
}
|
||||
|
||||
$.bind('command', function(event) {
|
||||
var sender = event.getSender(),
|
||||
command = event.getCommand(),
|
||||
args = event.getArgs(),
|
||||
action = args[0];
|
||||
|
||||
/**
|
||||
* @commandpath gamble [amount] - Gamble your points.
|
||||
*/
|
||||
if (command.equalsIgnoreCase('gamble')) {
|
||||
if (!parseInt(action)) {
|
||||
$.say($.whisperPrefix(sender) + $.lang.get('gambling.usage'));
|
||||
return;
|
||||
}
|
||||
|
||||
gamble(sender, parseInt(action));
|
||||
}
|
||||
|
||||
/**
|
||||
* @commandpath gamblesetmax [amount] - Set how many points people can gamble.
|
||||
*/
|
||||
if (command.equalsIgnoreCase('gamblesetmax')) {
|
||||
if (action === undefined || isNaN(parseInt(action)) || action < 1) {
|
||||
$.say($.whisperPrefix(sender) + $.lang.get('gambling.set.max.usage'));
|
||||
return;
|
||||
}
|
||||
max = action;
|
||||
$.inidb.set('gambling', 'max', max);
|
||||
$.say($.whisperPrefix(sender) + $.lang.get('gambling.set.max', $.getPointsString(max)));
|
||||
}
|
||||
|
||||
/**
|
||||
* @commandpath gamblesetmin [amount] - Set the minumum amount of points people can gamble.
|
||||
*/
|
||||
if (command.equalsIgnoreCase('gamblesetmin')) {
|
||||
if (action === undefined || isNaN(parseInt(action)) || action < 1) {
|
||||
$.say($.whisperPrefix(sender) + $.lang.get('gambling.set.min.usage'));
|
||||
return;
|
||||
}
|
||||
min = action;
|
||||
$.inidb.set('gambling', 'min', min);
|
||||
$.say($.whisperPrefix(sender) + $.lang.get('gambling.set.min', $.getPointsString(min)));
|
||||
}
|
||||
|
||||
/**
|
||||
* @commandpath gamblesetwinningrange [range] - Set the winning range from 0-100.
|
||||
*/
|
||||
if (command.equalsIgnoreCase('gamblesetwinningrange')) {
|
||||
if (action === undefined || isNaN(parseInt(action)) || action.includes('-') || action < 1 || action > 100) {
|
||||
$.say($.whisperPrefix(sender) + $.lang.get('gambling.win.range.usage'));
|
||||
return;
|
||||
}
|
||||
winRange = action;
|
||||
$.inidb.set('gambling', 'winRange', winRange);
|
||||
$.say($.whisperPrefix(sender) + $.lang.get('gambling.win.range', parseInt(winRange) + 1, winRange));
|
||||
}
|
||||
|
||||
/**
|
||||
* @commandpath gamblesetgainpercent [amount in percent] - Set the winning gain percent.
|
||||
*/
|
||||
if (command.equalsIgnoreCase('gamblesetgainpercent')) {
|
||||
if (action === undefined || isNaN(parseInt(action)) || action < 1 || action > 100) {
|
||||
$.say($.whisperPrefix(sender) + $.lang.get('gambling.percent.usage'));
|
||||
return;
|
||||
}
|
||||
winGainPercent = action;
|
||||
$.inidb.set('gambling', 'winGainPercent', winGainPercent);
|
||||
$.say($.whisperPrefix(sender) + $.lang.get('gambling.percent', winGainPercent));
|
||||
}
|
||||
});
|
||||
|
||||
$.bind('initReady', function() {
|
||||
$.registerChatCommand('./games/gambling.js', 'gamble', 7);
|
||||
$.registerChatCommand('./games/gambling.js', 'gamblesetmax', 1);
|
||||
$.registerChatCommand('./games/gambling.js', 'gamblesetmin', 1);
|
||||
$.registerChatCommand('./games/gambling.js', 'gamblesetwinningrange', 1);
|
||||
$.registerChatCommand('./games/gambling.js', 'gamblesetgainpercent', 1);
|
||||
});
|
||||
|
||||
$.reloadGamble = reloadGamble;
|
||||
})();
|
||||
Reference in New Issue
Block a user