Vegas Island: MapleBall

Page 1 of 4 1234 LastLast
Results 1 to 15 of 56
  1. #1
    Proficient Member Lethargic is offline
    MemberRank
    Jul 2010 Join Date
    CanadaLocation
    189Posts

    Vegas Island: MapleBall

    Hi guys -- new addition to VEGAS Island, a sports game, MapleBall! C:

    This is how it breaks down. 1 GM, two players. The GM will act as the human "Ball" as well as the Referee. The GM should preferably have no equips on, no buffs and all their stats should be 4.

    Rules: Ball : No buffs, no moving. Players: Don't set a bomb before the referee says "go". You get 15 bombs per round, you must use them all before getting more.

    How to Play: The ball stands in the middle, and two players on either side, on a long-ish platform, for me, I used FM 13. The referee will say "go" and the players will use @setbomb to set a bomb, which will push the ball away from the bomb. It takes two bombs consecutively to throw the ball off the platform. The side which the ball falls off is the side that loses.
    EG. Player on the right pushed the ball off to the left. Player on the Right wins, player on the left loses.


    Here's a picture.. :
    Spoiler:


    Here's the NPC -- I advise you to block off the portals into the map of your choice.

    PHP Code:
    var status 0

    function 
    start() { 
        
    status = -1
        
    action(100); 


    function 
    action(modetypeselection) { 
        if (
    mode == -1) { 
            
    cm.dispose(); 
        } else { 
            if (
    mode == && status == 0) { 
                
    cm.dispose(); 
                return; 
            } 
            if (
    mode == 1
                
    status++; 
            else 
                
    status--; 
            if (
    status == 0) { 
                
    cm.sendSimple ("Welcome to MapleBall! This is a sport, similar to socccer, invovling human balls and bombs!#e#d" 
                     
    "#k\r\n#L80##rBombs please!" 
                     
    "#k\r\n#L81##rHow to play." 
                     
    "#k\r\n#L82##rLeave."); 

                } else if (
    selection == 80) { 
                if (
    cm.haveItem(2100067)) {
                    
    cm.sendOk("You already have bombs. Use them all or drop them.");
                    
    cm.dispose();
                } else {
                    
    cm.gainItem(210006715);
                    
    cm.sendOk("You have gotten 15 bombs! You must use them all in order to get another 15.");
                    }
                } else if (
    selection == 81) { 
                    
    cm.sendOk("This is a special event. There will be a player who is designated as the Ball. The ball will stand in the middle of the platform and will not move. A GM Referee will start the match by saying Go. At this point, two players who have been standing on either side of the ball will be allowed to use bombs. These are used by typing @setbombs. When these bombs explode, they will push the ball away from them. Whichever player knocks the ball off their opponent's side first, wins. This is called a goal. With a large amount of players, the game will be played in a tournament style, with a winner and runner up.");
                    
    cm.dispose();
            } else if (
    selection == 82) {
                
    cm.warp(910000000);
                
    cm.sendOk("Bye!");
                
    cm.dispose();
            }
        }

    This NPC gives you 15 bombs when you run out, tells you how to play, and warps you out of the map.

    Here's the command.. @setbomb. Don't forget to add it in CommandDefinition

    PHP Code:
            } else if (splitted[0].equals("@setbomb")) {
                if (
    player.haveItem(21000671truetrue) && player.getMapId() == 910000013) {
                    
                    
    MapleInventoryManipulator.removeById(cMapleInventoryType.USE, 21000671falsefalse);
                    
    player.getMap().spawnMonsterOnGroudBelow(MapleLifeFactory.getMonster(9300166), player.getPosition());
                } else {
                    
    mc.dropMessage("You do not have any bombs, or you are not in the MapleBall map.");
                } 
    This command spawns a bomb (which is a mob.) It uses up ONE "Bombs for Hunting Competition".

    VARIATIONS ON THIS GAME: MapleBombWrestling - No ball, the players are not allowed to use any buffs, or equips. They try and knock each other off with bombs. This often lasts longer and is more challenging.


    MapleBombDodging -
    If any of you have ever played Super Smash Brothers, the bombs that start falling at the end- You could have a few gm's in hide, randomly spawning bombs - whoever falls off first loses.

    If you don't understand, leave a post, and I'll try to explain as best as I can.

    VEGAS ISLAND.

    EDIT: Sorry. Mixed up the @setbomb command. Fixed it now.

    Here are some links to other Vegas Island Things

    BlackJack NPC
    Slot Machine

    As far as credit goes: I had been playing this before, me and my friend Anh polished the idea.. The coding was done by me.

    Youtube Video showing how to play
    [ame="http://www.youtube.com/watch?v=6DHlwRQ6zaY"]YouTube- MapleBall in Doodlestory[/ame]


    EDIT.
    A couple days ago I had this guy come onto my server, and accusing me of being a "fucking leecher" for taking MapleBall. Just so everybody knows, I own Doodlestory. Therefore, I'm not LEECHING when I put my own release on my own server. :/
    Last edited by Lethargic; 15-07-10 at 09:37 AM.


  2. #2
    Member raydian is offline
    MemberRank
    Aug 2009 Join Date
    CybertronLocation
    64Posts

    Re: Vegas Island: MapleBall

    Lol amazing i recommend you make a short video of this event :)

  3. #3
    Proficient Member Lethargic is offline
    MemberRank
    Jul 2010 Join Date
    CanadaLocation
    189Posts

    Re: Vegas Island: MapleBall

    I plan on doing that, just need some players who actually have a chance of beating me.. I might make an NPC to take bets on who wins, or maybe even make it so you can challenge the champion with something, eg - for 1000 mesos, to the winner.

    Also -- a champion belt? Anybody know a good item for that?

  4. #4
    Account Upgraded | Title Enabled! JewSanta is offline
    MemberRank
    Mar 2009 Join Date
    1,264Posts

    Re: Vegas Island: MapleBall

    Another amazing release!

  5. #5
    Account Upgraded | Title Enabled! HorrorChix89 is offline
    MemberRank
    May 2010 Join Date
    ArkansasLocation
    1,279Posts

    Re: Vegas Island: MapleBall

    Oh wow this is great!

  6. #6
    may web.very maple.pls. iAkira is offline
    MemberRank
    Aug 2009 Join Date
    somewhere..Location
    2,378Posts

    Re: Vegas Island: MapleBall

    Looks impressive

    ---------- Post added at 12:27 AM ---------- Previous post was at 12:26 AM ----------

    Also i suggestion adding a video to understand this a bit better

  7. #7
    Proficient Member Lethargic is offline
    MemberRank
    Jul 2010 Join Date
    CanadaLocation
    189Posts

    Re: Vegas Island: MapleBall

    Quote Originally Posted by jewsanta View Post
    Another amazing release!
    Thank you very much! C:

  8. #8
    I'm sexy and I know it :) Deagan ツ is offline
    MemberRank
    Oct 2008 Join Date
    clubs ;\Location
    1,317Posts

    Re: Vegas Island: MapleBall

    Lol at the screenshot though:

    "I'm the human ball, the pots are players =D"

  9. #9
    Proficient Member Lethargic is offline
    MemberRank
    Jul 2010 Join Date
    CanadaLocation
    189Posts

    Re: Vegas Island: MapleBall

    As promised, a Youtube video is up - shows you how to play MapleBall. c:


    [ame=http://www.youtube.com/watch?v=6DHlwRQ6zaY]YouTube - MapleBall in Doodlestory[/ame]

  10. #10
    Account Upgraded | Title Enabled! LolIH8Flamers is offline
    MemberRank
    Jul 2010 Join Date
    222Posts

    Re: Vegas Island: MapleBall

    So you need 1 extra player to be ball?

  11. #11
    return null; mertjuh is offline
    MemberRank
    Dec 2008 Join Date
    The NetherlandsLocation
    1,269Posts

    Re: Vegas Island: MapleBall

    haha very creative I like it. :]
    or you could make a last man standing bomb event so when a players falls down he will die.

  12. #12
    Proficient Member Lethargic is offline
    MemberRank
    Jul 2010 Join Date
    CanadaLocation
    189Posts

    Re: Vegas Island: MapleBall

    Yes - yes you do. I already have a sort of variation on that, GM in hide randomly spawns bombs everywhere.
    Or you could spawn like, ultra-neckis.

    ANY MORE IDEAS FOR VEGAS ISLAND?

    Craps, Poker, too hard.
    Has anybody ever seen that game where there are, I guess, 7 people (example) connected to strings. Each person has their individual string, but they don't know which one. Each person takes a turn cutting a string...

    If anybody understood me, if you want to help me work on that ,it'd be great. I know just the map. Send me a pm.

  13. #13
    I'm overrated. Fraysa is offline
    MemberRank
    Apr 2008 Join Date
    4,891Posts

    Re: Vegas Island: MapleBall

    I will improve this, there's something that is called
    Lock, which removes the UI for you, you can't talk or move,
    and u can see only the screen [It was in abidestory],
    and then make a squad, people enter asp layers and 1 as the ball,
    and then if the squad doesn't match (5vs4) it doesn't start, if it
    does - ur way to go,

    the player ui is locked, he spawns at the middle, players
    are spawned at the sides. there's a timer, 5,4,3,2,1,
    it stars. player can move only, and set bombs (which won't
    be @setbomb, will be the item (easier)).

    Then if player is off the ground of soccer [determines by
    spawn points], it locks ui. if the ball is off the ground,
    it reset timer and says "Goalllll! 1:0, Keep going or stop match?, use @stopmatch or @keepgoing (leader of squad),
    that'll be soccer.

  14. #14
    Account Upgraded | Title Enabled! LolIH8Flamers is offline
    MemberRank
    Jul 2010 Join Date
    222Posts

    Re: Vegas Island: MapleBall

    Quote Originally Posted by Xoslize View Post
    I will improve this, there's something that is called
    Lock, which removes the UI for you, you can't talk or move,
    and u can see only the screen [It was in abidestory],
    and then make a squad, people enter asp layers and 1 as the ball,
    and then if the squad doesn't match (5vs4) it doesn't start, if it
    does - ur way to go,

    the player ui is locked, he spawns at the middle, players
    are spawned at the sides. there's a timer, 5,4,3,2,1,
    it stars. player can move only, and set bombs (which won't
    be @setbomb, will be the item (easier)).

    Then if player is off the ground of soccer [determines by
    spawn points], it locks ui. if the ball is off the ground,
    it reset timer and says "Goalllll! 1:0, Keep going or stop match?, use @stopmatch or @keepgoing (leader of squad),
    that'll be soccer.
    damn sounds awesome! but looks complicated to code,

  15. #15
    Account Upgraded | Title Enabled! Shoot is offline
    MemberRank
    Jan 2009 Join Date
    417Posts

    Re: Vegas Island: MapleBall

    I am sad that this isn't in KryptoDev, other than that, this is pretty epic. Good job!



Page 1 of 4 1234 LastLast

Advertisement