Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[V179.4] Lucid2.0 (updated mushy) src release

Initiate Mage
Joined
Dec 22, 2015
Messages
9
Reaction score
0
Does anyone know what's up with the 5 titles above the character? Can't seem to find what's causing them
 
Initiate Mage
Joined
May 7, 2012
Messages
10
Reaction score
0
Sounds like you haven't updated MovePlayerHandler (MovementParse) or its opcode.
Hmm, I'll try checking the opcode. Since I'm not sure how to go about updating the method. (Just now feeling my way around IDA)
 
Skilled Illusionist
Joined
Jul 17, 2010
Messages
333
Reaction score
165
Does anyone know what's up with the 5 titles above the character? Can't seem to find what's causing them
PlayerLoggedInHandler
Code:
c.getSession().write(CWvsContext.updateCrowns(new int[] { -1, -1, -1, -1, -1 }));
CWvsContext
Code:
    public static byte[] updateCrowns(int[] titles) {
        PacketWriter pw = new PacketWriter();

        pw.writeShort(SendPacketOpcode.[B]REQUEST_EVENT_LIST[/B].getValue());
        for (int i = 0; i < 5; i++) {
            pw.writeMapleAsciiString("");
            if (titles.length < i + 1) {
                pw.write(-1);
            } else {
     //           pw.write(titles[i]);
            }
        }

        return pw.getPacket();
    }
sendops.properties
Code:
[B]REQUEST_EVENT_LIST [/B]= 281
LIKE_POINT = 282
SIGN_ERROR_ACK = 283
ASK_AFTER_ERROR_ACK = 284
[B]EVENT_NAME_TAG [/B]= 285
It should use EVENT_NAME_TAG instead of REQUEST_EVENT_LIST (not sure whether the value is correct though)
 
Initiate Mage
Joined
Dec 22, 2015
Messages
9
Reaction score
0
the map arcane working with the npcs?
Have you even looked at the data provider?

PlayerLoggedInHandler
Code:
c.getSession().write(CWvsContext.updateCrowns(new int[] { -1, -1, -1, -1, -1 }));
CWvsContext
Code:
    public static byte[] updateCrowns(int[] titles) {
        PacketWriter pw = new PacketWriter();

        pw.writeShort(SendPacketOpcode.[B]REQUEST_EVENT_LIST[/B].getValue());
        for (int i = 0; i < 5; i++) {
            pw.writeMapleAsciiString("");
            if (titles.length < i + 1) {
                pw.write(-1);
            } else {
     //           pw.write(titles[i]);
            }
        }

        return pw.getPacket();
    }
sendops.properties
Code:
[B]REQUEST_EVENT_LIST [/B]= 281
LIKE_POINT = 282
SIGN_ERROR_ACK = 283
ASK_AFTER_ERROR_ACK = 284
[B]EVENT_NAME_TAG [/B]= 285
It should use EVENT_NAME_TAG instead of REQUEST_EVENT_LIST (not sure whether the value is correct though)

Much appreciated, thank you very much! :)
 
Initiate Mage
Joined
Nov 12, 2017
Messages
5
Reaction score
0
I need help, I encountered some problems

AiaulSG - [V179.4] Lucid2.0 (updated mushy) src release - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Initiate Mage
Joined
May 7, 2012
Messages
10
Reaction score
0
[STRIKE]So the sendop BLOW_WEATHER=469 replaced the MAP_EFFECT opcode from mushy?[/STRIKE]
PHP:
 public static byte[] startMapEffect(String msg, int itemid, boolean active) 
    {
        PacketWriter pw = new PacketWriter();

        pw.writeShort(SendPacketOpcode.BLOW_WEATHER.getValue());
        pw.write(active ? 0 : 1);

        pw.writeInt(itemid);
        
        if (active) 
        {
            pw.writeMapleAsciiString(msg);
        }
        return pw.getPacket();
    }

Nevermind... Still not sure why we use BLOW_WEATHER here instead, other than the fact that we don't seem to have a value of MAP_EFFECT.
 
