Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

ARES - HTML5 Client

Initiate Mage
Joined
Jun 17, 2019
Messages
2
Reaction score
0
Hello, ARES was a german project to realize a HTML5 Standard

The Emulator is written in Java and the Client in HTML5 (Rendering im Canvas)

screenshots:

ThPurge - ARES - HTML5 Client - RaGEZONE Forums


Download:





Have fun
 
Initiate Mage
Joined
Jun 16, 2019
Messages
4
Reaction score
0
add my on discord ThPurge
Master#4148

I get questions how to setup
I get no tutorial for this

thanks
 
Initiate Mage
Joined
Jul 1, 2019
Messages
2
Reaction score
0
My register doesnt work and if anyone has sql password could give me the one to i login.
And Could you explain how to install this
 
Newbie Spellweaver
Joined
Sep 4, 2010
Messages
8
Reaction score
3
My register doesnt work

Yes, there isn't any kind of code behind the register.
If you don't want to code the register logic, just run this quary.
Code:
INSERT INTO `users` (`id`, `username`, `email`, `password`, `sso_ticket`, `rank`, `credits`, `duckets`, `premium_currency`, `exp`, `look`, `hc_days`, `working`, `activation`) VALUES (NULL, 'Bruno', 'bruno@example.com', '$2y$10$kCSAvqgevQQ18rOdv.Xl6eEYifqIGz08xobX/tQ2Aq1IfJ939XN0a', '', '1', '49207', '100', '0', '0', 'ca-3084-96-96.ch-210-92.lg-285-110.cc-3075-110.sh-305-110.hd-3102-1', '527', 'Ares User', NULL);
Username: Bruno
Password: Bruno
 
Last edited:
Initiate Mage
Joined
Jul 1, 2019
Messages
2
Reaction score
0
Bro okey thanx for it but i have a question about /game it always restart page.
Other issue is that i cant open room page , katalog .
Finally if it has a emulator how could i open would you tell me ?
 
Last edited:
Newbie Spellweaver
Joined
Sep 4, 2010
Messages
8
Reaction score
3
Could you explain how to install this



The video quality will be better, when youtube finish the processing to full hd. I've recorded it with 4k and downscale to full hd. Therefore you can't read a lot with 720p.:D:
Edit: now it's finished

Avatars are loading when you correct the link in clientjs.php at line 164.
 
Last edited:
Newbie Spellweaver
Joined
Sep 8, 2015
Messages
58
Reaction score
14
Going to take a look at this, Does anyone know which PHP/Mysql version you need?
 
Last edited:
Newbie Spellweaver
Joined
Jan 19, 2014
Messages
41
Reaction score
12
Use the latest versions of php and MySQL cause it was developed in this year so it uses the latest versions
 
Newbie Spellweaver
Joined
Sep 8, 2015
Messages
58
Reaction score
14
Started to work on a register but it maybe a total fail.. I'm not good at PHP and I thought just Posting the data entered would b easy but I can't get passed it. For those who could either finish or use this here ya go:

<?php
$db_server = "localhost";
$db_username = "root";
$db_password = "King12";
$db_database="ares";

$regiuser=$_POST['regiuser'];
$motto=$_POST['motto'];
$email=$_POST['email'];
$password1=$_POST['password'];
$conn = new PDO("mysql:host=$db_server;dbname=$db_database", $db_username, $db_password);

$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

$sql = "INSERT INTO users (username, motto, password, email, credits, duckets, rank)
VALUES ('$regiuser', '$motto', '$password1', '$email', '250', '5000', '1')";

$conn->exec($sql);echo "<script>alert('Account successfully added!'); window.location='index.php'</script>";
?>
 
Newbie Spellweaver
Joined
Sep 4, 2010
Messages
8
Reaction score
3
Started to work on a register but it maybe a total fail.. I'm not good at PHP and I thought just Posting the data entered would b easy but I can't get passed it. For those who could either finish or use this here ya go:

<?php
$db_server = "localhost";
$db_username = "root";
$db_password = "King12";
$db_database="ares";

$regiuser=$_POST['regiuser'];
$motto=$_POST['motto'];
$email=$_POST['email'];
$password1=$_POST['password'];
$conn = new PDO("mysql:host=$db_server;dbname=$db_database", $db_username, $db_password);

$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

$sql = "INSERT INTO users (username, motto, password, email, credits, duckets, rank)
VALUES ('$regiuser', '$motto', '$password1', '$email', '250', '5000', '1')";

$conn->exec($sql);echo "<script>alert('Account successfully added!'); window.location='index.php'</script>";
?>

My register:

 
Initiate Mage
Joined
Aug 9, 2019
Messages
1
Reaction score
0
Hi guys please help me if you can, when I try to start the emulator in eclipse I get this wandering!



https://i.gyazo.com/b72eb0b10303e325df1fc45b2c94558d.png :(
 
Back
Top