Spell Words In Sky?

Discussion in 'Plugin Development' started by chenr1, Jul 22, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    chenr1

    Hey guys, I'm making a plugin but I got to a point to hwere I would have to put GIANT letters in the sky? Like a name or something like that,...any help?
     
  2. Offline

    ZeusAllMighty11

    Use a spawnblocking method. Like how skyblock SMP does it
     
  3. Offline

    chenr1

    Took some looksies at that, but how would I spell letters like that?
     
  4. Offline

    ZeusAllMighty11

    A lot of work....I can't even tell you.


    Best bet is to set up a WorldEditSchematic for each letter and place it.
     
  5. Offline

    chenr1

    I know nothing about shcematics but I just did a little research so bassicly I would just create it and paste it...API for that?
     
  6. Offline

    ZeusAllMighty11

    look at the worldedit APi
     
  7. Offline

    calebbfmv

    Holy Mother of good god of Coding :O that's it I'm done.
     
  8. Offline

    chenr1

    What?
     
  9. Offline

    calebbfmv

    This thing is awesome IDK what I would do just saying looks cool
     
  10. Offline

    r0306

    chenr1
    You will have to set up predefined three-dimensional arrays containing the materials for each block type so that you can copy the blocks onto the world when you type a command. Try looking at the source code for plugins that make custom structures.
     
  11. Offline

    chenr1

    thanks
    r0306
    what plugin has custom structures like that?

    Ok wait...i found
    Code:
        private void loadArea(World world, File file,Vector origin) throws DataException, IOException, MaxChangedBlocksException{
        EditSession es = new EditSession(new BukkitWorld(world), 999999999);
        CuboidClipboard cc = CuboidClipboard.loadSchematic(file);
        cc.paste(es, origin, false);
        }
    Just Skidded it though not sure how to use it.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 27, 2016
  12. Offline

    r0306

    chenr1
    I'm really not sure about how to do this because I've never used either one of these before but that code looks good.
     
  13. Offline

    chenr1

    Aw{insert inapropriate word here} I was checking In with a friend on his server to get his help...but hes int he middle of a DDOS attack. Gues I'll have to wait later.
     
  14. Offline

    PoorBoyDrew

    chenr1
    Take a look at this to get some ideas. He does all kinds of stuff with blocks
     
  15. Offline

    chenr1

    Thanks man...i'll deffinatly take a look at that.
     
Thread Status:
Not open for further replies.

Share This Page