Jump to content

TokiaBurke

Members
  • Posts

    11
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by TokiaBurke

  1. I'm newbie,

    I looked around and saw on https://github.com/L2Miko/L2FileEdit.

    I tried this to decrypt by hand with l2encdec and l2disasm-l2asm, based on this http://www.maxcheaters.com/topic/12315-tutorialhow-to-change-datiniint-files/

    But when i try to encrypt again, it can't be done.

    
    D:\File Editor\data\l2asm-disasm> l2asm.exe -d DAT_defs\GOD_Underground_28\Skillgrp.ddf txt\Skillgrp.txt dat_en\Skillgrp.dat
    
    L2 asm 1.4.1 by M.Soltys (aka DStuff).
    
    Field 'ani_char' has no soft limit but is cntby.
    Post-parse init failed (check ddf file 'DAT_defs\GOD_Underground_28\Skillgrp.ddf').
    

    I decrypted  but can't encrypt.

    Could someone tell me?

  2. I am trying to make a custom launcher based on this: http://www.maxcheaters.com/topic/211700-l2exe-launcher/

    I tried to  execuse l2.bin with this code in VB.

      Shell("./l2/L2.bin IP=" + SERVER_IP, vbNormalFocus) 

    But when i run my launcher, which would execute l2.bin, i recieved this log:

    (11:48:49) Log: Log file open, 02/15/17 11:48:49
    (11:48:49) Init: Name subsystem initialized
    (11:48:49) Init: Detected: Microsoft Windows 8(64) 6.2 (Build: 9200), Service Pack 0.0
    (11:48:49) Init: Version: 2110
    (11:48:49) Init: Compiled: Oct 16 2015 17:01:43
    (11:48:49) Init: Command line: IP=xxx.xxx.xxx.
    (11:48:49) Init: Base directory: path\to\l2\
    (11:48:49) Init: Character set: Unicode
    (11:48:49) Uninitialized: Name subsystem shut down
    (11:48:49) Uninitialized: Log file closed, 02/15/17 11:48:49
    

    And my client didn't show up.

    Could someone help me?

    Thanks,

    Toki.

     

  3. You are really my big help.

    Thank a lot.

    But i tried that and nothing happened.

    I even build to "debug/bin/ launcher.exe" and throw launcher into same folder with l2.bin/l2.exe  and change my  LAN IP for  my own server(test server).

    But still like that.

    I'm sorry. I'm to new to  lineage customization.

    Did i miss something.

    Could you please show me?

    
    Public Class frmMain
        Dim SERVER_IP As String = "10.0.0.1"
        Dim IP_FILE As String = "connect.ini"
    
        Private Sub frmMain_Load(sender As Object, e As EventArgs) Handles MyBase.Load
            'make form invisible
            Me.Visible = False
    
            'get ip from file, if it exists
            If File.Exists(IP_FILE) Then
                Using fileReader As StreamReader = New StreamReader(IP_FILE)
                    SERVER_IP = Integer.Parse(fileReader.ReadLine)
                End Using
            End If
    
            'execute l2.bin
            Try
                Shell("L2.bin IP=" + SERVER_IP, vbNormalFocus)
            Catch ex As Exception
                MsgBox("L2.bin not found! Try checking your files.", MsgBoxStyle.Critical, "L2")
            End Try
    
            'close L2
            End
        End Sub
    End Class
    
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock