Thread: Gambling RuneScape-style

Page 1 of 3 123 LastLast
Results 1 to 10 of 25
  1. #1 Gambling RuneScape-style 
    (Official) Thanksgiver

    Arham's Avatar
    Join Date
    Jan 2013
    Age
    23
    Posts
    3,415
    Thanks given
    7,254
    Thanks received
    1,938
    Rep Power
    3905
    I don't really like or understand the traditional way gambling is done on servers, so I decided to take a RuneScape-style approach to it.



    Here's the runes and their values + how it gets the random rune:
    Code:
        /**
         * Is using the Magic class for the IDs too repetitive?
         */
        private enum Rune {
            AIR(Magic.AIR_RUNE, 1),
            MIND(Magic.MIND_RUNE, 2),
            WATER(Magic.WATER_RUNE, 3),
            EARTH(Magic.EARTH_RUNE, 4),
            FIRE(Magic.FIRE_RUNE, 5),
            BODY(Magic.BODY_RUNE, 6),
            COSMIC(Magic.COSMIC_RUNE, 7),
            CHAOS(Magic.CHAOS_RUNE, 8),
            NATURE(Magic.NATURE_RUNE, 9),
            DEATH(Magic.DEATH_RUNE, -1);
    
            private static final List<Rune> VALUES = Collections.unmodifiableList(Arrays.asList(values(  )));
            private static final int SIZE = VALUES.size();
    
            //@formatter:off
            private @Getter int id;
            private @Getter int value;
            //@formatter:on
    
            Rune(int id, int value) {
                this.id = id;
                this.value = value;
            }
    
            public static Rune getRandomRune() {
                return VALUES.get(Utils.random(SIZE));
            }
        }
    By the way, clem585 is awesome, so go look at him and his project too.
    Attached image
    Attached image
    Quote Originally Posted by MrClassic View Post
    Arham is the official thanker!
    List of my work here!
    Reply With Quote  
     


  2. #2  
    Registered Member Bray's Avatar
    Join Date
    Jan 2016
    Age
    25
    Posts
    11
    Thanks given
    1
    Thanks received
    2
    Rep Power
    11
    Looks good buddy. Like always
    Reply With Quote  
     

  3. Thankful user:


  4. #3  
    Middle Finger is Here


    Join Date
    Feb 2012
    Age
    31
    Posts
    2,546
    Thanks given
    377
    Thanks received
    502
    Rep Power
    162
    Looks very good and unique man. nice.
    Hi
    Reply With Quote  
     

  5. Thankful user:


  6. #4  
    Donator

    Join Date
    Mar 2015
    Posts
    244
    Thanks given
    72
    Thanks received
    47
    Rep Power
    32
    Very nicely done! Goodjob!!
    Reply With Quote  
     

  7. Thankful user:


  8. #5  
    Extreme Donator Gambling RuneScape-style Market Banned



    Join Date
    Aug 2011
    Age
    28
    Posts
    3,589
    Thanks given
    1,402
    Thanks received
    1,620
    Rep Power
    5000
    That's nice gambling system, I want it now lol

    Good job on this

    Attached image

    Attached image
    Discord: Roy#2382

    Reply With Quote  
     

  9. Thankful user:


  10. #6  
    Contributor

    clem585's Avatar
    Join Date
    Sep 2013
    Posts
    3,788
    Thanks given
    706
    Thanks received
    702
    Rep Power
    570
    Very original way to do it, I've never really seen a game like this before. Is the maximum runes you can draw 10? Or do the runes delete themselves and you can keep going until you get a death rune?
    Project thread
    Reply With Quote  
     

  11. Thankful user:


  12. #7  
    What?

    Luminous's Avatar
    Join Date
    Apr 2015
    Posts
    489
    Thanks given
    231
    Thanks received
    341
    Rep Power
    179
    Niice, i remember that interface from Ghosts Ahoy when gambling against Robin in runedraw. fun times.

    good work.
    Reply With Quote  
     

  13. Thankful user:


  14. #8  
    Registered Member
    1210saad's Avatar
    Join Date
    Aug 2013
    Posts
    315
    Thanks given
    39
    Thanks received
    22
    Rep Power
    132
    Looks sick, nice job.
    Attached image
    Reply With Quote  
     

  15. Thankful user:


  16. #9  
    Donator


    Join Date
    Jan 2014
    Posts
    1,652
    Thanks given
    428
    Thanks received
    501
    Rep Power
    221
    Very neat, Arham
    Reply With Quote  
     

  17. Thankful user:


  18. #10  
    Registered Member
    Vippy's Avatar
    Join Date
    Oct 2014
    Age
    25
    Posts
    2,572
    Thanks given
    984
    Thanks received
    1,933
    Rep Power
    5000
    Very nice
    Reply With Quote  
     

  19. Thankful user:


Page 1 of 3 123 LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. The Hunger Games - RuneScape Styled
    By BenBeri in forum Projects
    Replies: 10
    Last Post: 03-04-2013, 06:50 PM
  2. Replies: 33
    Last Post: 04-05-2010, 08:34 PM
  3. Replies: 0
    Last Post: 03-24-2008, 06:36 PM
  4. Dane Cook - Creepy guy - Runescape style
    By Thecowman in forum Media
    Replies: 0
    Last Post: 03-24-2008, 06:34 PM
  5. [MINIGAME] Maze, Runescape style! (kinda?)
    By RSSJ in forum Tutorials
    Replies: 10
    Last Post: 02-24-2008, 10:25 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •