| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 23 online users. » 0 Member(s) | 23 Guest(s)
|
| 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: 609
|
All in One Exporter
Forum: Tools
Last Post: Kain88
01-25-2026, 07:04 AM
» Replies: 4
» Views: 425
|
HELP! ReZasCashServer It ...
Forum: Ep4 Support
Last Post: Kain88
01-24-2026, 03:24 PM
» Replies: 2
» Views: 161
|
Hi, does anyone know the ...
Forum: Help
Last Post: Desarija
01-21-2026, 11:29 AM
» Replies: 1
» Views: 112
|
LastChaos Nemesis
Forum: Server Advertising
Last Post: Desarija
01-20-2026, 04:06 PM
» Replies: 3
» Views: 235
|
Looking for EP4 Guidance
Forum: General Discussion
Last Post: xHypnosiaa
01-19-2026, 08:33 AM
» Replies: 1
» Views: 170
|
We're in need of creative...
Forum: Project Recruitment
Last Post: RGT
01-16-2026, 12:48 AM
» Replies: 0
» Views: 117
|
Last Chaos build deployme...
Forum: Ep4 Guides
Last Post: xHypnosiaa
01-08-2026, 11:14 AM
» Replies: 0
» Views: 73
|
Last Chaos global server ...
Forum: Ep4 Guides
Last Post: xHypnosiaa
01-07-2026, 07:01 PM
» Replies: 0
» Views: 32
|
EP-2/EP-3 Mixed files
Forum: Archived General Server Releases
Last Post: TeKnodE
01-06-2026, 09:53 PM
» Replies: 1
» Views: 295
|
|
|
| LCND Project |
|
Posted by: RomainLastChaos - 08-02-2021, 04:30 PM - Forum: Project Recruitment
- Replies (4)
|
 |
LastChaos NeverDeath project Information
First of all welcome to the project as you know there is alot server wich pvp are not good or staying afk everytime in juno
this project goal is to give you the best experience about pve and pvp and good content wich will make you enjoy the game as far for a long time
you need to know this project will not be a week server that why the project will take alot time to be done
What will be LastChaos NeverDeath so special?
- all monsters will be reworked about hp ,defense , for a better gameplay experience according your weapons
- accesory and stuff will be reworked to match news gameplay/pvp
- level Max 60
- Max Upgrade +15
- Unique pet wich will follow you during your leveling (Jins)
- Unique characters and weapons what does it mean ? it mean you will be able to equip both weapon at one time wich will activate and disable skill following weapon equipêd in order to not over powered characters
- Unique game experience story from level 1 to 60
- Grade equipment Color
White (Basic)
Blue Rare
Purple Epic
Orange Legendary
Cyan Mythic
what about skills ?
each character will have all skills unlockable from level 1 to 60 it will also include strong skill such as deadline , storm , meteor, and more
the whole skills and buff will be reworked to match the gameplay and pvp
The main Interface will be reworked a bit to be clean and usefull
What do LastChaos NeverDeath will offer you when you are level max ?
you will have to try to drop your best gears (armor, weapon,accs)
you will have to make daily quest that will give you key wich will be used to get accesorys and more)
the pvp will be reworked
the mcs/dcs will be reworked to be more powerful and more great to play it more information soon about that setting)
Guild section
1. Guild grade rank will be rework
2. the guilds will be rework for a better experience about buff for a better gameplay
severals dungeon
Dungeon Basic (Story mode)
Dungeon Hard (gears, coins for game content mode)
Economy LastChaos NeverDeath
the whole gold drop from monster will be changed
the sell rate will be changed
ItemShop
Only for cosmetics & Co
What important thing will be removed from game for a better gameplay
all thing regarding boosting experience
the full content except cosmetic & Co will be available by playing the game
More Information , images , video , note to come Soon
i'm looking for members who have time and know lastchaos devlopment and more , and want to be a part of the project adventure
if you are interested pm me here disocrd from project here -> 2
|
|
|
| Fix for FCV2005 Website |
|
Posted by: Veni - 07-29-2021, 03:43 PM - Forum: Ep4 Websites
- Replies (3)
|
 |
