Inactive [DEV] SpoutPlugin - Unleash the flow of endless possibilities [1.0-1.3.2]

Discussion in 'Inactive/Unsupported Plugins' started by SpoutDev, Aug 1, 2011.

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

    SpoutDev

    In order to centralize support of our legacy projects, we will no longer be providing support on Bukkit. Please use www.spout.org for support with our projects going forward.
     
  2. Offline

    Wulfspider

    If you are thinking of using other client mods with Spoutcraft, we'd recommend not doing it.
    If you are simply wanting to manually install Spoutcraft without our launcher, then you can refer to this:
    http://www.minecraftwiki.net/wiki/Mods/Installing_Mods

    http://mirror3.getspout.org/spout-dev-SNAPSHOT.jar

    You are using an incompatible build of Spout with it.
    Try: http://mirror3.getspout.org/spout-dev-SNAPSHOT.jar

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Nov 13, 2016
  3. Offline

    dockter

    I may be able to help your server problem, PST me please.

    Are any new development builds available yet? This is stilled bugged with the latest available build.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Nov 13, 2016
  4. Offline

    Wulfspider

    http://mirror3.getspout.org/spout-dev-SNAPSHOT.jar is build on the latest source.
    You know, you are capable of PMing us as well. ;)

    What?

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Nov 10, 2018
  5. Offline

    cidiantoby

    i have been using spout since 1.01 but ever since everyone has upgraded to 1.06 we have to close spoutcraft every 5 minutes cause it fills up with memory. No matter if we use 512 mb or 4 gb of ram. It still doesn't no matter what we do. First off am i the only server having this problem? Cause its really starting to get beyond annoying for us.
     
  6. Offline

    won983212

    Very nice, but Mode installation is not possible :(
    Please enable mode installation
     
  7. Is all up to date spout mods listed anywhere ?
     
  8. Offline

    Wulfspider

    http://plugins.bukkit.org/#ti=spout&ta=all&au=&subm=true&pno=0
    http://dev.bukkit.org/search/?scope=projects&search=spout
    http://spout.in/plugins

    I'm not sure what you are talking about, but the launcher works fine for installation. You are free to download the zip of the class files manually too.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Nov 13, 2016
  9. Offline

    won983212

    Plug-in is not. Minecraft Mod
     
  10. please can you add an option to disable optifine, the chunk loading isn't working as good as the original launcher ( i try with chunk update on 5) and the opengl option let you see like xray at the connexion, i like the concept of spout but now i can't use it like it would be, a perfect way to stop hack on serveur ( no f3 cheat, force texture pack...)
     
  11. Offline

    won983212

    Minecraft Mode installation is not possible :( ToomanyMode
     
  12. Offline

    Wulfspider

    Because we don't support other mods. We are building a framework for people to make addons and plugins. Manually installing mods is not something we intend or support.
     
  13. Offline

    misutaanime

    when are we going to get a new recommended build of spout craft? This memory leak near the bedrock is a major pain on our server.
     
  14. Offline

    EpicMule

    ok so this plugin seems really nice! but the thing is... i already have players on my server and i was wondering if spout would tell the players that they would need this plugin?
     
  15. Offline

    Afforess

    You can switch to the development builds via the launcher to fix that for the moment.

    We can't promote a new RB easily since our VPS is down. Hopefully will be back soon.

    If you switch the config to force Spoutcraft, it will tell players where to download the launcher. Otherwise, it's up to you to inform your playerbase.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Nov 13, 2016
  16. Offline

    EpicMule

    Ahhhhhh thanks bud :D
     
  17. Offline

    99lool

    Will you make a way for people to make shortcuts for commands in spoutcraft?
     
  18. Define shortcut.
     
  19. Offline

    Afforess

    Yes.
     
  20. Offline

    Pamelloes

    Whenever a user presses a button, the unknown command appears in the chat log. Is there anything I can do about this?
     
  21. Offline

    Wulfspider

    A button made by what plugin?
     
  22. Offline

    Pamelloes

    My plugin. :) It's been very problematic. Its a subclass of GenericButton, with only onButtonClick overwritten.
     
  23. Offline

    olloth

    Unknown command is from unknown /commands? What are you doing in the button?
     
  24. Offline

    Pamelloes

    changing variables...
     
  25. Offline

    Wulfspider

    I think he was looking for something a little more specific... can't help you if we don't know what you are doing.
     
  26. Offline

    Pamelloes

    This is my button code:
    Code:
        private static class TextureButton extends GenericButton {
            private static final String localroot = "http://192.168.1.100/downloads/";
            private static final String globalroot = "http://pamelloes.dyndns.org/downloads/";
    
            private static final String[] files = {"",        "SMPs_Revival_305500.zip","jolicraft_4.1.zip","SineCraft_v12.1.zip"};
            private static final String[] names = {"Default","SMPs Revival",           "JoliCraft",          "SineCraft"};
    
            private int position = 0;
    
            public TextureButton(int position) {
                super("Texture Pack: "+names[position]);
                this.position=position;
            }
    
            @Override
            public void onButtonClick(ButtonClickEvent e) {
                position++;
                position%=files.length;
                setText("Texture Pack: "+names[position]);
                setDirty(true);
            }
    
            public void applyTexture(SpoutPlayer player) {
                if(files[position].equals("")) return;
                String file = (isLocal(player) ? localroot : globalroot) + files[position];
                player.setTexturePack(file);
            }
    
            private boolean isLocal(SpoutPlayer player) {
                byte[] ip = player.getAddress().getAddress().getAddress();
                byte[][] local = {
                        {(byte) 192,(byte) 168},
                        {127,0,0,1}
                };
                boolean success = true;
                for(int i=0;i<local.length;i++) {
                    for(int j = 0;j<local[i].length;j++) if(local[i][j]!=ip[j]) success=false;
                    if(success) return true;
                    success=true;
                }
                return false;
            }
        }
    When pressed all it does is change a string value. I have no clue what might be creating the message. :(
     
  27. Offline

    olloth

    I am no clue either. Hmmmmm.
     
  28. Link to dev is dead, and current release won't work with CB 1302 (fixes a major memory leak with craftBlock)
     
  29. Offline

    Wulfspider

    http://ci.getspout.org for now. The regular download location isn't updated yet.
     
  30. Offline

    dockter

    Is it me or did the spout dev build numbers go backwards about 6-8 builds?
     
  31. Offline

    Wulfspider

    The backup wasn't the latest. They will be back up to where they were soon.
     
Thread Status:
Not open for further replies.

Share This Page