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

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 3,910
» Latest member: Batteriesqbe
» Forum threads: 5,153
» Forum posts: 41,375

Full Statistics

Online Users
There are currently 26 online users.
» 0 Member(s) | 25 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: 116
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

 
  [HowTo] Change the starting level.
Posted by: Kotetsu - 06-19-2012, 07:38 PM - Forum: Ep1 Guides - Replies (9)


1. Go to newproject_db.

2. Right Click > Design Table

3. Search "a_level" Change the default (0) to "YourStartingLevel".

4. Have fun !!

 

 

**All Credit to ReturnKratos**

Print this item

  Guild name is in use
Posted by: hallo1234 - 06-17-2012, 08:50 PM - Forum: General Discussion - Replies (10)


Is there any way to fix that : !!! GUILD IS IN USE !!! bug ?

I tried to use an empty t_guild but it does not work.

Print this item

  [C#]Proyect Cosmos
Posted by: TheEvilAnt - 06-17-2012, 03:46 PM - Forum: Coders Talk - Replies (3)


I have found a full operating system in C# open source if anynone is interested here:

 

2

Print this item

  [C# Thread] Any wish?
Posted by: xalfuros - 06-17-2012, 01:06 PM - Forum: Coders Talk - Replies (18)


Hey,

 

Im learning at the moment some things about C#, and i need to know

which programs are most needed here?

 

No Autorestarter plz, its [CeNsOrEd].

Maybe a Server Manager with a good UI?

 

Write here plz for wishes

Print this item

  RememberLastChaos?
Posted by: eleven - 06-17-2012, 01:51 AM - Forum: General Discussion - Replies (2)


anyone have the link to this server?

 

I played it, and it was very nice. especially pvp.

the only flaw is expava very slowly. But the seals were spectacular

I have a link but does not work.

have closed the server or is there a website?

 

Thx and sorry for my english.

Print this item

  [Release] Juno v2 Relog Fix
Posted by: Sutz - 06-16-2012, 09:02 PM - Forum: Client Side - Replies (21)


Well I been trying to fix this an got it working at long last.. im not really sure how I fixed this but it works xD

 

My local client running Juno V2 with the relog send error bug after using this startzone folder stop send error with relogging.

 

Enjoy an hope it works for you.. If it asks for files that are missing like water or sky let me know.

 

2

Print this item

  [Releases] Sat and Sht
Posted by: MRGothic - 06-16-2012, 12:10 PM - Forum: Server Side - Replies (11)


All views are here sat and [CeNsOrEd] files from Aeria Gamigo and I could find.

 

Download_1:

2

 

Download_2:

2

 

Download_3:

2

 

Have Fun all Smile

Print this item

  [Guide]Old Launcher to another Launcher chancer
Posted by: MRGothic - 06-16-2012, 11:40 AM - Forum: Ep1 Guides - Replies (7)


This script is from Aeria/Gamigo:

 

Its a LC.bat

:Repeat
del "LC.exe"
if exist "LC.exe" goto Repeat
move "LC.exe_" "LC.exe"
start /NORMAL LC.exe
del "LC.BAT"

 

With this script chance you on your P-Server your old Launcher to another.

Print this item

  [C#]Doubt
Posted by: TheEvilAnt - 06-15-2012, 08:20 PM - Forum: Coders Talk - Replies (3)


I got a problem with a piece of code I want to modify the app.config with a textbox so I use this but it doesnt work it update but doesnt change the values:

 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using MySql.Data.MySqlClient;
using MySql.Data.Types;
using System.Configuration;

namespace MySql
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
Update_ConData();
}

private void button2_Click(object sender, EventArgs e)
{
Set_ConData();
Update_ConData();
}
public void Update_ConData()
{
//Read parameters App.config
string server = ConfigurationManager.AppSettings["server"];
string db = ConfigurationManager.AppSettings["db"];
string user = ConfigurationManager.AppSettings["user"];
string pass = ConfigurationManager.AppSettings["pass"];
//Put the variables in the textboxes
textBox1.Text = Convert.ToString(server);
textBox2.Text = Convert.ToString(user);
textBox3.Text = Convert.ToString(pass);
textBox4.Text = Convert.ToString(db);
}
public void Set_ConData()
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
string mito = "[CeNsOrEd]";
config.AppSettings.Settings["server"].Value = Convert.ToString(textBox1);
config.AppSettings.Settings["user"].Value = Convert.ToString(textBox2);
config.AppSettings.Settings["pass"].Value = Convert.ToString(textBox3);
config.AppSettings.Settings["db"].Value = Convert.ToString(textBox4);
config.Save(ConfigurationSaveMode.Modified);
}
}
}

Print this item

  PHP Vs JAVA
Posted by: TheEvilAnt - 06-15-2012, 03:30 PM - Forum: Coders Talk - Replies (2)


I have some doubts I want to learn more codes I have been learning visual sutdios codes (C# and C++) but now I want to learn a code to make webpages so I got the big question:

 

-What is better Java or PHP?

Print this item