Gmod Blues Slots

Most played games

After seeing someone still using my old outdated slots I was first surprised it still existed and hadn't fallen into the abise of the internet never to be see by the light of day again. Blues-Slots-Wheel-Of-Luck Lua MIT 4 1 0 0 Updated May 11, 2020. Blues-Decals Lua MIT 2 2 0 0 Updated May 11, 2020. Blues-Unboxing-3 Lua MIT 3 1 0 0 Updated May 11, 2020. Blue's Slots - Content. Unsubscribe In 1 collection by codeblueservers.com DarkRP. This is content for an.

Nowadays, the number of online games available in the internet is simply limitless. Every day, new titles are born and it’s easy to be confused by their diversity. However, all those games finally get boring. Is there any cure for it? If only you were able to create a game of your own, according to your own preferences and vision… Guess what, now you have such a chance! All you need is to sing up with Garry’s Mod and start building your own virtual world where everything will be just like you want! Excited? Time to learn a little more about this amazing project!

Gmod blues slots free

Games for everyone and by everyone

Garry’s Mod is an open sandbox allowing users from all over the world to create and share self-constructed minigames, from simple platformers to complex simulators. Once you register, you receive a piece of ‘land’ to build upon and a virtual toolbox containing a large set of instruments to reshape you ‘estate’ the very way you envision. What it is going to be is up to you. You can choose to strike the players with stunning architecture or focus on gameplay. Just use the materials available in the toolbox to fill your virtual space with textures, objects, characters and interactive features. Gradually, it is going to grow into a full-fledged game that will be available for playing for a vast number of users. People from various countries will be able to participate in your minigame and share their comments in the chat. You, too, will have an opportunity to test and appreciate numerous projects posted by others. Isn’t it just wonderful? The possibilities offered by Garry’s Mod have no limits and you’ll have a chance to check that on your own!

Anything you can imagine

You’ll be surprised by the number of genres and games available on Garry’s Mod servers. Thousands of users have already uploaded their projects for others to try out. If you are a fan of RPGs, you’ll find a great amount of thrilling adventures where you’ll have to play for a valiant hero travelling across fantasy lands, killing monsters and saving princesses. Those fascinated with more modern settings will have an opportunity to take part in various simulators, from visiting a virtual restaurant to hanging out in an online night club. There are also puzzles, strategies, quests and everything else you could imagine. Garry’s Mod doesn’t limit users in expressing their creative side. You can build just about anything that pops in your mind using the instruments suggested by the developers. And even if you can’t come up with an element you need, there is a vast assortment of various structures created by other users and available for download across thousands of servers. It’s not even necessary to build your own game; if you don’t feel like doing it, you can just as well test out the project posted by the others. There are hundreds of games worth your attention here!

Gmod Blues Slots Games

Garry’s Mod is a unique project giving you a broad field to experiment. Discover the world of limitless possibilities offered by this game-making platform and create a project you always dreamed of! This online sandbox with millions of participant from all over the planet has everything you need to build a whole virtual world that will function according to the laws you set!

Mar 4th, 2017
Never

