Thread: My Party Room

Page 1 of 3 123 LastLast
Results 1 to 10 of 30
  1. #1 My Party Room 
    ¯\_(ツ)_/¯


    Join Date
    Jul 2014
    Posts
    1,803
    Thanks given
    928
    Thanks received
    550
    Rep Power
    299
    Hey, so I've been working on a party room system for my project, and I think that it's worthy of a show-off because I think I did a good job, and I'm proud of the results.
    So this party room system has a custom interface that is alike the one that you would see in current RuneScape, where you put items in and it goes to a box, and if you actually want to add the items to the drop, well then you click accept and the items will be added to the drop party.

    So I made a video that shows the party room, sped up the video, so it may be hard to understand what's going on at some points or realize the special features of this system. So for that reason I will list the main features and how it works.


    Features:
    -When items are added to the 'Items waiting to be dropped' box, the items in the interface will be updated for everyone
    -After items are added to the items waiting box, a player can pull the lever.
    -Once the lever is pulled, a timer will start to count down. Items can still be added to the chest while the timer is going down.
    -Once the timer has reached 0:00, if there was a drop party already going on, the balloons will get deleted, and all items left in the items being dropped box will be removed. the items in the 'items waiting to be dropped' box will then be moved to the items being dropped box, and balloons will start to fall, one balloon every 600ms.
    -When a player pops a balloon, if the item is stacked in the chest, he will receive a random amount of that item, and each stacked item can split into at most 5 different stacks.
    -After a balloon is popped, the item from that balloon will appear on the ground, however about 1 in 5 balloons will be empty, so it is random and the party will last for a while so it's enjoyable for all players.
    -Items can be added in multiple stacks, for example if I want to drop 10 max cash stacks, it is possible to do so, and it all works perfectly, just add them to the chest and they will be dropped.
    -Multiple people can add items to the chest at once, the drop party does not necessarily need to be hosted by one person.
    -When the lever is pulled, a message goes out to all players with an estimated value of all the items together which is calculated with a BigInteger which you will see in the video when I add 2b rare sets to the chest.
    -Party pete is at the party room and he can tell you an estimated value of the drop party at any time.
    -Balloons don't drop at a spot where there are already balloons


    VIDEO:









    please leave feedback, and suggestions!
    Reply With Quote  
     

  2. #2  
    Banned

    Join Date
    Nov 2012
    Posts
    1,094
    Thanks given
    173
    Thanks received
    136
    Rep Power
    0
    Looks good, gj.
    Reply With Quote  
     

  3. #3  
    Extreme Donator My Party Room Market Banned



    Join Date
    Aug 2011
    Age
    28
    Posts
    3,589
    Thanks given
    1,402
    Thanks received
    1,620
    Rep Power
    5000
    Looks pretty nice

    Good job lad

    Attached image

    Attached image
    Discord: Roy#2382

    Reply With Quote  
     

  4. #4  
    ¯\_(ツ)_/¯


    Join Date
    Jul 2014
    Posts
    1,803
    Thanks given
    928
    Thanks received
    550
    Rep Power
    299
    thanks any suggestions?
    Reply With Quote  
     

  5. #5  
    Boy Wonder


    Join Date
    Mar 2012
    Posts
    849
    Thanks given
    139
    Thanks received
    80
    Rep Power
    99
    Well done looks good, can't think of anything other than the timer on the chest interface seemed a little weird, how random are the items as far as items per balloon popped?

    Reply With Quote  
     

  6. #6  
    ¯\_(ツ)_/¯


    Join Date
    Jul 2014
    Posts
    1,803
    Thanks given
    928
    Thanks received
    550
    Rep Power
    299
    Quote Originally Posted by Metorrite View Post
    Well done looks good, can't think of anything other than the timer on the chest interface seemed a little weird, how random are the items as far as items per balloon popped?
    the timer decreases every 17 game ticks, which is about 10.2 seconds (planning on making it every 3 seconds or so)

    and I will explain in depth how items per balloon works.


    for every item inside the chest, there will be 5 balloons, meaning that if there is 4 items in the chest, there will be 20 balloons in total.
    Since there are 5 balloons for each item, some will be empty, but if the items are stacked, then the 5 balloons will each take a random amount from that total stack, maybe only 2, or 3 balloons out of the 5 will have stacks in them, but then after each balloon got a random amount, if there is still more of that stack to be dropped, the final balloon for that item will have it.

    Balloons are dropped randomly, not according to the order of the items in chest.

    the system is pretty complex and has some things that are hard to explain, but I did my best to explain this.
    Thanks for the nice words


    and when you say 'how random'
    my answer is
    Misc.random
    Reply With Quote  
     

  7. #7  
    Boy Wonder


    Join Date
    Mar 2012
    Posts
    849
    Thanks given
    139
    Thanks received
    80
    Rep Power
    99
    Quote Originally Posted by GTFO View Post
    the timer decreases every 17 game ticks, which is about 10.2 seconds (planning on making it every 3 seconds or so)

    and I will explain in depth how items per balloon works.


    for every item inside the chest, there will be 5 balloons, meaning that if there is 4 items in the chest, there will be 20 balloons in total.
    Since there are 5 balloons for each item, some will be empty, but if the items are stacked, then the 5 balloons will each take a random amount from that total stack, maybe only 2, or 3 balloons out of the 5 will have stacks in them, but then after each balloon got a random amount, if there is still more of that stack to be dropped, the final balloon for that item will have it.

    Balloons are dropped randomly, not according to the order of the items in chest.

    the system is pretty complex and has some things that are hard to explain, but I did my best to explain this.
    Thanks for the nice words


    and when you say 'how random'
    my answer is
    Misc.random
    ok i thought the timer just looks weird going down every 10s rather than every tick updating it, how are you keeping track of the time? just curious, and that balloon system sounds exactly how i would do it myself if i were doing it. might make my own actually, so good job on that. and to your awnswer to my 'how random' question... lol Good Job tho looks great

    Reply With Quote  
     

  8. #8  
    ¯\_(ツ)_/¯


    Join Date
    Jul 2014
    Posts
    1,803
    Thanks given
    928
    Thanks received
    550
    Rep Power
    299
    Quote Originally Posted by Metorrite View Post
    ok i thought the timer just looks weird going down every 10s rather than every tick updating it, how are you keeping track of the time? just curious, and that balloon system sounds exactly how i would do it myself if i were doing it. might make my own actually, so good job on that. and to your awnswer to my 'how random' question... lol Good Job tho looks great
    haha xd I wanted the timer to go down every 1 second, but the tick system is only every 600ms, and I don't feel like creating another process just for a party room timer, however, I am planning on making it go down every 5 ticks which would be 3 seconds.
    Reply With Quote  
     

  9. #9  
    Banned

    Join Date
    Feb 2014
    Posts
    1,204
    Thanks given
    138
    Thanks received
    450
    Rep Power
    0
    I'd make all of the bankers shout something like "1500m drop party at falador!" those were the days lol
    Reply With Quote  
     

  10. Thankful users:


  11. #10  
    ¯\_(ツ)_/¯


    Join Date
    Jul 2014
    Posts
    1,803
    Thanks given
    928
    Thanks received
    550
    Rep Power
    299
    Quote Originally Posted by kyoto View Post
    I'd make all of the bankers shout something like "1500m drop party at falador!" those were the days lol
    yeah might do that, I also want to have the falador knights do the dance on the table,
    Reply With Quote  
     

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. 45% Party room (First Tut! =) )
    By cjavacoder in forum Tutorials
    Replies: 18
    Last Post: 01-18-2009, 11:30 PM
  2. Drop party room
    By i penguin i in forum Tutorials
    Replies: 9
    Last Post: 09-29-2008, 11:39 PM
  3. Party room baloons [][][]
    By etiosa in forum Tutorials
    Replies: 9
    Last Post: 09-26-2007, 09:52 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
  •