|
You last visited: Today at 02:52
Advertisement
Azure Do Server
Discussion on Azure Do Server within the DarkOrbit forum part of the Browsergames category.
06/02/2013, 01:49
|
#166
|
elite*gold: 0
Join Date: Dec 2012
Posts: 584
Received Thanks: 74
|
I think this is a very limited server bad
|
|
|
06/02/2013, 10:38
|
#167
|
elite*gold: 0
Join Date: May 2012
Posts: 868
Received Thanks: 947
|
This should be treated as a friendly advice to the developer: NEVER EVER EVER USE ASYNC VOID ON NORMAL METHODS ! The only acceptable place to use async void is on event handlers ("delegate void").
You can't catch exceptions thrown from inside them.
|
|
|
06/02/2013, 12:09
|
#168
|
elite*gold: 0
Join Date: Mar 2010
Posts: 614
Received Thanks: 452
|
Thx very good version 5.0
but i have some ideas for 6.0:
1) Add all users information to database (coordinates, maps, munition,etc..)r
2) Fix repair drone and shield recovery
3) fix ammo, all munition depends by x4 
4) Add a system for ship damage (exemple a number into DB that set damage, another exemple number of laser... you can set this number (1:31) moltiplicated for 150)
5) Fix company start map :P all users start into mmo starter map.
6) it's all for now :P
|
|
|
06/02/2013, 12:31
|
#169
|
elite*gold: 0
Join Date: Dec 2012
Posts: 584
Received Thanks: 74
|
I think this server to limit the financial
|
|
|
06/02/2013, 17:55
|
#170
|
elite*gold: 0
Join Date: Sep 2012
Posts: 24
Received Thanks: 1
|
Quote:
Originally Posted by xkekko95x
Thx very good version 5.0
but i have some ideas for 6.0:
1) Add all users information to database (coordinates, maps, munition,etc..)r
2) Fix repair drone and shield recovery
3) fix ammo, all munition depends by x4 
4) Add a system for ship damage (exemple a number into DB that set damage, another exemple number of laser... you can set this number (1:31) moltiplicated for 150)
5) Fix company start map :P all users start into mmo starter map.
6) it's all for now :P
|
geimers run and start different ip and clients
|
|
|
06/02/2013, 19:49
|
#171
|
elite*gold: 0
Join Date: May 2013
Posts: 3
Received Thanks: 0
|
Quote:
Originally Posted by Xdr1
Hi, I'm Xdr of KekoMundo, I'm a programmer of c# and PHP. Today, I present my project. His name is Azure DarkOrbit Server. His a template for other coders who are here.
The template has a user connection, attacks, pathfinder, bonuxBox, portals, NPCs (without AI), mysql api. Is programed in .NET 4.5.
Preview:

