Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 3,909
» Latest member: artemde96
» Forum threads: 5,153
» Forum posts: 41,375

Full Statistics

Online Users
There are currently 29 online users.
» 0 Member(s) | 28 Guest(s)
Bing

Latest Threads
Last Chaos Server Sale
Forum: The Black Market (Buy, Sell, Trade)
Last Post: XWrongX2
01-26-2026, 11:07 PM
» Replies: 3
» Views: 614
All in One Exporter
Forum: Tools
Last Post: Kain88
01-25-2026, 07:04 AM
» Replies: 4
» Views: 436
HELP! ReZasCashServer It ...
Forum: Ep4 Support
Last Post: Kain88
01-24-2026, 03:24 PM
» Replies: 2
» Views: 169
Hi, does anyone know the ...
Forum: Help
Last Post: Desarija
01-21-2026, 11:29 AM
» Replies: 1
» Views: 115
LastChaos Nemesis
Forum: Server Advertising
Last Post: Desarija
01-20-2026, 04:06 PM
» Replies: 3
» Views: 239
Looking for EP4 Guidance
Forum: General Discussion
Last Post: xHypnosiaa
01-19-2026, 08:33 AM
» Replies: 1
» Views: 172
We're in need of creative...
Forum: Project Recruitment
Last Post: RGT
01-16-2026, 12:48 AM
» Replies: 0
» Views: 119
Last Chaos build deployme...
Forum: Ep4 Guides
Last Post: xHypnosiaa
01-08-2026, 11:14 AM
» Replies: 0
» Views: 78
Last Chaos global server ...
Forum: Ep4 Guides
Last Post: xHypnosiaa
01-07-2026, 07:01 PM
» Replies: 0
» Views: 34
EP-2/EP-3 Mixed files
Forum: Archived General Server Releases
Last Post: TeKnodE
01-06-2026, 09:53 PM
» Replies: 1
» Views: 298

 
  Weapon Invisible o.-
Posted by: BrummyJay - 05-26-2012, 05:16 PM - Forum: General Discussion - Replies (3)

Can Anyone give me any tips i have changed the picture and i am using the smc.lod from destiny have i missed something out? ;/

Print this item

  Coding help
Posted by: pwesty - 05-26-2012, 09:52 AM - Forum: Coders Talk - Replies (4)


no

Print this item

  Luxury Server Watcher V2.5
Posted by: roseon - 05-26-2012, 12:41 AM - Forum: Tools - Replies (2)


Lux Server Watching Tool:

Controls All Server has been tested on every Server Files

Web Browser Added it for fun

Files and text Encrypter

Server Information Reading Has you can see in the Previews

2UY HERE 15$

Print this item

  Hey Guys
Posted by: DehDream01 - 05-25-2012, 04:51 PM - Forum: General Discussion - Replies (1)


Hey Guys im willing to help somone new here to make there own ep1 server =) considering i have my own server - Last Chaos Dream

 

 

But ill only help you if ..

 

 

You have a good lc usa account above lvl 165 which chars > Asssassin . Nightshadow or archer

 

If you have any of those chars lvl 165+ with good equipment etc

 

pm me and ill help to make your server the best it can bee Big Grin

