Jump to content

TokiaBurke

Members
  • Posts

    11
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by TokiaBurke

  1. I am looking for to buy server classic package( include authen package). Please leave your Info here. I will contact soon. Thanks.
  2. 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?
  3. @DarthVader Could you please teach me how to create launcher for client. I want to make a simple launcher. But I failted. it didn't run.
  4. 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.
  5. 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
  6. Dear Finn, I tried to add my server IP but still not work. I tried "path\\to\\l2.exe ip=xxx.xxx.xxx.xxx port=10000". Could you please show me an example? Is there anyway to know the args for l2.exe's input? Thanks, Toki
  7. Dear everyone, I'm looking for a guide/tutorial to make my own launcher. But i have no idea how to make. Could someone show me? just a hint please.
  8. I'm newbie with L2 in the term of development. I really want to add new NPC/item to game , like new monster( pikachu) with animation and new armor("Sailormoon clothes")...But i don't know how. I watched : https://www.youtube.com/watch?v=cgx_ucDeG3Q I want it to be animal/ human with its animations. Please help me. At least, give me a hint. Thank in advance. Toki.
×
×
  • Create New...