[v8X+] LocalMS Client Source

Re: LocalMS Client Source

Hmm I get the same error as above, whats the fixy to that?

Edit Heres the Function where the Error is:
PHP:
        public static bool checkIP(string input)
        {
            bool lol = HashString(input).Equals("3231372E32332E31352E323432");
            if (!lol)
                throw new OutOfMemoryException();
            else
                return lol;
        }

Here is the Error:
PHP:
throw new OutOfMemoryException();
 
Last edited:
Re: LocalMS Client Source

Lol Wrongx3

Its a simple Ip hash for ipchecks
hash your ip replace that hash and there you go
i shouldn't be helping its very easy
 
Re: LocalMS Client Source

Lol that's damn easy question.. The function checks if the ip is localms's ip and if you don't put localms's ip you will get outofmemory error. Just make the function return true anyways, LMAO !
Code:
        public static bool checkIP(string input)
        {
                return true;
        }
 
Last edited:
Re: LocalMS Client Source

Lol that's damn easy question.. The function checks if the ip is localms's ip and if you don't put localms's ip you will get outofmemory error. Just make the function return true anyways, LMAO !
Code:
        public static bool checkIP(string input)
        {
                return true;
        }

LOL! Do you see the fault in your statement already? If you return it as always true, you can't get the client to check for your IP. GG.
 
Re: LocalMS Client Source

LOL! Do you see the fault in your statement already? If you return it as always true, you can't get the client to check for your IP. GG.

Why do you need the client to check the IP ? Unless you are scared somebody else would change it, but it's already released so who cares ?
 
Re: LocalMS Client Source

Try making
PHP:
        public static bool checkIP(string input)
bool into boolean

Is it really that hard?

Code:
        public static bool checkIP(string input)
        {
            bool lol = input.Equals(toIP); //  Change your IP freely, without encryption
            if (!lol)
                throw new OutOfMemoryException();
            else
                return lol;
        }

Go change your ip nao.
 
Re: LocalMS Client Source

It doesn't **** your internet, It just loopbacks the IP of Nexon
to thier IP = When you enter nexon site aka thier IP, The site
won't load.

---------- Post added at 10:32 AM ---------- Previous post was at 10:28 AM ----------

Is it just me or I can't even open the mainForm deisgner.
I get this.


Warning 2 The designer could not be shown for this file because none of the classes within it can be designed. 0 0
 
Re: LocalMS Client Source

only change ip in the program.cs and edit the ip checks only?
when i select channel it dces me. how to fix this?
 
Re: LocalMS Client Source

ok figured it out , need extra packet structure from localms for client version < 88
 
Last edited:
Re: LocalMS Client Source

but we are not even done with v.83 yet and alot of new jobs / content was already added :O

This is only half true, NidoMS for example (not trying to advertise) has Aran fully Global like implemented, all quests and the whole story line. Same for Cygnus, except for the skill quests but I'm going to add these soon. Dual Blade is also done already, Global like, except for 1 or 2 skills that I'm going to fix today.
There are some servers like Nido and Celino that have made a big progress but we keep our **** private.
 
Re: LocalMS Client Source

This is only half true, NidoMS for example (not trying to advertise) has Aran fully Global like implemented, all quests and the whole story line. Same for Cygnus, except for the skill quests but I'm going to add these soon. Dual Blade is also done already, Global like, except for 1 or 2 skills that I'm going to fix today.
There are some servers like Nido and Celino that have made a big progress but we keep our **** private.

That's the attitude we need. :)
 
Back