Last edited:
Initiate Mage
Joined
Dec 6, 2017
Messages
19
Reaction score
1
Game crashs after i click on NA or EU.... idk why any help pls? and i get no error on server ....
 
Banned
Banned
Joined
Aug 31, 2016
Messages
193
Reaction score
1
Game crashs after i click on NA or EU.... idk why any help pls? and i get no error on server ....
1. type search 2. "CMD" 3. run as administrator 4. type into cmd "netsh int ip add addr 1 8.31.99.141 255.255.255.0 st=ac" 5. done
 
Initiate Mage
Joined
Dec 6, 2017
Messages
19
Reaction score
1
Still doesent work =( i still click on NA or EU he load load load then crash .. hmm Which localhost u use? this from the site here right?
idk i cant connect to my server
config.prob =
#server ip address ip = 127.0.0.1
 
Initiate Mage
Joined
Oct 19, 2011
Messages
8
Reaction score
0
Is there a team working on GMS v180+? I don't know so much about Private Servers but have some experiences coding Java, SQL and C++ and want learn
 
Initiate Mage
Joined
Dec 27, 2017
Messages
25
Reaction score
2
I added the jar files into libraries and get this error at the PacketHelper.java


import com.google.common.collect.ArrayListMultimap;
It says packet com.google.common.collect does not exist

What can I do to solve this problem?
 
Initiate Mage
Joined
Dec 27, 2017
Messages
25
Reaction score
2
STUCK AT CHARACTER SCREEN CANT PASS
Error in batch file:


java.lang.reflect.InvocationTargetException at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.base/java.lang.reflect.Method.invoke(Unknown Source) at handling.OpcodeManager.handle(OpcodeManager.java:138) at handling.MapleServerHandler.messageReceived(MapleServerHandler.java:192) at org.apache.mina.common.support.AbstractIoFilterChain$TailFilter.messageReceived(AbstractIoFilterChain.java:570) at org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageReceived(AbstractIoFilterChain.java:299) at org.apache.mina.common.support.AbstractIoFilterChain.access$1100(AbstractIoFilterChain.java:53) at org.apache.mina.common.support.AbstractIoFilterChain$EntryImpl$1.messageReceived(AbstractIoFilterChain.java:648) at org.apache.mina.filter.codec.support.SimpleProtocolDecoderOutput.flush(SimpleProtocolDecoderOutput.java:58) at org.apache.mina.filter.codec.ProtocolCodecFilter.messageReceived(ProtocolCodecFilter.java:180) at org.apache.mina.common.support.AbstractIoFilterChain.callNextMessageReceived(AbstractIoFilterChain.java:299) at org.apache.mina.common.support.AbstractIoFilterChain.access$1100(AbstractIoFilterChain.java:53) at org.apache.mina.common.support.AbstractIoFilterChain$EntryImpl$1.messageReceived(AbstractIoFilterChain.java:648) at org.apache.mina.filter.executor.ExecutorFilter.processEvent(ExecutorFilter.java:220) at org.apache.mina.filter.executor.ExecutorFilter$ProcessEventsRunnable.run(ExecutorFilter.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at org.apache.mina.util.NamePreservingRunnable.run(NamePreservingRunnable.java:51) at java.base/java.lang.Thread.run(Unknown Source)Caused by: java.lang.NullPointerException at client.MapleCharacter.loadCharFromDB(MapleCharacter.java:630) at client.MapleCharacter.loadCharFromDB(MapleCharacter.java:523) at handling.handlers.login.PlayerLoggedInHandler.handle(PlayerLoggedInHandler.java:73) ... 21 more[UNHANDLED] Recv [PLAYER_LOGGEDIN] found
 
Initiate Mage
Joined
Dec 6, 2017
Messages
19
Reaction score
1
You have JRE8 and JDK 8 right? did u put the 2 files into correctly folder? LIB> ext and Security etc :D then it should work
 
Back
Top