Inactive [DEV] BukkitContrib Alpha 0.1.7 [1000]

Discussion in 'Inactive/Unsupported Plugins' started by Afforess, May 21, 2011.

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

    Afforess

    BukkitContrib is superseded by Spout, the new Bukkit/Client framework.
     
  2. Offline

    triggerhapp

    Obviously not, since you still asked after you read the answer.
     
  3. Offline

    narrowtux

    In the commit for that feature, he said that opening the browser with the link will come later, I think when he's done the GUI.
     
  4. Offline

    triggerhapp

    What hurdles (legal) would we hit if we wanted to host a BukkitContrib client on a website, not downloadable, but runnable from the page?
    This idea sounds like it'll save alot of hassle but might have legal repercussions.
     
  5. Offline

    Boon Pek

    Well, that's a little sad, then. Players on my server have WorldEdit permissions and most of them use the WorldEdit CUI. Without ModLoader, the WorldEdit CUI is obsolete :/
     
  6. Offline

    narrowtux

    In fact, this downloads the minecraft.jar as well, so users that know a bit about the hidden Library/AppData/.*-Folders can easily get their minecraft.jar illegaly.
    I think providing a link to the BukkitContribInstaller is the best way. It's easy to use and installs the mod without issues.
     
    alta189 likes this.
  7. Offline

    DerKB

    Well, it works with TooManyItems, only some items miss there names so far,
    but what is not working seems modloader and zansminimap, with bukkticontribessentials i get the names, the player skins, region notifications, build in music, but not the custom ones, they get downloadet but do not start to be played.

    Confirmed is that these were working with only TMI installed, cause i moddet the client afterwards to get my minimap back and that seems to be the point where it stopped working.

    Installation order was
    BukkitContrib
    TMI
    - all working till here with only some item names in TMI missing -
    ModLoader
    zansminimap

    Hope you can find a solution to get the minimap working together with bukkitcontrib, cause i would miss it.

    Regards
    DerKB
     
  8. Offline

    triggerhapp

    That's where I thought the legal issues would crop up. Wouldnt it make sense to possibly just use an altered launcher which downloads a different set of jars? So it'll still need to connect to notch's authentication before it'll allow them to download it.

    Ofcourse, this would probably still be a grey area at best, legally :S
     
  9. Offline

    majorcyto

    Thanks, me and my members were linking things to each other and we all use the modded client. We were all kind of like hey wait a minute why isnt this feature here lol.
     
  10. Offline

    dezsta

    top pluggin but im having a issue with / commands they crash the server if i type in the ingame chat box but there fien if done through cmd cheers
     
  11. Offline

    Etburn

    could you make it compatible with modloader?

    Because i have ICKSlopes on my server -.-


    //EDIT: And the Achievements come in the chatbox :confused:, why?
     
  12. Offline

    narrowtux

    ModLoader is not supported. Afforess will write a client side plugin system, much like bukkits one because that's the better way to do it. Imagine... no more conflicting mods!
     
  13. Offline

    MadcowD

    Animated textures/ capes would be so cool. Just suggesting
     
  14. Offline

    Graype

    Allowing the use of sprite sheets would be very useful :D
     
    Afforess likes this.
  15. Hmm, how do I properly hook onBukkitContribSPEnable(), it seems that CUSTOM_EVENT gives errors when I press keys :/
    Code:
            BukkitContribListener eventBC = new BukkitContribListener()
            {
            	public void onBukkitContribSPEnable(BukkitContribSPEnable event)
            	{
            		ContribPlayer bcPlayer = event.getPlayer();
            		
            		bcPlayer.sendNotification("Welcome!", "", Material.BED);
            	}
            };
            
        	pm.registerEvent(Event.Type.CUSTOM_EVENT, eventBC, Event.Priority.Monitor, this);
    
    EDIT:
    Actually, it seems that all custom events trigger on onCustomEvent() using CustomEventListener:
    Code:
            CustomEventListener eventCustom = new CustomEventListener()
            {
            	public void onCustomEvent(Event event)
            	{
            		log.info("onCustomEvent() :: " + event.getEventName());
            		
            		if(event instanceof BukkitContribSPEnable)
            		{
                			log.info("onCustomEvent() :: is instanceof BukkitContribSPEnable");
                		
                			ContribPlayer bcPlayer = ((BukkitContribSPEnable)event).getPlayer();
                		
                			bcPlayer.sendNotification("Welcome!", "", Material.BED);
            		}
            	}
            };
            
        	pm.registerEvent(Event.Type.CUSTOM_EVENT, eventCustom, Event.Priority.Monitor, this);
    
    Is that supposed to happen ? doesn't it slow down server having servertick constantly hooked ? and other events aswell
     
  16. Offline

    Afforess

    Not really a priority. Not ruling it out, but unless you plan on writing it yourself, you won't see for for > 3 months.


    There will be no limitations on how you can arrange images.

    I discovered the bug with that - the development builds have it fixed. Try those.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 15, 2016
  17. Offline

    fffizzz

    i noticed i can see coordinates with this installed.. is there a setting to enable again ?
     
  18. Offline

    gekomees

    I made a railroad with powerrail start, a block to one side and railroad to the other. I placed a minecart on the powerrail and bam! Error. Happened in single player. Only mod installed is bukkitcontrib. Also, the Unlicensed notification pops up in single player too.
    Code:
    java.lang.NullPointerException
        at yo.stopMusic(SoundManager.java:337)
        at BukkitContrib.onTick(BukkitContrib.java:259)
        at uq.a(GuiIngame.java:52)
        at px.b(EntityRenderer.java:422)
        at net.minecraft.client.Minecraft.run(Minecraft.java:575)
        at java.lang.Thread.run(Unknown Source)
     
  19. Offline

    Afforess

    Yeah, it's fixed in the development SP builds.

    If you want a quick workaround, download the latest development build, swap your yo class with the one from the dev build, and play. ;)
     
  20. Offline

    gekomees

    Thanks, that did the trick.

    Edit: It crashed one more time though when I placed the minecart in the same place.
    Edit2: Now that I've tested it a bit more, seems like it randomly crashes when I either place the minecart there or sit in it. Not always but sometimes. But it doesn't lock me out of my save anymore, so it's an improvement.
     
  21. Offline

    RGadelha

    Logged in or offline?
    I've said it before, when I'm playing SSP offline the unlicensed notification ever appears to me, or am I missing something? :confused:
     
  22. Offline

    Redyugi

    It's been asked for almost every page for the past couple pages. No, as it is considered cheating, and it is getting taken out when Minecraft is officially "released", so you need to find something else anyway.
    It has happened to me logged in. It was only one time though. *shrug*

    @Afforess, just looking through the GUI code makes me want to do something special for my server. :)
     
  23. Offline

    Afforess

    If you're having crashes interacting with objects, you could also try swapping your xk class with the one from the dev build. ;)

    It's not even done yet, but yeah, it's pretty awesome. ;)

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 15, 2016
  24. Offline

    jameyc

    It's pretty exciting seeing so many mods transitioning to using this, can't wait to see how the GUI stuff gets used.

    Is there any way to save keybinds between sessions? They all seem to get lost when I close the client.
     
  25. Offline

    Afforess

    jameyc likes this.
  26. Offline

    gekomees

    Logged in of course.
     
  27. Offline

    Luke Zwekii

    (I hope this isn't a dumb question) Why do I automatically do /0.1.8 when I login to my server? Is it like part of the verification, or do I need to update my BC server plugin? :confused:
     
  28. Offline

    Afforess

    It's a verification command - it sends your version to the server to let it know what version you are running.
     
  29. Offline

    Luke Zwekii

    Oh, I should of guessed that ha ha. Thanks for clearing that up ;)
     
  30. Offline

    RGadelha

    Weird, pretty weird [creeper]

    So v0.2 is at least 5 days away? :'(

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 15, 2016
  31. Offline

    Afforess

    It was never going to be this weekend, I was using this weekend as a test weekend to find bugs with the GUI. Next weekend is v0.2

    I should warn you - v0.2 won't be v0.2. It will be v1.0 and in beta instead of alpha. There will also be a name change for the project (sorry plugin dev's - the only time, I promise!) as well as a new system for installing the client mod.
     
    alta189 and RGadelha like this.
Thread Status:
Not open for further replies.

Share This Page