sup,
this seems to fix the problem some people are facing with the fcv2005 website. you can abuse the lost password feature to reset the password of accounts you know the username of. seems to work on every website that uses it.
Either replace the file, or just take every change from the switch statement:
switch ( $code )
{
case 1:
if(!$this->Mlostpass->validnow($this->Mlostpass->user)) $this->errors[] = 'You have\'t entered your username.';
elseif(!$this->Mlostpass->valid_username($this->Mlostpass->user)) $this->errors[] = 'The username you entered is invalid.';
else{
$this->load->set('gsecret', $this->Mlostpass->get_secret_question($this->Mlostpass->user) );
$_SESSION['lp_user'] = $this->Mlostpass->user;
$type = 1;
}
break;
case 2:
if(!$this->Mlostpass->validnow($this->Mlostpass->secret_answer)) $this->errors[] = 'You have\'t entered your secret answer.';
else{
if ( $this->Mlostpass->get_secret_answer( $_SESSION['lp_user'], $this->Mlostpass->secret_answer) )
{
$type = 2;
$_SESSION['secret_answer'] = $this->Mlostpass->secret_answer; // added
}
else
{
$this->errors[] = 'The secret answer is incorrect.';
}
}
break;
case 3:
if(!$this->Mlostpass->validnow($this->Mlostpass->new_password)) $this->errors[] = 'You have\'t entered your new password.';
else if(!$this->Mlostpass->get_secret_answer( $_SESSION['lp_user'], $_SESSION['secret_answer'])) $this->errors[] = 'Answer not correct!'; //added
else if(!$this->Mlostpass->validnow($_SESSION['secret_answer']) || !isset($_SESSION['secret_answer'])) $this->errors[] = "Answer not correct!" // added
else {
if(!$this->Mlostpass->valid_password($this->Mlostpass->new_password)) $this->errors[] = 'The new password you entered is invalid.';
else {
if(!isset($this->Mlostpass->new_password_again)) $this->errors[] = 'You have\'t entered new password-repetition.';
else {
if($this->Mlostpass->new_password != $this->Mlostpass->new_password_again) $this->errors[] = 'The two passwords you entered do not match.';
else {
if($this->Mlostpass->update_password()) {
$this->load->set('success', array('Your password was successfully changed.', 'You\'ve been logged out for security reasons!'));
unset($_SESSION['lp_user']);
unset($_SESSION['secret_answer']); // added
}
else{
$this->errors[] = 'Password could not be updated.' ;
}
}
}
}
}
}
case 2 and 3 have been modified in this. Havent tested it myself, but people told me it works.
2
|
|
|
| Development LastChaos Interface By Kazeral |
|
Posted by: Kazeral - 07-29-2021, 01:14 AM - Forum: Development Showroom
- Replies (9)
|
 |
Hello members i want to show you My total reworked lastchaos main interface (not so much just clean and usefull)
what i have change?
radar
character information
chat (the chat have 2 option 1 compact 1 normal when switch mode to channel mode see 2nd scrennshoot)
skill quickslot
cash shop button
what i have use ? several images from google reworked with UITool , GIMP logicial and my imagination
result here
Before
After
UPDATE CHAT AREA 1.0
2
this is the begin of a big project
you can reply if you like or not like it will help me thank you in advance
|
|
|
| Need help with LC-CMS 4.0.1 |
|
Posted by: Jack41 - 07-25-2021, 07:03 PM - Forum: ToXiC Support
- Replies (2)
|
 |