Please like and subscribe.
Download v0.5.0:
VT:
Images:
ChangeLog:
v0.2:
- New CMS
- Some bugs fixed
- New pathfinder.
v0.3:
- Fixed some bugs in attack function and added new messages
- Aliens can attack now
- Added faction system to ships.
v0.4:
- Coded settings system
- Coded to preserve users data.
- Coded ping
- Coded update alerts.
- Portals positions fixed.
- New alien, Devolarium
- Updated algorithm of shield absorb
v0.5:
- Coded remove users from map
- Improved voids
- Improving power efficiency
- Fixed bug with BAR_STATUS
- ShipData synchronized with database.
Now I'm working in version 5.14.1 Client of darkorbit.
Sorry my bad english, i am spanish. And i have 15 years old.
|
Cual es la Contraseña de Descarga? Gracias haces un buen trabajo
|
|
|
06/02/2013, 20:23
|
#172
|
elite*gold: 0
Join Date: May 2011
Posts: 45
Received Thanks: 15
|
Hey guys,please help me... everytime when i go to  i have this error
Warning: require(../KERNEL-DOCMS/Init.php) [function.require]: failed to open stream: No such file or directory in C:\xampp\htdocs\index.php on line 2
Fatal error: require() [function.require]: Failed opening required '../KERNEL-DOCMS/Init.php' (include_path='.;\xampp\php\PEAR') in C:\xampp\htdocs\index.php on line 2
Yes,i delete "password" , i make it all from the video... But i still have this error
|
|
|
06/02/2013, 22:04
|
#173
|
elite*gold: 0
Join Date: Feb 2011
Posts: 34
Received Thanks: 2
|
Hi man i need password for Download v0.5.0 please.
|
|
|
06/03/2013, 17:05
|
#174
|
elite*gold: 0
Join Date: Oct 2012
Posts: 267
Received Thanks: 29
|
Help me please Parse error: parse error in C:\xampp\htdocs\index.php on line 12
PHP Code:
<?php
require '../KERNEL-DOCMS/Init.php';
if(isset($_POST['loginForm_default_username'], $_POST['loginForm_default_password'], $_POST['loginForm_default_login_submit']) && $_POST['loginForm_default_login_submit'] === 'Login'):
$errorData = "";
if(strlen($_POST['loginForm_default_password']) < 6 || strlen($_POST['loginForm_default_password']) > 20 || !preg_match('`[0-9]`', $_POST['loginForm_default_password']) || $_POST['loginForm_default_password'] === '******' || strlen($_POST['loginForm_default_username']) < 3 || strlen($_POST['loginForm_default_username']) > 20):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">Username and password combination doesn\'t exist.<br>Please check your info and try again.</p>';
else:
$query = $MySQLi->query('SELECT ID, Email FROM users WHERE Name = \'' .$_POST['loginForm_default_username'] . '\' AND pwHash = \'' . md5($_POST['loginForm_default_password']) . '\' LIMIT 1');
if($query->num_rows === 1):
$row = $query->fetch_assoc();
/*This is line 12 =>*/ $sessionId = $Core::GenerateRandom(18, true, false);
$MySQLi->query('UPDATE users SET sessionId = \' ' . $sessionId . '\' WHERE ID = ' . $row['ID'] . '');
$_SESSION['server1']['user']['sessionId'] = $sessionId;
$_SESSION['server1']['user']['email'] = $row['Email'];
header('Location: /indexInternal.es?action=internalStart');
else:
$errorData .= '<p class="singup_errorMessage signup_errorMessage">Username and password combination doesn\'t exist.<br>Please check your info and try again.</p>';
endif;
endif;
elseif(isset($_POST['signup_winnings'], $_POST['signup_username'], $_POST['signup_submit'], $_POST['signup_province'], $_POST['signup_passwordRepeat'], $_POST['signup_password'], $_POST['signup_newsletter'], $_POST['signup_instance'], $_POST['signup_email'], $_POST['signup_country'], $_POST['signup_birthdayYear'], $_POST['signup_birthdayMonth'], $_POST['signup_birthdayDay'])):
if($_POST['signup_submit'] == 'Register'):
$errorData = "";
if(strlen($_POST['signup_password']) < 6):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">The password is too short. Please choose a new password which has between 4 and 20 characters.</p>';
elseif(strlen($_POST['signup_password']) > 20):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">The password is too long. Please choose a new password which has between 4 and 20 characters.</p>';
elseif(!preg_match('`[0-9]`', $_POST['signup_password'])):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">The password must include numbers.</p>';
endif;
if(strlen($_POST['signup_username']) < 3):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">This username is too short. Please choose a new username which has between 3 and 20 characters.</p>';
elseif(strlen($_POST['signup_username']) > 20):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">This username is too long. Please choose a new username which has between 3 and 20 characters.</p>';
endif;
if(empty($_POST['signup_email']) || strlen($_POST['signup_email']) > 50 || preg_match("/^[a-z0-9_\.-]+@([a-z0-9]+([\-]+[a-z0-9]+)*\.)+[a-z]{2,7}$/i", $_POST['signup_email']) !== 1):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">Your e-mail address doesn\'t seem to be correct. Please enter a valid e-mail address.</p>';
endif;
if(!isset($_POST['signup_termsAndCondition']) || $_POST['signup_termsAndCondition'] !== '1'):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">Please confirm that you have accepted our Terms & Conditions. Afterwards, you may continue with your registration.</p>';
endif;
if($errorData === ''):
if($MySQLi->query('SELECT null FROM users WHERE Name = \'' .$_POST['signup_username'] . '\'')->num_rows > 0):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">This username already exists. Please select another username.</p>';
else:
$sessionId = $Core::GenerateRandom(18, true, false);
if($MySQLi->query('INSERT INTO users (Email, Name, pwHash, Servers, sessionId) VALUES (\'' . $_POST['signup_email'] . '\', \'' . $_POST['signup_username'] . '\', \'' . md5($_POST['signup_password']) . '\', \'\', ' . $sessionId . ');')):
$userId = $MySQLi->insert_id;
$MySQLi->multi_query('INSERT INTO server_1_players (userId) VALUES (' . $userId . ');UPDATE users SET Servers = \'[{1:' . $MySQLi->insert_id . '}]\' WHERE ID = \'' . $userId . '\'');
$_SESSION['server1']['user']['sessionId'] = $sessionId;
$_SESSION['server1']['user']['email'] = $_POST['signup_email'];
header('Location: /indexInternal.es?action=internalCompanyChoose');
endif;
endif;
endif;
endif;
endif;
require GLOBALS . 'doc.html';
require GLOBALS . 'header.html';
require FILES . 'INDEX/header.html';
require GLOBALS . 'sajax.html';
require GLOBALS . 'xajax.html';
require GLOBALS . 'headerEndJS.html';
require FILES . 'INDEX/jsSubmit.html';
echo '</head>';
require FILES . 'INDEX/bodyHeader.html';
require FILES . 'INDEX/body.html';
require FILES . 'INDEX/bodyFooter.html';
?>
|
|
|
06/03/2013, 21:29
|
#175
|
elite*gold: 0
Join Date: May 2013
Posts: 1
Received Thanks: 0
|
Helping for you
Quote:
Originally Posted by AndyXer
Hey guys,please help me... everytime when i go to  i have this error
Warning: require(../KERNEL-DOCMS/Init.php) [function.require]: failed to open stream: No such file or directory in C:\xampp\htdocs\index.php on line 2
Fatal error: require() [function.require]: Failed opening required '../KERNEL-DOCMS/Init.php' (include_path='.;\xampp\php\PEAR') in C:\xampp\htdocs\index.php on line 2
Yes,i delete "password" , i make it all from the video... But i still have this error 
|
I can help you, contact me on skype: swaaag.space
|
|
|
06/03/2013, 21:52
|
#176
|
elite*gold: 0
Join Date: Apr 2010
Posts: 2
Received Thanks: 0
|
@megasuperleader
"$errorData .= '<p class="singup_errorMessage signup_errorMessage">Username and password combination doesn\'t exist.<br>Please check your info and try again.</p>';"
There can't be "doesn\'t", you must write:
"$errorData .= "<p class='singup_errorMessage signup_errorMessage'>Username and password combination doesn\'t exist.<br>Please check your info and try again.</p>";"
To do it works
|
|
|
06/03/2013, 22:45
|
#177
|
elite*gold: 0
Join Date: Nov 2011
Posts: 1
Received Thanks: 0
|
mEN cUAL ES EL pASS PARA LA DESCARGAR ???????? Garcias ^^
|
|
|
06/03/2013, 23:22
|
#178
|
elite*gold: 0
Join Date: Sep 2010
Posts: 14
Received Thanks: 1
|
tutorial ??
|
|
|
06/04/2013, 14:50
|
#179
|
elite*gold: 0
Join Date: Nov 2011
Posts: 55
Received Thanks: 10
|
Tutorial (not in english lanuage)
|
|
|
06/04/2013, 17:22
|
#180
|
elite*gold: 0
Join Date: Oct 2012
Posts: 267
Received Thanks: 29
|
Quote:
Originally Posted by masbul123
@megasuperleader
"$errorData .= '<p class="singup_errorMessage signup_errorMessage">Username and password combination doesn\'t exist.<br>Please check your info and try again.</p>';"
There can't be "doesn\'t", you must write:
"$errorData .= "<p class='singup_errorMessage signup_errorMessage'>Username and password combination doesn\'t exist.<br>Please check your info and try again.</p>";"
To do it works 
|
Thanks for help... but not working :/
Then, you can copy the code, fix things so then I copy it and do it faster? .. I ask this because I do not understand almost nothing about php.
|
|
|
 |
