CookieSlap

Discussion in 'Archived: Plugin Requests' started by blorp6161, Mar 12, 2013.

  1. Offline

    blorp6161

    Desc: I wanted to have a small cookie-slap arena for my players to play on but i cant figure out a way for them to be able to push a button and get a cookie with knockback 27. the only thing me & my Co-Owner could think of was making a Commandblock teleport you to a dispenser, get a cookie then teleport to the arena.

    Possible Commands: /cookieslap or /cs and it would give the player a cookie with a specified number in a config. I would like to make it CommandBlock friendly.

    Possible Permissions: CookieSlap.create - Allows you to create cookies with a specified enchantment

    When i would like the plugin: As soon as possible.
     
  2. Offline

    LaxWasHere

    Your post is very informative. Perhaps tell us what cookie slap is?
     
  3. Offline

    LiLChris

    Trying to copy a server called Cookieslap I believe, saw another post about this a day or so ago.

    A bunch of members have been asking for it, driving me nuts as well. :mad:
     
  4. Offline

    chasechocolate

    LaxWasHere You get a cookie with level 27 knockback and slap other players off into the void.

    Although, for any interested devs, it's not that hard to make:
    Code:java
    1. ItemStack cookie = new ItemStack(Material.COOKIE, 1);
    2. cookie.addUnsafeEnchantment(Enchantment.KNOCKBACK, this.getConfig().getInt("cookie.knockback"));
    3. player.getInventory().addItem(cookie);
     
  5. Offline

    LaxWasHere

    That's kind of a boring game, sorta like a cheap copy of Super smash bros
     
  6. Offline

    chasechocolate

    Yeah... but the server got popular enough to get SkyDoesMinecraft to create a gameplay video on it.
     
  7. Offline

    Zarius

    Hmm, OtherDrops could probably do that with the new redstone trigger (in latest dev build), example (this goes at the bottom of the otherdrops-drops.yml file):

    Code:
      WOOL@YELLOW:
        - action: POWERUP # if the wool is next to redstone wire that powers up
          drop: COOKIE@!KNOCKBACK#27
          region: [cookieslaparena]  # optional - limit this to a region
    
    You'd also need to set "enchantment_unlimited_levels" (*not quite the exact setting name) to true in the config.yml.
     
  8. Offline

    itsatacoshop247

    Damn, people gonna be copying my server.

    I might looking into creating an official public version made from the original since if someone is gonna do it, might as well have my branding.
     
    LiLChris likes this.
  9. Offline

    Zarius

    itsatacoshop247

    Imitation is the greatest flattery :) An official version sounds great.
     
  10. Offline

    ritipinheiro

    i need this too but just need the damage system like when they fall down the last person who hit them gets the kill

    Sorry bad english
     
  11. Offline

    blorp6161

    Im not trying to copy your server. We dont have that much players anyway and its just a couple maps, unlike your like 50 Maps :D. On the other hand, releasing an official cookieslap plugin would be great!

    EDIT: Your server is pretty d*nm fun though!
    my server isnt all cookieslap, thats just a little minigame i wanted to have on my server and also if you do release a plugin for cookieslap, ill make sure to make colored sign thats said credit to: itsatacoshop247.
     

Share This Page