L2J > .Net

If something doesn't fit in any other forum then post it here.
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
Next
Posts: 25
Joined: Thu Apr 26, 2007 7:13 am

L2J > .Net

Post by Next »

If anyone need. It's CUSTOM convertion of l2jserver from java to .net env.
It HAS some errors. I recomend use it only in Visual Studio 2k5 IDE like attached library in quests develompement only if you dont want to miss variable namespases.
For example:

Code: Select all

using System;
using net.sf.l2j.gameserver.model.quest;

namespace ClassLibrary1
{
    public class Class1
    {
        QuestState _state;

        public Class1(object State)
        {
            _state = State; // it's the sample
        }
    }
}

It's c# code, we may use j# code - it's fine to translate on what we need.
I've linked server in such mode, it's faster to use in quests research.

Visual it's look like:
Image

Image
So, here it is:
L2Jserver.dll
http://rapidshare.com/files/28812861/l2jserver.dll.html
Hexa
L2j Veteran
L2j Veteran
Posts: 1217
Joined: Mon Nov 14, 2005 1:25 am

Post by Hexa »

this is the DP forums.... perhaps you should be posting this on the server forums?
Post Reply