- Joined
- Jan 13, 2009
- Messages
- 65
- Reaction score
- 0
Re: "Working" XeonMs v97
when i try to connect in my server
its enter to maplestory.nexon.net
when i try to connect in my server
its enter to maplestory.nexon.net
Exception in thread "main" java.lang.ExceptionInInitializerError
at javax.crypto.KeyAgreement.getInstance(KeyAgreement.java:173)
at sun.security.ssl.JsseJce.getKeyAgreement(Unknown Source)
at sun.security.ssl.JsseJce.isEcAvailable(Unknown Source)
at sun.security.ssl.CipherSuite$KeyExchange.isAvailable(Unknown Source)
at sun.security.ssl.CipherSuite.isAvailable(Unknown Source)
at sun.security.ssl.SSLContextImpl.getApplicableCipherSuiteList(Unknown
Source)
at sun.security.ssl.SSLContextImpl.getDefaultCipherSuiteList(Unknown Sou
rce)
at sun.security.ssl.SSLSocketImpl.init(Unknown Source)
at sun.security.ssl.SSLSocketImpl.<init>(Unknown Source)
at sun.security.ssl.SSLSocketFactoryImpl.createSocket(Unknown Source)
at javax.rmi.ssl.SslRMIClientSocketFactory.createSocket(Unknown Source)
at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown Source)
at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source)
at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source)
at sun.rmi.server.UnicastRef.newCall(Unknown Source)
at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
at net.channel.ChannelServer.main(ChannelServer.java:446)
Caused by: java.lang.SecurityException: Can not initialize cryptographic mechani
sm
at javax.crypto.JceSecurity.<clinit>(JceSecurity.java:86)
... 17 more
Caused by: java.lang.SecurityException: The jurisdiction policy files are not si
gned by a trusted signer!
at javax.crypto.JarVerifier.verifyPolicySigned(JarVerifier.java:289)
at javax.crypto.JceSecurity.loadPolicies(JceSecurity.java:316)
at javax.crypto.JceSecurity.setupJurisdictionPolicies(JceSecurity.java:2
61)
at javax.crypto.JceSecurity.access$000(JceSecurity.java:48)
at javax.crypto.JceSecurity$1.run(JceSecurity.java:78)
at java.security.AccessController.doPrivileged(Native Method)
at javax.crypto.JceSecurity.<clinit>(JceSecurity.java:76)
... 17 more
Exception in thread "main" java.lang.ExceptionInInitializerError
at javax.crypto.KeyAgreement.getInstance(KeyAgreement.java:173)
at sun.security.ssl.JsseJce.getKeyAgreement(Unknown Source)
at sun.security.ssl.JsseJce.isEcAvailable(Unknown Source)
at sun.security.ssl.CipherSuite$KeyExchange.isAvailable(Unknown Source)
at sun.security.ssl.CipherSuite.isAvailable(Unknown Source)
at sun.security.ssl.SSLContextImpl.getApplicableCipherSuiteList(Unknown
Source)
at sun.security.ssl.SSLContextImpl.getDefaultCipherSuiteList(Unknown Sou
rce)
at sun.security.ssl.SSLSocketImpl.init(Unknown Source)
at sun.security.ssl.SSLSocketImpl.<init>(Unknown Source)
at sun.security.ssl.SSLSocketFactoryImpl.createSocket(Unknown Source)
at javax.rmi.ssl.SslRMIClientSocketFactory.createSocket(Unknown Source)
at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown Source)
at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source)
at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source)
at sun.rmi.server.UnicastRef.newCall(Unknown Source)
at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
at net.login.LoginServer.run(LoginServer.java:83)
at net.login.LoginServer.main(LoginServer.java:141)
Press any key to continue . . . Caused by: java.lang.SecurityException: Can not
initialize cryptographic mechanism
at javax.crypto.JceSecurity.<clinit>(JceSecurity.java:86)
... 18 more
Caused by: java.lang.SecurityException: The jurisdiction policy files are not si
gned by a trusted signer!
at javax.crypto.JarVerifier.verifyPolicySigned(JarVerifier.java:289)
at javax.crypto.JceSecurity.loadPolicies(JceSecurity.java:316)
at javax.crypto.JceSecurity.setupJurisdictionPolicies(JceSecurity.java:2
61)
at javax.crypto.JceSecurity.access$000(JceSecurity.java:48)
at javax.crypto.JceSecurity$1.run(JceSecurity.java:78)
at java.security.AccessController.doPrivileged(Native Method)
at javax.crypto.JceSecurity.<clinit>(JceSecurity.java:76)
... 18 more
Press any key to continue . . . World online.
can someone help me please?
after i do PIC nothing happen!
skype: ori__S
Bug: You have to relog when you loot items to see it in your inventory 0_o Any idea where to look to fix it?
you can log in to your server?
I feel really dumb right now but I can't get !item to work. (Yes I'm a GM and ****) Even after looking at the command's code, I couldn't figure it out. I even copy+pasted my old !item and nothing so I'm guessing it's not the command that's wrong it's something else.
Anybody else able to spawn items?
I feel really dumb right now but I can't get !item to work. (Yes I'm a GM and ****) Even after looking at the command's code, I couldn't figure it out. I even copy+pasted my old !item and nothing so I'm guessing it's not the command that's wrong it's something else.
Anybody else able to spawn items?
} else if (splitted[0].equals("item") || splitted[0].equals("drop")) {
int itemId = Integer.parseInt(splitted[1]);
short quantity = 1;
try {
quantity = Short.parseShort(splitted[2]);
} catch (Exception e) {
}
if (splitted[0].equals("item")) {
int petid = -1;
if (ItemConstants.isPet(itemId)) {
petid = MaplePet.createPet(itemId);
}
MapleInventoryManipulator.addById(c, itemId, quantity, player.getName(), petid, -1);
} else {
IItem toDrop;
if (MapleItemInformationProvider.getInstance().getInventoryType(itemId) == MapleInventoryType.EQUIP) {
toDrop = MapleItemInformationProvider.getInstance().getEquipById(itemId);
} else {
toDrop = new Item(itemId, (byte) 0, quantity);
}
c.getPlayer().getMap().spawnItemDrop(c.getPlayer(), c.getPlayer(), toDrop, c.getPlayer().getPosition(), true, true);
}
I feel really dumb right now but I can't get !item to work. (Yes I'm a GM and ****) Even after looking at the command's code, I couldn't figure it out. I even copy+pasted my old !item and nothing so I'm guessing it's not the command that's wrong it's something else.
Anybody else able to spawn items?
!item <amount> <Item Name>