r84-r85 Version connection problems

This place is for Closed bug reports only. NOT for asking help!

Moderators: Moderators, Developers

Message
Author
zmax
Noob
Noob
Posts: 3
Joined: 13 Apr 2013, 11:36
Noob?: No

r84-r85 Version connection problems

#1 Post by zmax »

ServerType0.pm?

On version r83 my Openkore is working as it should be and until now it is working.. then i downloaded the newest version r84 also r85 but my problem is connecting with character server

Server 0 selected
Connecting to Character Server...
Connecting (202.57.117.82:5000)... connected (this is pRO server NEW IRIS)
Timeout on Character Server, reconnecting...

What i did is to fix this is to use my old ServerType0.pm and now that is my temporary fix.

May i know what happened?

Raider
The Kore Devil
The Kore Devil
Posts: 672
Joined: 22 Feb 2013, 03:40
Noob?: No
Location: The Netherlands

Re: r84-r85 Version connection problems

#2 Post by Raider »

I would like to ask you to use http://wiki.openkore.com/index.php?titl ... eSVN_Guide so you can see yourself what has been changed.

zmax
Noob
Noob
Posts: 3
Joined: 13 Apr 2013, 11:36
Noob?: No

Re: r84-r85 Version connection problems

#3 Post by zmax »

Raider wrote:I would like to ask you to use http://wiki.openkore.com/index.php?titl ... eSVN_Guide so you can see yourself what has been changed.
Thanks for this.

The main problem here is when logging in, openkore will stop at
RECEIVED CHARACTER FROM SERVER then timeout, retry, timeout and so on.....

As an update, for pRO players that can't make their newly downloaded openkore to work even doing the instructions of heero >> http://forums.openkore.com/viewtopic.php?f=55&t=23759

After completing the instructions of Heero go to src\Network\Receive and look for ServerType0.pm (open with wordpad)

Search for

Code: Select all

if ($args->{switch} ne '099D') {
you will find the script below

Code: Select all

        if ($args->{switch} ne '099D') {
            if (charSelectScreen(1) == 1) {
                $firstLoginMap = 1;
                $startingzeny = $chars[$config{'char'}]{'zeny'} unless defined $startingzeny;
                $sentWelcomeMessage = 1;
            }
        }


change the script to

Code: Select all

    if (charSelectScreen(1) == 1) {
            $firstLoginMap = 1;
            $startingzeny = $chars[$config{'char'}]{'zeny'} unless defined $startingzeny;
            $sentWelcomeMessage = 1;
        }
you can also download the file below.
Please be aware that this file has been edited by me. I can assure you that this is safe w/o keylogs but for better result and safety you can do your own edit by doing the instructions above.

http://www.4shared.com/file/HawI8Vuk/ServerType0_1.html

zmax
Noob
Noob
Posts: 3
Joined: 13 Apr 2013, 11:36
Noob?: No

Re: r84-r85 Version connection problems

#4 Post by zmax »

Problem FIX with the new openkore release r8508

Post Reply