Gmod Blues Slots
- Addon: Blue's Slots: Double Or Nothing Server Type: Recommended for DarkRP Code Protection / security: none / paywall Cost of addon (as the time of posting): $12.99 How to use: extract the folder to.
- Jump to: navigation, search. My way of getting around this is to use strings in all the slots of an array, and checking their indexes.
- Blue's Slots - Wheel Of Luck! Rip-code-blue Member uploaded ago. This is a github download, you will be re-directed to a Github download page.
Emptyarmorslotboots; emptyarmorslotchestplate. 164 gmod 6 gmode 4 gmodkiller 3 gmod12345 3 gmodrxs 2 gmodgames 1 gmod112 1 gmod123. This article will teach you how to prepare and upload an addon to the Steam Workshop. There are a few rules before you start uploading addons. Please see this page for complete set of rules: Steam Workshop Rules To upload an addon to workshop you wil.
Mar 4th, 2017
Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
Gmod Blues Slots Play
- --[[Leaked by High Leaker ]]
- //IM AM NOT RESPONSIBLE IF THIS RUINS YOUR SERVERS ECONOMY.
- //BE SURE TO TEST IT AND MAKE SURE THAT YOU ARE HAPPY WITH THE ODDS OF WINNING
- //ALSO PLEASE PLEASE AFTER CONFIGURING THIS, DO NOT USE PERMA PROP ADDONS TO MAKE THE MACHINES PERMANENT
- //AS THIS WILL LIKELY BREAK IT. INSTEAD JUST PLACE THE MACHINES WHERE YOU WANT THEM AND TYP !saveslots
- //This will make them permanent, and it saves per map.
- //MAKE SURE YOU HAVE ADDED THE WORKSHOP TO YOUR SERVER OR
- //http://steamcommunity.com/sharedfiles/filedetails/?id=843596994
- WOL_CONFIG = {}
- //This is the time in seconds that no one can use the machine after someone spins it
- //What this means is if you spin the machine, no one else can use it for at least 30 seconds after you finished using it
- //Its usefull to stop people from stealing other peoples machines.
- //You can set it to zero but I strongly recommend leaving this at this time.
- //This is the price to increase the jackpot amount per spin.
- //You can set this to 0 to disable increacing it but I recommend you do
- WOL_CONFIG.jackpotIncreasePerSpin = 500
- //This is the minimal amount the jackpot can reset to
- //The jackpot gets reset after someone wins it and it then set to a random number
- //between the minimum and maximum jackpot numbers.
- //Set them both to zero if you want to jackpot to start at 0
- WOL_CONFIG.jackpotResetMax = 2000000 //2 mill is reasonable consider the rarity the jackpot should be.
- //The amount it charges the user to per spin (It does not charge for the bonus spins as they are free)
- //This is the icon used before displaying money, you can change this but its recomened to keep its leghnth to 1.
- //You can use anything like 'P' for point shop or these common one ($, €, £)
- //This is the chances of each item appearing on the reel
- //I tried my best to balance these but of course feel free to change them.
- //The chance has to be a whole number and is calculated by 'tickets'
- WOL_ITEM_CHANCE[1] = 1 //Bonus (WARNING, MAKING THIS TO HIGH WILL CRUSH YOUR ECONOMY AS PEOPLE CAN SPIN FOR THE JACKPOT MANY TIMES)
- WOL_ITEM_CHANCE[3] = 30 //Coins
- WOL_ITEM_CHANCE[5] = 60 //Bar Two
- WOL_ITEM_CHANCE[7] = 55 //Seven
- //These are the payouts for each wining combination.
- WOL_CONFIG.winning = {}
- //Getting three bonus in a row (This includes 3 bonus spins too)
- //Getting two bonus in a any position(This includes 3 bonus spins too)
- //Getting one bonus in a any position(This includes 3 bonus spins too)
- WOL_CONFIG.winning.threeRaspberry = 2500
- //Getting three coins in a row
- WOL_CONFIG.winning.twoCoins = 5000
- //Getting three diamonds in a row
- WOL_CONFIG.winning.twoDiamonds = 7500
- //Getting one diamond in any place
- WOL_CONFIG.winning.threeBar2 = 1750
- //Getting three BAR'S in a row
- WOL_CONFIG.winning.threeSeven = 3500
- //These are the items on the bonus wheel, DO NOT ADD OR REMOVE ANY
- WOL_AddBonusItem(100)
- WOL_AddBonusItem(400)
- WOL_AddBonusItem(2500)
- WOL_AddBonusItem(7500)
- WOL_AddBonusItem(15000)
- WOL_AddBonusItem(30000)
- WOL_AddBonusItem(60000)
- WOL_AddBonusItem(100000)
- WOL_AddBonusItem(175000)
- WOL_AddBonusItem(300000)
- //This is a list of ranks that can save machine places, using !saveslots
- 'superadmin',
- }
- //If you want to change the currency it uses then you can do so with these two functions.
- //The first checks if the player has enough money and the second one takes the money and the third one gives the money
- //You can change what is inside of these functions incase you want to switch it to pointshop or a custom gamemode currency.
- //Return try if yes, false if no
- WOL_CONFIG.onCheckIfCanAfford = function(ply, amount)
- end
- //Take what ever currency you are using from the player
- WOL_CONFIG.onPlayerTakeMoney = function(ply, amount)
- ply:addMoney(amount * -1) //Convert it to a negative number as thats how darkrp works.
- //Add the money to the players bank for what ever currency you use.
- WOL_CONFIG.onPlayerAddMoney = function(ply, amount)
- end
- //Lastly I guess thanks for the purchase, it helps me so much! I hope you enjoy your addon!