Neutrino [R63] [Java] [Opensource]

Page 10 of 11 FirstFirst ... 234567891011 LastLast
Results 226 to 250 of 264
  1. #226
    Apprentice hippydude1234 is offline
    MemberRank
    Mar 2009 Join Date
    15Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Does it work for you without disconnecting ?

  2. #227
    Valued Member GheddoMonsta is offline
    MemberRank
    Feb 2011 Join Date
    127Posts

    Re: Neutrino [R63] [Java] [Opensource]

    yes?! xd without disconnecting ;D and the Finded unregistered Packet [3577] 3577 is the packet !! this must you added xD

  3. #228
    Apprentice hippydude1234 is offline
    MemberRank
    Mar 2009 Join Date
    15Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Oh right wanna teamviewer or something code project together?

  4. #229
    Valued Member GheddoMonsta is offline
    MemberRank
    Feb 2011 Join Date
    127Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Effects Don't work xD hmm i can't buy one effect oO

    hm i have teamviewer why?! XD

  5. #230
    Apprentice hippydude1234 is offline
    MemberRank
    Mar 2009 Join Date
    15Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Yeh I know that we need to fix the buying process

  6. #231
    Valued Member GheddoMonsta is offline
    MemberRank
    Feb 2011 Join Date
    127Posts

    Re: Neutrino [R63] [Java] [Opensource]

    yes ;D hmm i'm a noob in Java xD

  7. #232
    Ask me about Daoism FullmetalPride is offline
    MemberRank
    Nov 2010 Join Date
    2,172Posts

    Re: Neutrino [R63] [Java] [Opensource]

    I'd like to help out! Dunno what kind of use I would be though.

  8. #233
    Valued Member GheddoMonsta is offline
    MemberRank
    Feb 2011 Join Date
    127Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Quote Originally Posted by FullmetalPride View Post
    I'd like to help out! Dunno what kind of use I would be though.
    have you a fix for the effect buy bug?

  9. #234
    Apprentice PowerB is offline
    MemberRank
    Mar 2012 Join Date
    11Posts

    Re: Neutrino [R63] [Java] [Opensource]


    http://i40.tinypic.com/9k82lt.png
    Help :( I get error when I enter the hotel
    please hel

  10. #235
    Valued Member GheddoMonsta is offline
    MemberRank
    Feb 2011 Join Date
    127Posts

    Re: Neutrino [R63] [Java] [Opensource]

    open the source go to neutrino.network -> MusServer.java replace with: package neutrino.Network;

    import java.net.InetSocketAddress;
    import java.util.concurrent.Executors;

    import org.jboss.netty.bootstrap.ServerBootstrap;
    import org.jboss.netty.channel.ChannelPipeline;
    import org.jboss.netty.channel.ChannelPipelineFactory;
    import org.jboss.netty.channel.Channels;
    import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;
    import neutrino.Environment;
    /**
    *
    * @author Julián
    */
    public class MUSServer {
    public Environment Envi;
    public void init(int Port, Environment Env) throws Exception {
    // Configure the server.
    Envi = Env;
    ServerBootstrap bootstrap = new ServerBootstrap(
    new NioServerSocketChannelFactory(
    Executors.newCachedThreadPool(),
    Executors.newCachedThreadPool()));

    // Set up the pipeline factory.
    bootstrap.setPipelineFactory(new ChannelPipelineFactory() {
    public ChannelPipeline getPipeline() throws Exception {
    return Channels.pipeline(new MUSServerHandler(Envi));
    }
    });

    // Bind and start to accept incoming connections.
    //bootstrap.bind(new InetSocketAddress(Envi.Properties.get("luz.connections.host"), Port));

    bootstrap.bind(new InetSocketAddress(Envi.Properties.get("luz.connections.host"), Port));
    }
    }

    then go to server.java and replace with /*
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    */
    package neutrino.Network;

    import java.net.InetSocketAddress;
    import java.util.concurrent.Executors;

    import org.jboss.netty.bootstrap.ServerBootstrap;
    import org.jboss.netty.channel.ChannelPipeline;
    import org.jboss.netty.channel.ChannelPipelineFactory;
    import org.jboss.netty.channel.Channels;
    import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;
    import neutrino.Environment;
    /**
    *
    * @author Julián
    */
    public class Server {
    public Environment Envi;
    public void init(int Port, Environment Env) throws Exception {
    // Configure the server.
    Envi = Env;
    ServerBootstrap bootstrap = new ServerBootstrap(
    new NioServerSocketChannelFactory(
    Executors.newCachedThreadPool(),
    Executors.newCachedThreadPool()));

    // Set up the pipeline factory.
    bootstrap.setPipelineFactory(new ChannelPipelineFactory() {
    public ChannelPipeline getPipeline() throws Exception {
    return Channels.pipeline(new ServerHandler(Envi));
    }
    });

    // Bind and start to accept incoming connections.

    bootstrap.bind(new InetSocketAddress(Envi.Properties.get("net.connections.host"), Port));


    }
    }

    << debuggen and Export as Runable Jar file start the server finish

  11. #236
    Apprentice PowerB is offline
    MemberRank
    Mar 2012 Join Date
    11Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Quote Originally Posted by GheddoMonsta View Post
    open the source go to neutrino.network -> MusServer.java replace with: package neutrino.Network;

    import java.net.InetSocketAddress;
    import java.util.concurrent.Executors;

    import org.jboss.netty.bootstrap.ServerBootstrap;
    import org.jboss.netty.channel.ChannelPipeline;
    import org.jboss.netty.channel.ChannelPipelineFactory;
    import org.jboss.netty.channel.Channels;
    import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;
    import neutrino.Environment;
    /**
    *
    * @author Julián
    */
    public class MUSServer {
    public Environment Envi;
    public void init(int Port, Environment Env) throws Exception {
    // Configure the server.
    Envi = Env;
    ServerBootstrap bootstrap = new ServerBootstrap(
    new NioServerSocketChannelFactory(
    Executors.newCachedThreadPool(),
    Executors.newCachedThreadPool()));

    // Set up the pipeline factory.
    bootstrap.setPipelineFactory(new ChannelPipelineFactory() {
    public ChannelPipeline getPipeline() throws Exception {
    return Channels.pipeline(new MUSServerHandler(Envi));
    }
    });

    // Bind and start to accept incoming connections.
    //bootstrap.bind(new InetSocketAddress(Envi.Properties.get("luz.connections.host"), Port));

    bootstrap.bind(new InetSocketAddress(Envi.Properties.get("luz.connections.host"), Port));
    }
    }

    then go to server.java and replace with /*
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    */
    package neutrino.Network;

    import java.net.InetSocketAddress;
    import java.util.concurrent.Executors;

    import org.jboss.netty.bootstrap.ServerBootstrap;
    import org.jboss.netty.channel.ChannelPipeline;
    import org.jboss.netty.channel.ChannelPipelineFactory;
    import org.jboss.netty.channel.Channels;
    import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;
    import neutrino.Environment;
    /**
    *
    * @author Julián
    */
    public class Server {
    public Environment Envi;
    public void init(int Port, Environment Env) throws Exception {
    // Configure the server.
    Envi = Env;
    ServerBootstrap bootstrap = new ServerBootstrap(
    new NioServerSocketChannelFactory(
    Executors.newCachedThreadPool(),
    Executors.newCachedThreadPool()));

    // Set up the pipeline factory.
    bootstrap.setPipelineFactory(new ChannelPipelineFactory() {
    public ChannelPipeline getPipeline() throws Exception {
    return Channels.pipeline(new ServerHandler(Envi));
    }
    });

    // Bind and start to accept incoming connections.

    bootstrap.bind(new InetSocketAddress(Envi.Properties.get("net.connections.host"), Port));


    }
    }

    << debuggen and Export as Runable Jar file start the server finish
    what program to edit? please explain

  12. #237
    Valued Member GheddoMonsta is offline
    MemberRank
    Feb 2011 Join Date
    127Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Quote Originally Posted by PowerB View Post

    http://i40.tinypic.com/9k82lt.png
    Help :( I get error when I enter the hotel
    please hel
    you need eclipse

  13. #238
    Apprentice PowerB is offline
    MemberRank
    Mar 2012 Join Date
    11Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Quote Originally Posted by GheddoMonsta View Post
    you need eclipse
    how so?
    sorry I'm Brazilian

  14. #239
    Valued Member GheddoMonsta is offline
    MemberRank
    Feb 2011 Join Date
    127Posts

    Re: Neutrino [R63] [Java] [Opensource]

    and i'm german xd search on google esclipse download

  15. #240
    Valued Member Tando is offline
    MemberRank
    Mar 2012 Join Date
    NorwayLocation
    108Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Good release! What CMS is it compatible with?.. :)

  16. #241
    Ask me about Daoism FullmetalPride is offline
    MemberRank
    Nov 2010 Join Date
    2,172Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Quote Originally Posted by TuPack View Post
    Good release! What CMS is it compatible with?.. :)
    NeutrinoCMS
    LidoCMS
    Few more floating around on kekomundo.

  17. #242
    Enthusiast habbonederland is offline
    MemberRank
    Aug 2010 Join Date
    30Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Nice! But.. does groups work?
    Last edited by habbonederland; 30-03-12 at 06:08 PM.

  18. #243
    Ask me about Daoism FullmetalPride is offline
    MemberRank
    Nov 2010 Join Date
    2,172Posts

    Re: Neutrino [R63] [Java] [Opensource]

    You have to code groups, I think.

  19. #244
    Valued Member ipod500 is offline
    MemberRank
    Dec 2007 Join Date
    118Posts

    Re: Neutrino [R63] [Java] [Opensource]

    anyone here got english version of this CMS?

  20. #245
    Ask me about Daoism FullmetalPride is offline
    MemberRank
    Nov 2010 Join Date
    2,172Posts

    Re: Neutrino [R63] [Java] [Opensource]

    I was going to make one, but I can't get it to work, so..

  21. #246
    Account Upgraded | Title Enabled! jeroen262 is offline
    MemberRank
    Feb 2009 Join Date
    231Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Hmm can someone tell me how stable this server is? Stable enough to hold up 50/70 people?

  22. #247
    Ask me about Daoism FullmetalPride is offline
    MemberRank
    Nov 2010 Join Date
    2,172Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Quote Originally Posted by jeroen262 View Post
    Hmm can someone tell me how stable this server is? Stable enough to hold up 50/70 people?
    You need Java 7 to run it. :P Also it doesn't have some basic functions coded by default into most emus (WIRED, Credits exchange, and some commands)

  23. #248
    Account Upgraded | Title Enabled! jeroen262 is offline
    MemberRank
    Feb 2009 Join Date
    231Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Yeah I know, thats not a big deal for what I (whe) wanna do with the server. The biggest deal is to have a stable server, so it won't have errors etc on the functions that exists right now

    And does someone already has a fix to the problem that you can run the emulator once and than it wont shutdown right, so you have to restart your pc to run again..

  24. #249
    Account Upgraded | Title Enabled! jeroen262 is offline
    MemberRank
    Feb 2009 Join Date
    231Posts

    Re: Neutrino [R63] [Java] [Opensource]

    Alright, I have the server running now, but how can I connect lol, what kind of connections use this server?

  25. #250
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,773Posts
    Quote Originally Posted by jeroen262 View Post
    Alright, I have the server running now, but how can I connect lol, what kind of connections use this server?
    An Habbo SWF client .......:.......................................
    Posted via Mobile Device



Page 10 of 11 FirstFirst ... 234567891011 LastLast

Advertisement