Hello,
I have this screen and I don't understand :
/monthly_2021_07/lc-cms01.png.2f1ce8f5560081e08ff4070177fcf266.png" />
To configure my server on Centos 7, I made :
To understand, I used :
2
2
// Go to root
sudo -i
// Update OS
yum update -y
// Firewalld for later - Will need more rules
yum install firewalld -y
systemctl start firewalld
systemctl enable firewalld
firewall-cmd --permanent --add-service=http
firewall-cmd --permanent --add-service=https
firewall-cmd --reload
systemctl stop firewalld
// Set Timezone
timedatectl set-timezone Europe/Paris
// Installation Time Server
yum install ntp -y
systemctl start ntpd
systemctl enable ntpd
// Installation Apache2
yum install httpd -y
systemctl start httpd
systemctl enable httpd
// Test Apache2 on a browser
http://your_server_ip
// VirtualHost - Need to change 'example.com' by your website
mkdir -p /var/www/example.com/html
mkdir -p /var/www/example.com/log
chown -R $USER:$USER /var/www/example.com/html
chmod -R 777 /var/www
Upload CMS to /var/www/example.com/html
chmod -R 755 /var/www
mkdir /etc/httpd/sites-available /etc/httpd/sites-enabled
vi /etc/httpd/conf/httpd.conf
Add this line at the bottom :
IncludeOptional sites-enabled/*.conf
vi /etc/httpd/sites-available/example.com.conf
Add this :
<VirtualHost *:80>
ServerName www.example.com
ServerAlias example.com
DocumentRoot /var/www/example.com/html
ErrorLog /var/www/example.com/log/error.log
CustomLog /var/www/example.com/log/requests.log combined
</VirtualHost>
ln -s /etc/httpd/sites-available/example.com.conf /etc/httpd/sites-enabled/example.com.conf
// Right on VirtualHost
setsebool -P httpd_unified 1
ls -dZ /var/www/example.com/log/
semanage fcontext -a -t httpd_log_t "/var/www/example.com/log(/.*)?"
restorecon -R -v /var/www/example.com/log
ls -dZ /var/www/example.com/log/
// Test VirtualHost
systemctl restart httpd
ls -lZ /var/www/example.com/log
// Installation mariadb
yum install mariadb mariadb-server -y
systemctl start mariadb
systemctl enable mariadb
mysql_secure_installation
Set Password to root, etc, etc...
mysql -u root -p
set global max_allowed_packet=100000000;
CREATE USER 'USER' IDENTIFIED BY 'PASSWORD';
CREATE database db_db;
CREATE database db_data;
CREATE database db_db_auth;
CREATE database db_web;
GRANT ALL ON db_db.* TO 'USER'@'%' IDENTIFIED BY 'PASSWORD';
GRANT ALL ON db_data.* TO 'USER'@'%' IDENTIFIED BY 'PASSWORD';
GRANT ALL ON db_db_auth.* TO 'USER'@'%' IDENTIFIED BY 'PASSWORD';
GRANT ALL ON db_web.* TO 'USER'@'%' IDENTIFIED BY 'PASSWORD';
flush privileges;
quit
// Import database with Navicat : data, db, db_aut and web
// Install PHP
yum install php php-mysql -y
// Restart Apache2
systemctl restart httpd
// Config of file '/var/www/example.com/html/configure/configure.php' :
<?php
// Your Time Zone
// List of Supported Timezones
// 2
date_default_timezone_set('Europe/Paris');
// Auth Version (EP1,EP2,EP3,EP4)
$dbhash["auth_version"] = 'EP4';
// Mysql IP
$dbhash["cms_lc_host"] = 'X.X.X.X'; // dns or ip
// I tried with 127.0.0.1 and the public IP address too
// Mysql Login
$dbhash["cms_lc_username"] = 'USER'; // Mysql username
$dbhash["cms_lc_password"] = 'PASSWORD'; // Mysql password
// The user and password created
// Mysql Databases
$dbhash["cms_lc_auth"] = 'db_db_auth'; // auth database
$dbhash["cms_lc_db"] = 'db_db'; // db database
$dbhash["cms_lc_data"] = 'db_data'; // data database
$dbhash["cms_lc_site"] = 'db_web'; // Website Database Name
// t_users Database
$dbhash["cms_lc_authORdb"] = 'db_db_auth';
//GM Guild Name (removes from ranks)
$gm_guild = 'XXXXX';
// Status page settings
$ptime = "3"; // Timeout limit
$Lip = "X.X.X.X"; // Login IP
$Lport = "XXXX"; // Login Port
$Bip = "X.X.X.X"; // Billing IP
$Bport = "XXXX"; // Billing Port
$G1ip = "X.X.X.X"; // GS1 IP
$G1port = "XXXX"; //GS1 Port
$G2ip = "X.X.X.X"; // GS2 IP
$G2port = "XXXX"; //GS2 Port
$G3ip = "X.X.X.X"; // GS3 IP
$G3port = "XXXX"; //GS3 Port
$G4ip = "X.X.X.X"; // GS4 IP
$G4port = "XXXX"; //GS4 Port
$G5ip = "X.X.X.X"; // GS5 IP
$G5port = "XXXX"; //GS5 Port
$G6ip = "X.X.X.X"; // GS6 IP
$G6port = "XXXX"; //GS6 Port
// FOR EVENTS ADDS % CASH
// Say you run a cash event so when someone donates you give them 30% more cash you put 30 in below
$BonusCash = "30";
/* SMTP Server PHP Support
set to yes if your php supports smtp. Set to no if you get smtp error when registering. */
$Allow_Email_sending = 'no'; // no or yes
// SMTP Settings to send email messages
$SMTP_Host = "smtp.gmail.com";
$SMTP_Username = "";
$SMTP_Password = "";
// IMPORTANT :
// Never share this salt with anyone!
//(you should change this to match your server if running ep2!!)
$config["Salt"] = 'phoohie1yaihooyaequae7PuiWoeNgahjieth3ru3yeeghaepahb7aeYaipe2we6zii6mai6uweig8siasheinoungeoyeiLohShi2xoh2xi8ooxee9ahpiehahc9Phe';
?>
So, to test the connectivity, I used Telnet : telnet X.X.X.X 3306
It's OK
I connected from another server Linux (wich has the package mysql to use the commandline) :
mysql -h X.X.X.X -u USER -p
SHOW DATABASES;
I saw my 4 databases, I created.
Someone have an idea ?
Thank you.
|
|
|
| Custom Ep4 LC Files |
|
Posted by: camaro3183 - 07-22-2021, 01:33 AM - Forum: Server Side
- Replies (2)
|
 |
I am releasing a custom ep4 files that has alot of custom systems in it, fixes, some dupe fixes and more
here is a list of some systems that is in these files
Bot system
Daily Login
Character name color change
Custom Fusion System
and more there is to much to list
here is a link: REMOVED
Enjoy ?
2
|
|
|
| Use any effect on titles. |
|
Posted by: yanharazra2 - 07-18-2021, 12:58 PM - Forum: Ep4 Support
- Replies (2)
|
 |
Hello everyone.
I was having an issue that if I use any effect on titles other than the specific made titles ones it never shows in the game when I use it.
So I was wondering if there is a way to use any effect I want on titles.
Thanks in advance!.
|
|
|
| Can''t install visual studio 2010 service pack 1 |
|
Posted by: NewUser - 07-11-2021, 02:16 PM - Forum: General Support
- Replies (4)
|
 |
Hi when ever I try to install visual studio 2010 service pack 1 I get this error:
Microsoft Visual Studio 2010 service pack 1 has not been installed because: The system cannot locate the object specified.
Get this no matter what pc I try to install on. The installer says downloading and then I get the error a few minutes later. Seems to be a problem with the download?
im using VS10sp1-KB983509 as the installer.
Anyone know how to fix this?
|
|
|
|