NovaGFX Posted December 6, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 25 Reputation: 0 Joined: 08/22/12 Last Seen: December 23, 2013 Share Posted December 6, 2012 Okay, So I'm new to making servers in rA as I used to use eA. It's alot harder than I thought it'd be.. I saw in my common/mmo.h that it was set out like this: #ifndef PACKETVER #define PACKETVER 20120410 //#define PACKETVER 20111116 So I went to http://supportmii.com/ro1/Clients/ and got the 2012-04-10a diff. And managed to diff it.. And now I open my server and login with my account.... I can get until where I open my char, until it rejects me from the server. This is what happens in my mapserver. clif_parse: Disconnecting session #3 with unknown packet version (p:0x464d,1:19) Any idea on how to fix this? It would be great. Quote Link to comment Share on other sites More sharing options...
hendra814 Posted December 6, 2012 Group: Members Topic Count: 59 Topics Per Day: 0.01 Content Count: 1278 Reputation: 170 Joined: 06/12/12 Last Seen: 14 hours ago Share Posted December 6, 2012 (edited) must like this if you use client 2011-11-16 #ifndef PACKETVER#define PACKETVER 20120410 define PACKETVER 20111116 if using client 2012-04-12 #ifndef PACKETVER define PACKETVER 20120410 #define PACKETVER 20111116 Edited December 6, 2012 by hendra814 Quote Link to comment Share on other sites More sharing options...
NovaGFX Posted December 6, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 25 Reputation: 0 Joined: 08/22/12 Last Seen: December 23, 2013 Author Share Posted December 6, 2012 must like this if you use client 2011-11-16 #ifndef PACKETVER#define PACKETVER 20120410 define PACKETVER 20111116 if using client 2012-04-12 #ifndef PACKETVER define PACKETVER 20120410 #define PACKETVER 20111116 I'm using 2012-04-10 and that's how it is.. Quote Link to comment Share on other sites More sharing options...
Brynner Posted December 6, 2012 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1953 Reputation: 202 Joined: 01/08/12 Last Seen: 1 hour ago Share Posted December 6, 2012 Okay, So I'm new to making servers in rA as I used to use eA. It's alot harder than I thought it'd be.. I saw in my common/mmo.h that it was set out like this: #ifndef PACKETVER #define PACKETVER 20120410 //#define PACKETVER 20111116 So I went to http://supportmii.com/ro1/Clients/ and got the 2012-04-10a diff. And managed to diff it.. And now I open my server and login with my account.... I can get until where I open my char, until it rejects me from the server. This is what happens in my mapserver. clif_parse: Disconnecting session #3 with unknown packet version (p:0x464d,1:19) Any idea on how to fix this? It would be great. what emuator are you using?eA or rA? Quote Link to comment Share on other sites More sharing options...
NovaGFX Posted December 6, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 25 Reputation: 0 Joined: 08/22/12 Last Seen: December 23, 2013 Author Share Posted December 6, 2012 (edited) Okay, So I'm new to making servers in rA as I used to use eA. It's alot harder than I thought it'd be.. I saw in my common/mmo.h that it was set out like this: #ifndef PACKETVER #define PACKETVER 20120410 //#define PACKETVER 20111116 So I went to http://supportmii.com/ro1/Clients/ and got the 2012-04-10a diff. And managed to diff it.. And now I open my server and login with my account.... I can get until where I open my char, until it rejects me from the server. This is what happens in my mapserver. clif_parse: Disconnecting session #3 with unknown packet version (p:0x464d,1:19) Any idea on how to fix this? It would be great. what emuator are you using?eA or rA? rA ofcourse Edited December 6, 2012 by NovaGFX Quote Link to comment Share on other sites More sharing options...
Brynner Posted December 6, 2012 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1953 Reputation: 202 Joined: 01/08/12 Last Seen: 1 hour ago Share Posted December 6, 2012 if you are using rA. no need to change the common/mmo.h. because it is already set to #define PACKETVER 20120410. Quote Link to comment Share on other sites More sharing options...
JoWei Posted December 6, 2012 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 117 Reputation: 18 Joined: 01/06/12 Last Seen: April 1, 2021 Share Posted December 6, 2012 Make sure you have diffed the client with SkipPacketHeaderObfuscation. Without it the emulator wont be able to recognize the packets sent by the client. Quote Link to comment Share on other sites More sharing options...
NovaGFX Posted December 7, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 25 Reputation: 0 Joined: 08/22/12 Last Seen: December 23, 2013 Author Share Posted December 7, 2012 (edited) if you are using rA. no need to change the common/mmo.h. because it is already set to #define PACKETVER 20120410. I don't know what you mean.. It's set at #define PACKETVER 20120410 yet It's not working.. There is no diff option in Shin's diff patcher with SkipPacketHeaderbfuscation.. Edited December 7, 2012 by NovaGFX Quote Link to comment Share on other sites More sharing options...
mrlongshen Posted December 7, 2012 Group: Members Topic Count: 98 Topics Per Day: 0.02 Content Count: 1302 Reputation: 79 Joined: 12/04/12 Last Seen: September 26, 2019 Share Posted December 7, 2012 if you are using rA. no need to change the common/mmo.h. because it is already set to #define PACKETVER 20120410. I don't know what you mean.. It's set at #define PACKETVER 20120410 yet It's not working.. There is no diff option in Shin's diff patcher with SkipPacketHeaderbfuscation.. change to another diff.. try n error.. Quote Link to comment Share on other sites More sharing options...
David Posted December 7, 2012 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 195 Reputation: 23 Joined: 01/05/12 Last Seen: October 5, 2013 Share Posted December 7, 2012 if you are using rA. no need to change the common/mmo.h. because it is already set to #define PACKETVER 20120410. I don't know what you mean.. It's set at #define PACKETVER 20120410 yet It's not working.. There is no diff option in Shin's diff patcher with SkipPacketHeaderbfuscation.. Hello, Here is the diff file https://subversion.assembla.com/svn/weetools/trunk/ShinsDiffPatcher/plugins/WeeDiffGen/WDGSkipPacketHeaderObfuscation.dll Hope it helps, goodluck Quote Link to comment Share on other sites More sharing options...
Brynner Posted December 7, 2012 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1953 Reputation: 202 Joined: 01/08/12 Last Seen: 1 hour ago Share Posted December 7, 2012 if you are using rA. no need to change the common/mmo.h. because it is already set to #define PACKETVER 20120410. I don't know what you mean.. It's set at #define PACKETVER 20120410 yet It's not working.. There is no diff option in Shin's diff patcher with SkipPacketHeaderbfuscation.. the packetver is already set default for 2012-04-10 client. no need to modified there. the only problem is the SkipPacketHeaderbfuscation Quote Link to comment Share on other sites More sharing options...
NovaGFX Posted December 8, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 25 Reputation: 0 Joined: 08/22/12 Last Seen: December 23, 2013 Author Share Posted December 8, 2012 (edited) It's already in there.. But when I open the Shins diff and look for it.. It's not in there.. But it's in the WeeDiffGen plugins folder Edited December 8, 2012 by NovaGFX Quote Link to comment Share on other sites More sharing options...
Brynner Posted December 8, 2012 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1953 Reputation: 202 Joined: 01/08/12 Last Seen: 1 hour ago Share Posted December 8, 2012 It's already in there.. But when I open the Shins diff and look for it.. It's not in there.. But it's in the WeeDiffGen plugins folder make sure you put the plugins inside the plugins\WeeDiffGen 1 Quote Link to comment Share on other sites More sharing options...
NovaGFX Posted December 9, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 25 Reputation: 0 Joined: 08/22/12 Last Seen: December 23, 2013 Author Share Posted December 9, 2012 it's in there already i told you.. here's a SS Why won't the damn SS show?? Quote Link to comment Share on other sites More sharing options...
Brynner Posted December 9, 2012 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1953 Reputation: 202 Joined: 01/08/12 Last Seen: 1 hour ago Share Posted December 9, 2012 it's in there already i told you.. here's a SS Why won't the damn SS show?? your screenshot is not showing. Quote Link to comment Share on other sites More sharing options...
NovaGFX Posted December 11, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 25 Reputation: 0 Joined: 08/22/12 Last Seen: December 23, 2013 Author Share Posted December 11, 2012 it's in there already i told you.. here's a SS Why won't the damn SS show?? your screenshot is not showing. I know D: It was a fb link that's probably why.. xD because it wont let me attach a photo in here except links Quote Link to comment Share on other sites More sharing options...
Brynner Posted December 11, 2012 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1953 Reputation: 202 Joined: 01/08/12 Last Seen: 1 hour ago Share Posted December 11, 2012 try to upload it on some image hosting site. Quote Link to comment Share on other sites More sharing options...
NovaGFX Posted December 11, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 25 Reputation: 0 Joined: 08/22/12 Last Seen: December 23, 2013 Author Share Posted December 11, 2012 dont know of any. anyway the DLL file is in the plugins, but it doesnt show up in the diff. Quote Link to comment Share on other sites More sharing options...
Satoh Posted December 16, 2012 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 13 Reputation: 0 Joined: 06/24/12 Last Seen: November 10, 2016 Share Posted December 16, 2012 I had this issue too. All of my client and server packet information WAS correct, my diff was good and everything, but I was being rejected. I checked out the newest SVN and compiled it... I'm able to connect to that without a problem. Quote Link to comment Share on other sites More sharing options...
NovaGFX Posted January 21, 2013 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 25 Reputation: 0 Joined: 08/22/12 Last Seen: December 23, 2013 Author Share Posted January 21, 2013 I had this issue too. All of my client and server packet information WAS correct, my diff was good and everything, but I was being rejected. I checked out the newest SVN and compiled it... I'm able to connect to that without a problem. The SVN is the newest... Quote Link to comment Share on other sites More sharing options...
TalkRO Posted February 1, 2013 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 11 Reputation: 0 Joined: 01/31/13 Last Seen: March 9, 2013 Share Posted February 1, 2013 (edited) I have the same problem, and here's the picture Edited February 1, 2013 by TalkRO Quote Link to comment Share on other sites More sharing options...
Boom Posted March 28, 2013 Group: Members Topic Count: 21 Topics Per Day: 0.00 Content Count: 182 Reputation: 22 Joined: 12/30/12 Last Seen: February 20, 2017 Share Posted March 28, 2013 (edited) Hi! I also got this problem... The SkipPacketHeaderObfuscation is not appearing on the list of diffs on Shin's Diff Patcher although it's on the plugins folder. You may wanna try out the By pass client for 2012-04-10... http://supportmii.com/ro1/Clients/Bypass_Clients/ It didn't need the skippacketheaderobfuscation... I just loaded the default patch that the program suggested. It worked for me. One more thing.. check the packet version on the clientinfo.xml.. What does this phrase means anyway "SkipPacketHeaderObfuscation"?? XD Edited March 28, 2013 by paopao Quote Link to comment Share on other sites More sharing options...
vindi Posted April 15, 2013 Group: Members Topic Count: 22 Topics Per Day: 0.00 Content Count: 59 Reputation: 0 Joined: 12/22/11 Last Seen: March 30 Share Posted April 15, 2013 I've downloaded Rytech pack and it has the Weediff and also it shows the SkipPacketHeaderObfuscation try it. Quote Link to comment Share on other sites More sharing options...
ikedagus Posted August 29, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 1 Reputation: 0 Joined: 08/29/13 Last Seen: September 6, 2013 Share Posted August 29, 2013 I had the same problem and this one worked for me:http://supportmii.com/ro1/Clients/ClientSideArea/2012_04_10/2012-04-10aRagexeRE_S.exe.patched.exe Quote Link to comment Share on other sites More sharing options...
Question
NovaGFX
Okay, So I'm new to making servers in rA as I used to use eA. It's alot harder than I thought it'd be..
I saw in my common/mmo.h that it was set out like this:
#ifndef PACKETVER
#define PACKETVER 20120410
//#define PACKETVER 20111116
So I went to http://supportmii.com/ro1/Clients/ and got the 2012-04-10a diff.
And managed to diff it..
And now I open my server and login with my account....
I can get until where I open my char, until it rejects me from the server. This is what happens in my mapserver.
clif_parse: Disconnecting session #3 with unknown packet version (p:0x464d,1:19)
Any idea on how to fix this? It would be great.
Link to comment
Share on other sites
23 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.