Gmod Blues Slots
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time. About Press Copyright Contact us Creators Advertise Developers Terms Privacy Policy & Safety How YouTube works Test new features Press Copyright Contact us Creators. GitHub is where the world builds software. Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Gmod Blues Slots
Mar 4th, 2017
Never
- Easy to play at, you Blue Slots Gmod don't have to go outside your door, just relax behind your computer and play Blue Slots Gmod slots roulette or any other game you like as if you are in Blue Slots Gmod a real landbased casino, the graphics of the casino slots or great, scharp en you can play wothout any problem, they have the best servers.
- Blue's Slots - Content. Unsubscribe In 1 collection by codeblueservers.com DarkRP. This is content for an.
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
Gmod Blues Slots Games
Gmod Blues Slots Game
- --[[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!