-
Re: Neutrino [R63] [Java] [Opensource]
Does it work for you without disconnecting ?
-
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
-
Re: Neutrino [R63] [Java] [Opensource]
Oh right wanna teamviewer or something code project together?
-
Re: Neutrino [R63] [Java] [Opensource]
Effects Don't work xD hmm i can't buy one effect oO
hm i have teamviewer why?! XD
-
Re: Neutrino [R63] [Java] [Opensource]
Yeh I know that we need to fix the buying process
-
Re: Neutrino [R63] [Java] [Opensource]
yes ;D hmm i'm a noob in Java xD
-
Re: Neutrino [R63] [Java] [Opensource]
I'd like to help out! Dunno what kind of use I would be though.
-
Re: Neutrino [R63] [Java] [Opensource]
Quote:
Originally Posted by
FullmetalPride
I'd like to help out! Dunno what kind of use I would be though.
have you a fix for the effect buy bug?
-
Re: Neutrino [R63] [Java] [Opensource]
-
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
-
Re: Neutrino [R63] [Java] [Opensource]
Quote:
Originally Posted by
GheddoMonsta
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
-
Re: Neutrino [R63] [Java] [Opensource]
Quote:
Originally Posted by
PowerB
you need eclipse
-
Re: Neutrino [R63] [Java] [Opensource]
Quote:
Originally Posted by
GheddoMonsta
you need eclipse
how so?
sorry I'm Brazilian
-
Re: Neutrino [R63] [Java] [Opensource]
and i'm german xd search on google esclipse download
-
Re: Neutrino [R63] [Java] [Opensource]
Good release! What CMS is it compatible with?.. :)
-
Re: Neutrino [R63] [Java] [Opensource]
Quote:
Originally Posted by
TuPack
Good release! What CMS is it compatible with?.. :)
NeutrinoCMS
LidoCMS
Few more floating around on kekomundo.
-
Re: Neutrino [R63] [Java] [Opensource]
Nice! But.. does groups work?
-
Re: Neutrino [R63] [Java] [Opensource]
You have to code groups, I think.
-
Re: Neutrino [R63] [Java] [Opensource]
anyone here got english version of this CMS?
-
Re: Neutrino [R63] [Java] [Opensource]
I was going to make one, but I can't get it to work, so..
-
Re: Neutrino [R63] [Java] [Opensource]
Hmm can someone tell me how stable this server is? Stable enough to hold up 50/70 people?
-
Re: Neutrino [R63] [Java] [Opensource]
Quote:
Originally Posted by
jeroen262
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)
-
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..
-
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?
-
Quote:
Originally Posted by
jeroen262
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