mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-29 07:59:01 +01:00
co-authored by
DreamySkrell <>
parent
7461bc4e99
commit
6c9ad01e6c
@@ -207,33 +207,33 @@
|
||||
var/result = rand(1,10000)
|
||||
if(result <= 4000) // 40% chance to not earn anything at all.
|
||||
won = 0
|
||||
speak("You've won: [won] CREDITS. Better luck next time!")
|
||||
speak("You've won: [won] credits. Better luck next time!")
|
||||
else if (result <= 8000) // 40% chance
|
||||
won = 50
|
||||
speak("You've won: [won] CREDITS. Partial winner!")
|
||||
won = 10
|
||||
speak("You've won: [won] credits. Better than nothing!")
|
||||
else if (result <= 9000) // 10% chance
|
||||
won = 100
|
||||
speak("You've won: [won] CREDITS. Winner!")
|
||||
won = 50
|
||||
speak("You've won: [won] credits. Try again!")
|
||||
else if (result <= 9500) // 5% chance
|
||||
won = 200
|
||||
speak("You've won: [won] CREDITS. SUPER WINNER! You're lucky!")
|
||||
won = 100
|
||||
speak("You've won: [won] credits. Halfway there!")
|
||||
else if (result <= 9750) // 2.5% chance
|
||||
won = 500
|
||||
speak("You've won: [won] CREDITS. MEGA WINNER! You're super lucky!")
|
||||
won = 200
|
||||
speak("You've won: [won] credits. You're even!")
|
||||
else if (result <= 9900) // 1.5% chance
|
||||
won = 1000
|
||||
speak("You've won: [won] CREDITS. ULTRA WINNER! You're mega lucky!")
|
||||
won = 500
|
||||
speak("You've won: [won] CREDITS. WINNER! You're lucky!")
|
||||
else if (result <= 9950) // 0.5% chance
|
||||
won = 1000
|
||||
speak("You've won: [won] CREDITS. SUPER WINNER! You're super lucky!")
|
||||
else if (result <= 9975) // 0.25% chance
|
||||
won = 1500
|
||||
speak("You've won: [won] CREDITS. MEGA WINNER! You're mega lucky!")
|
||||
else if (result <= 9999) // 0.24% chance
|
||||
won = 2500
|
||||
speak("You've won: [won] CREDITS. ULTIMATE WINNER! You're ultra lucky!")
|
||||
else if (result <= 9975) // 0.25% chance
|
||||
else // 0.01% chance
|
||||
won = 5000
|
||||
speak("You've won: [won] CREDITS. ULTIMATE WINNER! You're ultra lucky!")
|
||||
else if (result <= 9999) // 0.24% chance
|
||||
won = 10000
|
||||
speak("You've won: [won] CREDITS. ULTIMATE WINNER! You're ultra lucky!")
|
||||
else ///0.01% chance
|
||||
won = 25000
|
||||
speak("You've won: [won] CREDITS. JACKPOT WINNER! You're JACKPOT lucky!")
|
||||
|
||||
scratches_remaining -= 1
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
################################
|
||||
# Example Changelog File
|
||||
#
|
||||
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
|
||||
#
|
||||
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
|
||||
# When it is, any changes listed below will disappear.
|
||||
#
|
||||
# Valid Prefixes:
|
||||
# bugfix
|
||||
# wip (For works in progress)
|
||||
# tweak
|
||||
# soundadd
|
||||
# sounddel
|
||||
# rscadd (general adding of nice things)
|
||||
# rscdel (general deleting of nice things)
|
||||
# imageadd
|
||||
# imagedel
|
||||
# maptweak
|
||||
# spellcheck (typo fixes)
|
||||
# experiment
|
||||
# balance
|
||||
# admin
|
||||
# backend
|
||||
# security
|
||||
# refactor
|
||||
#################################
|
||||
|
||||
# Your name.
|
||||
author: DreamySkrell
|
||||
|
||||
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
|
||||
delete-after: True
|
||||
|
||||
# Any changes you've made. See valid prefix list above.
|
||||
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
|
||||
# SCREW THIS UP AND IT WON'T WORK.
|
||||
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
|
||||
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
|
||||
changes:
|
||||
- tweak: "Reduces potential space lotto win prizes."
|
||||
Reference in New Issue
Block a user