|
Similar Threads
|
[WTS] 16x Summoner 13x Azure 15x Azure 15x Aloken
04/19/2012 - Dekaron Trading - 13 Replies
Selling 164 Summoner, 3 Inventorys, Pet, 2 Costumes, Clean name, Naked, Non-hacked. All infos - 50€ negotiable (pm me for infos)
Selling 152 Azure, 1 Costume, naked, All infos - 20€ (pm me for infos) - SOLD
Selling 155 Aloken, 2 Costumes, 4 Inventorys, Naked, All infos - 35€ (pm me for infos) - THIS ACCOUNT GOT BAGI LEVEL 101 with 14 DAYS LEFT OF 100% AMMY, AND FULL L3 GEAR +0
Selling 131 Azure, 1 Costume, Naked, 15€, All infos - (pm me for infos)
Taking only Paypal payments! PM
...
|
WTS FULL HELION AZURE SET +7 102-117 + azure lvl 121
09/01/2011 - Dekaron Trading - 2 Replies
Today's items are:
magic asca helmet +7 4 x +62
DN asca armor +7 4 x +62
magic asca pants +7
magic x 2 asca boots +7
DN 115 axes +7 (3 x 5% ice,3 x 5% light)
Magic sword lvl 115 +7
Magic shield lvl 117 +7
I am only looking for helion dil.
|
WTS 146 Azure Knight Siz Server
12/25/2010 - Dekaron Trading - 3 Replies
-146
-1 extra backpack
-formal costume
-full 0 ozer set
-crit ring
-comes with registered email and secret answer
looking for a 130+9 DN tb for the account
we will use middle man for the trade
|
new server called Azure
06/22/2009 - Dekaron Private Server - 5 Replies
hi everyone we made a new server come to the server and help us test the server its at here
and you can register there too so come and play with us
WE have the new class in the server
download the client and register
rates 500X, we are going to change the ip soon, idont much about the server i am helping out the server go check out the server and you will see .
|
All times are GMT +1. The time now is 02:52.
|
|