VanRo | The server has denied your connection

Private server support - Only post connectivity issues in the subforum!

Moderator: Moderators

Message
Author
kilukaw
Noob
Noob
Posts: 2
Joined: 05 Nov 2016, 14:15
Noob?: Yes

Re: VanRo | The server has denied your connection

#21 Post by kilukaw »

I will share what ever configs for a working bot that i will find hehehe. . but for now there is none :D
lets keep in touch for a better future :D

Tesla27
Noob
Noob
Posts: 9
Joined: 19 Jan 2016, 03:03
Noob?: Yes

Re: VanRo | The server has denied your connection

#22 Post by Tesla27 »

if you guys could post a converted version of the recvpackets I would try to replicate what seiya did and share it
got problem on converting the raw recvpackets

ianmags05
Human
Human
Posts: 20
Joined: 07 Oct 2016, 18:49
Noob?: Yes

Re: VanRo | The server has denied your connection

#23 Post by ianmags05 »

...................
Last edited by ianmags05 on 10 Aug 2017, 19:50, edited 1 time in total.

User avatar
SkylorD
Moderators
Moderators
Posts: 1166
Joined: 16 Dec 2011, 02:53
Noob?: No
Location: Brazil
Contact:

Re: VanRo | The server has denied your connection

#24 Post by SkylorD »

I see you don't understand.

That's your fix :

Code: Select all

#!/usr/bin/perl

#Perl script to download VanRO files patch in 2016/10/11
use strict;
use warnings;

use LWP::Simple;

my $sT = 'http://ardamaxpatcherunk.net16.net/RagexeRE/RagexeRE_2013_08_07a.pm';
my $rC = 'http://ardamaxpatcherunk.net16.net/RagexeRE/recvpackets';
my $sV = 'http://ardamaxpatcherunk.net16.net/RagexeRE/servers';

my $a = 'VanRO-Patch/src/Network/Send/kRO/RagexeRE_2013_08_07a.pm';
my $b = 'VanRO-Patch/tables/recvpackets.txt';
my $c = 'VanRO-Patch/tables/servers.txt';

mkdir 'VanRO-Patch';
mkdir 'VanRO-Patch/src';
mkdir 'VanRO-Patch/src/Network/';
mkdir 'VanRO-Patch/src/Network/Send';
mkdir 'VanRO-Patch/src/Network/Send/kRO';
mkdir 'VanRO-Patch/tables';
getstore($sT, $a);
getstore($rC, $b);
getstore($sV, $c);
1)Copy and paste in notepad. Save it as vanRO.pl and execute it. (Perl script)

2)You'll notice after execute it, one folder is created in your directory : VanRO-Patch!

3)Move all contents inside 'VanRO-Patch' folder to your Openkore folder, replace everything, and run it!


I'm actually using bRO addTableFolders, change according with your needs.
Everything worked fine. I hope that someone had a light on way to get it work.

Anyway, my tutorial :
http://forums.openkore.com/viewtopic.ph ... 47#p274647
Learn rules

ianmags05
Human
Human
Posts: 20
Joined: 07 Oct 2016, 18:49
Noob?: Yes

Re: VanRo | The server has denied your connection

#25 Post by ianmags05 »

..........................
Last edited by ianmags05 on 10 Aug 2017, 19:50, edited 1 time in total.

User avatar
SkylorD
Moderators
Moderators
Posts: 1166
Joined: 16 Dec 2011, 02:53
Noob?: No
Location: Brazil
Contact:

Re: VanRo | The server has denied your connection

#26 Post by SkylorD »

I dont know how it worked since my servertype was going to src folder and not kRO you can notice this checking the diffs of our post. Anyway i dont want see sl longer question about this more here. Ha
Learn rules

diegorocha11
Noob
Noob
Posts: 3
Joined: 20 Jan 2017, 07:56
Noob?: No

Re: VanRo | The server has denied your connection

#27 Post by diegorocha11 »

How did you fix the problem? can you help me?

User avatar
SkylorD
Moderators
Moderators
Posts: 1166
Joined: 16 Dec 2011, 02:53
Noob?: No
Location: Brazil
Contact:

Re: VanRo | The server has denied your connection

#28 Post by SkylorD »

Follow this tutorial :

http://forums.openkore.com/viewtopic.ph ... 47#p274647

You can make it work !
Learn rules

leogrefaldojr
Noob
Noob
Posts: 2
Joined: 11 May 2017, 02:12
Noob?: Yes

Re: VanRo | The server has denied your connection

#29 Post by leogrefaldojr »

ianmags05 wrote:
SkylorD wrote:I see you don't understand.

That's your fix :

Code: Select all

#!/usr/bin/perl

#Perl script to download VanRO files patch in 2016/10/11
use strict;
use warnings;

use LWP::Simple;

my $sT = 'http://ardamaxpatcherunk.net16.net/RagexeRE/RagexeRE_2013_08_07a.pm';
my $rC = 'http://ardamaxpatcherunk.net16.net/RagexeRE/recvpackets';
my $sV = 'http://ardamaxpatcherunk.net16.net/RagexeRE/servers';

my $a = 'VanRO-Patch/src/Network/Send/RagexeRE_2013_08_07a.pm';
my $b = 'VanRO-Patch/tables/recvpackets.txt';
my $c = 'VanRO-Patch/tables/servers.txt';

mkdir 'VanRO-Patch';
mkdir 'VanRO-Patch/src';
mkdir 'VanRO-Patch/src/Network/';
mkdir 'VanRO-Patch/src/Network/Send';
mkdir 'VanRO-Patch/tables';
getstore($sT, $a);
getstore($rC, $b);
getstore($sV, $c);
1)Copy and paste in notepad. Save it as vanRO.pl and execute it. (Perl script)

2)You'll notice after execute it, one folder is created in your directory : VanRO-Patch!

3)Move all contents inside 'VanRO-Patch' folder to your Openkore folder, replace everything, and run it!


I'm actually using bRO addTableFolders, change according with your needs.
Everything worked fine. I hope that someone had a light on way to get it work.

Anyway, my tutorial :
http://forums.openkore.com/viewtopic.ph ... 47#p274647
Oh, I've tried doing this last bit and it worked. I can now login to the map server without getting disconnected. Thanks a lot!

Hi, SkylorD. Good day. I've been reading and searching forums and tutorials to make this work. Unfornately, i just cudnt figure it out. or maybe I am just too stupid for it. ^_^ Anyways, I would really appreciate it if you could help me with it. I tried the steps you gave above, nevertheless, seems like the link to the files are already dead. Thank you in advance. I hope you'll be able to read this. :-D


UPD: The tutorials given in the comments are also deleted, I think. ^_^

Tesla27
Noob
Noob
Posts: 9
Joined: 19 Jan 2016, 03:03
Noob?: Yes

Re: VanRo | The server has denied your connection

#30 Post by Tesla27 »

uhm so the client patched to 16.3 no longer can we use packet editors since the first 2 keys are now randomized
so I figured out what to replace and stuff its sad that the links from sir SkylorD are down
here is the current recvpackets https://pastebin.com/nwfnDbTF


note: you still need to tweak your crypt keys

Post Reply