Gmod Blues Slots Game

Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
  1. --[[Leaked by High Leaker ]]
  2. //IM AM NOT RESPONSIBLE IF THIS RUINS YOUR SERVERS ECONOMY.
  3. //BE SURE TO TEST IT AND MAKE SURE THAT YOU ARE HAPPY WITH THE ODDS OF WINNING
  4. //ALSO PLEASE PLEASE AFTER CONFIGURING THIS, DO NOT USE PERMA PROP ADDONS TO MAKE THE MACHINES PERMANENT
  5. //AS THIS WILL LIKELY BREAK IT. INSTEAD JUST PLACE THE MACHINES WHERE YOU WANT THEM AND TYP !saveslots
  6. //This will make them permanent, and it saves per map.
  7. //MAKE SURE YOU HAVE ADDED THE WORKSHOP TO YOUR SERVER OR
  8. //http://steamcommunity.com/sharedfiles/filedetails/?id=843596994
  9. WOL_CONFIG = {}
  10. //This is the time in seconds that no one can use the machine after someone spins it
  11. //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
  12. //Its usefull to stop people from stealing other peoples machines.
  13. //You can set it to zero but I strongly recommend leaving this at this time.
  14. //This is the price to increase the jackpot amount per spin.
  15. //You can set this to 0 to disable increacing it but I recommend you do
  16. WOL_CONFIG.jackpotIncreasePerSpin = 500
  17. //This is the minimal amount the jackpot can reset to
  18. //The jackpot gets reset after someone wins it and it then set to a random number
  19. //between the minimum and maximum jackpot numbers.
  20. //Set them both to zero if you want to jackpot to start at 0
  21. WOL_CONFIG.jackpotResetMax = 2000000 //2 mill is reasonable consider the rarity the jackpot should be.
  22. //The amount it charges the user to per spin (It does not charge for the bonus spins as they are free)
  23. //This is the icon used before displaying money, you can change this but its recomened to keep its leghnth to 1.
  24. //You can use anything like 'P' for point shop or these common one ($, €, £)
  25. //This is the chances of each item appearing on the reel
  26. //I tried my best to balance these but of course feel free to change them.
  27. //The chance has to be a whole number and is calculated by 'tickets'
  28. WOL_ITEM_CHANCE[1] = 1 //Bonus (WARNING, MAKING THIS TO HIGH WILL CRUSH YOUR ECONOMY AS PEOPLE CAN SPIN FOR THE JACKPOT MANY TIMES)
  29. WOL_ITEM_CHANCE[3] = 30 //Coins
  30. WOL_ITEM_CHANCE[5] = 60 //Bar Two
  31. WOL_ITEM_CHANCE[7] = 55 //Seven
  32. //These are the payouts for each wining combination.
  33. WOL_CONFIG.winning = {}
  34. //Getting three bonus in a row (This includes 3 bonus spins too)
  35. //Getting two bonus in a any position(This includes 3 bonus spins too)
  36. //Getting one bonus in a any position(This includes 3 bonus spins too)
  37. WOL_CONFIG.winning.threeRaspberry = 2500
  38. //Getting three coins in a row
  39. WOL_CONFIG.winning.twoCoins = 5000
  40. //Getting three diamonds in a row
  41. WOL_CONFIG.winning.twoDiamonds = 7500
  42. //Getting one diamond in any place
  43. WOL_CONFIG.winning.threeBar2 = 1750
  44. //Getting three BAR'S in a row
  45. WOL_CONFIG.winning.threeSeven = 3500
  46. //These are the items on the bonus wheel, DO NOT ADD OR REMOVE ANY
  47. WOL_AddBonusItem(100)
  48. WOL_AddBonusItem(400)
  49. WOL_AddBonusItem(2500)
  50. WOL_AddBonusItem(7500)
  51. WOL_AddBonusItem(15000)
  52. WOL_AddBonusItem(30000)
  53. WOL_AddBonusItem(60000)
  54. WOL_AddBonusItem(100000)
  55. WOL_AddBonusItem(175000)
  56. WOL_AddBonusItem(300000)
  57. //This is a list of ranks that can save machine places, using !saveslots
  58. 'superadmin',
  59. }
  60. //If you want to change the currency it uses then you can do so with these two functions.
  61. //The first checks if the player has enough money and the second one takes the money and the third one gives the money
  62. //You can change what is inside of these functions incase you want to switch it to pointshop or a custom gamemode currency.
  63. //Return try if yes, false if no
  64. WOL_CONFIG.onCheckIfCanAfford = function(ply, amount)
  65. end
  66. //Take what ever currency you are using from the player
  67. WOL_CONFIG.onPlayerTakeMoney = function(ply, amount)
  68. ply:addMoney(amount * -1) //Convert it to a negative number as thats how darkrp works.
  69. //Add the money to the players bank for what ever currency you use.
  70. WOL_CONFIG.onPlayerAddMoney = function(ply, amount)
  71. end
  72. //Lastly I guess thanks for the purchase, it helps me so much! I hope you enjoy your addon!

Gmod Blues Slots Play

Comments are closed.