[FUN] JumpBlock v1.1 - Jump blocks! [953]

Discussion in 'Inactive/Unsupported Plugins' started by robin0van0der0v, Jun 6, 2011.

  1. Offline

    robin0van0der0v

    JumpBlock - Jump blocks!
    Version: v1.1

    Features:
    • Craft Jump Blocks with Glass and Slabs.
    • Jump on the top of Jump Blocks.
    Download JumpBlock!
    Source is inside the jar file.

    How to use:
    First you need to craft a Jump Block with Glass and Slabs.
    Craft them so:
    [​IMG]

    And then place it, and jump on the top of it!

    Video-tutorial by xReeceLarkin (open)


    Permissions:
    Give the player you want this permissions for placing Jump Blocks.
    Code:
    jumpblock.place
    Give the player you want this permissions for breaking Jump Blocks.
    Code:
    jumpblock.break
    Known bugs:
    None. :D

    Properties:
    This plugin creates a properties file on Plugins/JumpBlock/config.yml. ;)

    Standard properties:
    Code:
    jumpblock:
        jumpvelocity: 1.0
        craftamount: 1
    Changelog:
    Version 1.0
    • Release.
    Version 1.1
    • Added Permissions.
    • Added configuration file.
     
    Noppoly likes this.
  2. Offline

    SummerSchool

    Cool but... how does it work ?
     
  3. Offline

    robin0van0der0v

    You craft a block and then you place it. ;)
    You (and other entities) can jump on it. :D
     
  4. Offline

    SummerSchool

    oh now i get it, you keep jumping its like rubber thats it ?
     
  5. Offline

    Daniel Few

    So i'm guessing it doesn't make a new block as I didn't think that was possible
    You've obviously got a new crafting recipe, but what block IS the jump block?
    Looking forward to trying this :)
    -DanJames
     
  6. Offline

    jtlcr777

    I'm guess its kinda like the plugins "roads" with its aerial faith plates that launch into the air? Because your description
    Code:
    Features:
    
     -   Craft Jump Blocks.
     -   Jump on Jump Blocks.
    
    doesnt seem to help me understand what this plugin does.
     
  7. Offline

    Professor29

    Based on the source, he uses a unique double step block with a data value of 4. Quite brilliant if you ask me - create a new block type without truly adding one...
     
    Noppoly likes this.
  8. Offline

    robin0van0der0v

    Yes. :)

    Yes, if you jump on a Jump Block you will launched into the air. ;)

    I saw those blocks on a other server and then I created this plugin. :)
     
  9. Offline

    jamescosten

    So its a bit like a trampoline :)
     
  10. Offline

    robin0van0der0v

    Yes. :)
     
  11. Offline

    feildmaster

    I like this plugin. It'd be fun with a few configuration settings though. ;)

    By the way
    Code:
    public void onBlockPlace(BlockPlaceEvent event)
      {
        if (event.getItemInHand().getTypeId() == 43)
        {
          event.getBlockPlaced().setTypeId(43);
          event.getBlockPlaced().setData(4);
        }
      }
    This turns all (placed) "43" into jump blocks. (So /give <username> 43 gives jump blocks)

    It's also pointless to give data 4 blocks when using the furnace. (inventory doesn't save the data, or maybe it's that it stacks the same ID's regardless of data?)

    *EDIT IN*

    In any case, good job. I do intend to use this plugin. ;)
     
  12. Offline

    Shooty

    Can you add a feature for we can regulare the power and no fall damage ?
     
  13. Offline

    Missnostalgia

    Really like where this plugin is going, so many interesting things to do with this plugin. *watched thread*
     
  14. Offline

    Zarius

    Have you tested it? It seems odd, but works. I tried tweaking the code to remove this bit and it no longer worked :/
     
  15. Would it be possible to make it so you can still stack single stone slabs without turning them into jump blocks? Maybe use ID 93 instead, which still turns into double stone slabs when you /give them to someone.
     
  16. Offline

    feildmaster

    @bobthejeffmonkey : you can still stack single stone slabs without turnign them into jump blocks.

    What happens is this id: 43 (which isn't used/can't be placed normally) becomes jump blocks.

    @Zarius : this plugin is dependent on that clip. it's just a few things aren't necessary... but THAT code is.
     
  17. Offline

    christley

    how far do they launch you? like a normal jump?

    recipe should include a slime at the top imo
     
    bluej100 and schools like this.
  18. Offline

    feildmaster

    they shoot you about 8 blocks into the air. i haven't really checked
     
  19. Offline

    Clucky

    Omg what you're doing here is amazing, adding a block without adding a block! You need to share this with other plugin makers so we don't have to keep reassigning blocks. :D Nonetheless, i'm making a trampoline and i'm gonna sell tickets. hehehe :p
     
  20. Offline

    robin0van0der0v

    This is the only block that has this, there are no other blocks that can do this. ;)
     
  21. Offline

    pedrofrq

    Cool.
    Permissions to build?
     
  22. Offline

    feildmaster

    permissions to.. make the block?
     
  23. Offline

    Deleted user

    That is smart. Never really thought of that. Opens up a lot of doors.

    So because this is just a plugin and just modifys the double step blocks.. it's perfectly safe to install and uninstall it?

    I stay away from mods that introduce new items because the last thing I want is for MC to update, and then the mod become abandoned leaving my world ruined or stuck in an older version.

    But seeing as this introduces no new items, it should be safe. Correct?

    It'd be kind of nice actually. I plan on having things like platforming races and whatnot in my server for server events to win prizes. It'd be cool to have jump blocks in them. However, I'd like the block to be special so you only see it during events.

    so maybe permissions to build it would be nice.


    and one question - is there any reason this was used instead of sponges?
     
  24. Offline

    robin0van0der0v

    Adding in next version. ;)

    That is hard. :(
    I can only add a recipe for everyone, not for single people. :(

    I never even thought about sponges. :p
     
  25. Offline

    Deleted user

    Awesome. What about my other question? I'm pretty new to running a server. (Catching on quick though ;)) I just want to make sure it's safe to install this plugin and uninstall it. If you ever abandon this then I wouldn't want something to be messed up.
    That's okay. As long as it's spawnable then that works. What's the ID though? I couldn't find it on the list.
    A bunch of other plugins probably use them so it still gives us something additional. :]
     
  26. Offline

    robin0van0der0v

    If I ever abandon this plugin or you stop using this plugin, you have the blocks still on your server but they are useless. ;)
     
  27. Offline

    Deleted user

    That's what I was thinking. Thanks. Probably going to try this out when I can. :]
     
  28. Offline

    feildmaster

    I was actually wondering what he meant by "permission to build," but i understood when I re-read it just now. (permission to place...)

    I understand it would be hard to limit the recipe. ;p
     
  29. Offline

    Deleted user

    What's the item ID for this?
     
  30. Offline

    feildmaster

Share This Page