Print this item

  ~mindsharing~ (C# snippets, Parse some lod files)
Posted by: ILAn12346 - 05-25-2012, 04:14 AM - Forum: Coders Talk - Replies (7)


hi Big Grin i wanna share an C# class maybe anyone can build some nice stuff with it

 

in this class are 3 Functions, and 3 structs

 

parse/struct for Itemname.lod, mobname.lod and options.lod

 

i think its already known how to read this files, ok here the class Smile

 

class ParseLod
{

//parse itemname.lod

public struct Item
{
public int ID;
public string Name;
public string Description;
public string ToString()
{
return ID + "\t" + Name + "\t" + Description;
}
}

public static Mob[] mobname(string path)
{
byte[] bytes = File.ReadAllBytes(path);
long len = bytes.Length;
long i = 0;
int i2 = 0;
long i3 = 0;
int namelen;
string mobname;
Mob[] parse = new Mob[0];
do
{
Array.Resize(ref parse, (int)i3 + 1);
parse[i3].ID = (bytes[i + 4] + (bytes[i + 5] * 256) + (bytes[i + 6] * 256) + (bytes[i + 7] * 256));
namelen = (bytes[i + 8] + bytes[i + 9] + bytes[i + 10] + bytes[i + 11]);
mobname = "";
i2 = 1;
while (i2 < namelen + 1)
{
i2++;
mobname = mobname + (char)(bytes[i + 10 + i2]);
}
parse[i3].Name = mobname;
i += 8 + namelen;
i3++;
} while (i < len - 4);
return parse;
}

//parse mobname.lod

public struct Mob
{
public int ID;
public string Name;
public string ToString()
{
return ID + "\t" + Name;
}
}

public static Item[] itemname(string path)
{
byte[] bytes = File.ReadAllBytes(path);
long len = bytes.Length;
long i = 0;
int i2 = 0;
long i3 = 0;
int namelen, deslen;
string Itemname, des;
Item[] parse = new Item[0];
do
{
Array.Resize(ref parse, (int)i3 + 1);
parse[i3].ID = (bytes[i + 4] + (bytes[i + 5] * 256) + (bytes[i + 6] * 256) + (bytes[i + 7] * 256));
namelen = (bytes[i + 8] + bytes[i + 9] + bytes[i + 10] + bytes[i + 11]);
Itemname = "";
i2 = 1;
while (i2 < namelen + 1)
{
i2++;
Itemname = Itemname + (char)(bytes[i + 10 + i2]);
}
parse[i3].Name = Itemname;
deslen = (bytes[i + 12 + namelen] + bytes[i + 13 + namelen] + bytes[i + 14 + namelen] + bytes[i + 15 + namelen]);
des = "";
i2 = 1;
while (i2 < deslen + 1)
{
i2++;
des = des + (char)(bytes[i + 14 + i2 + namelen]);
}
parse[i3].Description = des;
i += 12 + namelen + deslen;
i3++;
} while (i < len - 4);
return parse;
}

//parse option.lod

public struct Seal
{
public int ID;
public int SubID;
public string Name;
public int Value1;
public int Value2;
public int Value3;
public int Value4;
public int Value5;
public int Value6;
public int Value7;
public string ToString()
{
return ID + "\t" + SubID + "\t" + Name + "\t" + Value1 + " | " + Value2 + " | " + Value3 + " | " + Value4 + " | " + Value5 + " | " + Value6 + " | " + Value7;
}
}

public static Seal[] option(string path)
{
byte[] bytes = File.ReadAllBytes(path);
long len = bytes.Length;
long i = 0;
int i2 = 0;
long i3 = 0;
int namelen;
string sealname;
Seal[] parse = new Seal[0];
do
{
Array.Resize(ref parse, (int)i3 + 1);

parse[i3].ID = (bytes[i + 4] + (bytes[i + 5] * 256) + (bytes[i + 6] * 256) + (bytes[i + 7] * 256));
parse[i3].SubID = (bytes[i + 8] + (bytes[i + 9] * 256) + (bytes[i + 10] * 256) + (bytes[i + 11] * 256));
namelen = (bytes[i + 12] + (bytes[i + 13] * 256) + (bytes[i + 14] * 256) + (bytes[i + 15] * 256));
sealname = "";
i2 = 1;
while (i2 < namelen + 1)
{
i2++;
sealname = sealname + (char)(bytes[i + 14 + i2]);
}
parse[i3].Name = sealname;

parse[i3].Value1 = (bytes[i + 16 + namelen] + (bytes[i + 17 + namelen] * 256) + (bytes[i + 18 + namelen] * 256) + (bytes[i + 19 + namelen] * 256));
parse[i3].Value2 = (bytes[i + 20 + namelen] + (bytes[i + 21 + namelen] * 256) + (bytes[i + 22 + namelen] * 256) + (bytes[i + 23 + namelen] * 256));
parse[i3].Value3 = (bytes[i + 24 + namelen] + (bytes[i + 25 + namelen] * 256) + (bytes[i + 26 + namelen] * 256) + (bytes[i + 27 + namelen] * 256));
parse[i3].Value4 = (bytes[i + 28 + namelen] + (bytes[i + 29 + namelen] * 256) + (bytes[i + 30 + namelen] * 256) + (bytes[i + 31 + namelen] * 256));
parse[i3].Value5 = (bytes[i + 32 + namelen] + (bytes[i + 33 + namelen] * 256) + (bytes[i + 34 + namelen] * 256) + (bytes[i + 35 + namelen] * 256));
parse[i3].Value6 = (bytes[i + 36 + namelen] + (bytes[i + 37 + namelen] * 256) + (bytes[i + 38 + namelen] * 256) + (bytes[i + 39 + namelen] * 256));
parse[i3].Value7 = (bytes[i + 40 + namelen] + (bytes[i + 41 + namelen] * 256) + (bytes[i + 42 + namelen] * 256) + (bytes[i + 43 + namelen] * 256));
i += 40 + namelen;
i3++;
} while (i < len - 4);
return parse;
}
}
}

 

and an little example

 

ParseLod.Mob[] example = ParseLod.mobname(@"C:\ILC_DARK\Data\mobname.lod");

int i = 0;
while (i < example.Length)
{
Console.WriteLine(example[i].ToString());
i++;
}

 

if anywan se an way to optimize, tell me Big Grin if any one wanna usw this class, do it Big Grin

 

~ILAN12346

Print this item

  Splash screen
Posted by: Blackfire - 05-24-2012, 01:58 AM - Forum: Ep1 Websites - Replies (4)


I was bored so I made this splash screen that works with ep1 files. I honestly dont like it but maybe someone will want to use it for themselves.

Download:

2

Dont hate if you dont like it.

Print this item

  [C#] Save MySQL Connection
Posted by: Nikolee - 05-23-2012, 06:29 PM - Forum: Coders Talk - Replies (3)


Hey guys, how can i save a MySql connection that is Read by a Textbox?

2

 

Uploaded with 2

Print this item

  Inventory Editor
Posted by: HateMe - 05-23-2012, 04:09 PM - Forum: Tools - Replies (34)


I have made an simple Inventory editor here it is...

 

 

can easy edit items add and remove seals on it ( to remove a seal jsut make the seal and value empty ).

 

remeber the player need to be ofline! And if wearing not -1 set it -1

 

Its working with the Nikola Pack.

 

2

 

- changes and fixes

Print this item

  Where can i found files for armor and wep lvl 200?
Posted by: egidos95 - 05-23-2012, 01:48 PM - Forum: General Discussion - Replies (1)


Hi all,When i try to drop armor and wep lvl 200 with gm commands it dont work Confused

probably because i have not changed t_item in navicat.

How can i do??

Print this item

  lcusa 175 sorc for some good lc files
Posted by: WorldOfChaos - 05-23-2012, 02:10 AM - Forum: General Discussion - Replies (6)


I wanna trade my 170-175 sorc with +27 wep awesome custom acces full raid set all lvl 5 jewels for some really good lastchaos server files. ep1/ep2/ep3

 

Pm me here

or

Skype - redring12

Print this item