Register for your free account! | Forgot your password?

Go Back   elitepvpers > Other Online Games > Browsergames > DarkOrbit
You last visited: Today at 10:00

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Release] Orbit Reborn - Source

Discussion on [Release] Orbit Reborn - Source within the DarkOrbit forum part of the Browsergames category.

Reply
 
Old 11/25/2014, 02:50   #376
 
YURI-ELIADE.ITALY's Avatar
 
elite*gold: 15
Join Date: Feb 2014
Posts: 313
Received Thanks: 78
Cool

Quote:
Originally Posted by insano_ View Post
My rank 21 -admin dont show on emulator, why not?

are you using atlantiz emulator for orbit reborn cms
no
YURI-ELIADE.ITALY is offline  
Old 11/25/2014, 03:17   #377
 
elite*gold: 0
Join Date: Jul 2014
Posts: 47
Received Thanks: 3
u have change spacemap of orbit for spacemap of atlantiz, cntrl c + cntrl v .-.
insano_ is offline  
Old 12/08/2014, 20:57   #378
 
elite*gold: 0
Join Date: Jul 2014
Posts: 17
Received Thanks: 2
This source is so messy.
Apni is offline  
Old 12/08/2014, 22:18   #379
 
linkpad's Avatar
 
elite*gold: 260
Join Date: Jul 2012
Posts: 299
Received Thanks: 812
Quote:
Originally Posted by Apni View Post
This source is so messy.
Yes, this source is messy but no one told you to use it. Also, you could make your own emulator, and show us how yours is better ?
linkpad is offline  
Old 12/08/2014, 23:02   #380
 
elite*gold: 0
Join Date: Jul 2014
Posts: 17
Received Thanks: 2
Quote:
Originally Posted by linkpad View Post
Yes, this source is messy but no one told you to use it. Also, you could make your own emulator, and show us how yours is better ?
You released it for educational purposes. I hope you're not expecting anyone to not critique your code.
Apni is offline  
Old 12/08/2014, 23:11   #381
 
linkpad's Avatar
 
elite*gold: 260
Join Date: Jul 2012
Posts: 299
Received Thanks: 812
Quote:
Originally Posted by Apni View Post
You released it for educational purposes. I hope you're not expecting anyone to not critique your code.
I'm open to critique, but then give some arguments about it instead of writing only one word.
linkpad is offline  
Thanks
3 Users
Old 12/13/2014, 01:29   #382
 
elite*gold: 0
Join Date: Mar 2013
Posts: 1
Received Thanks: 0
I get a error in the database.. it says [Err] 1062 - Duplicate entry '1' for key 'PRIMARY'

Fixed.. Now on the home page I get these
Quote:
Deprecated: Non-static method Auth::getUser() should not be called statically, assuming $this from incompatible context in C:\xampp\htdocs\views\internalStart\index.php on line 71
Quote:
Deprecated: Non-static method Auth::getUser() should not be called statically, assuming $this from incompatible context in C:\xampp\htdocs\views\internalStart\index.php on line 86
MMO
and
Quote:
Notice: Undefined property: View::$hall_of_fame_user in C:\xampp\htdocs\views\internalStart\index.php on line 112
players
PLEASE HELP ME FIX!
PICTURE:
babyhamsta is offline  
Old 12/13/2014, 17:57   #383
 
elite*gold: 0
Join Date: Dec 2010
Posts: 39
Received Thanks: 9
I have such errors in last version of xampp, but in old xampp all is ok, so try another version of it.
OmenUS is offline  
Old 12/16/2014, 13:17   #384
 
linkpad's Avatar
 
elite*gold: 260
Join Date: Jul 2012
Posts: 299
Received Thanks: 812
Quote:
Originally Posted by babyhamsta View Post
I get a error in the database.. it says [Err] 1062 - Duplicate entry '1' for key 'PRIMARY'

Fixed.. Now on the home page I get these and

PLEASE HELP ME FIX!
PICTURE:
Replace util/Auth.php by this :

PHP Code:
<?php

class Auth
{
    public static function 
handleLogin()
    {

        @
session_start();
        
$logged Session::get('loggedIn');
        if (
$logged == false)
        {
            
Session::destroy();
            
header('location: /index');
            exit;
        }
    }

    public static function 
isLogged()
    {
        @
session_start();
        
$logged Session::get('loggedIn');
        if(
$logged == true)
        {
            
header('location: /internalStart');
            exit;
        }
    }

    public static function 
getUser($data)
    {
        @
session_start();
        
$logged Session::get('loggedIn');
        if (
$logged == true)
        {
            
$db = new Database(DB_TYPEDB_HOSTDB_NAMEDB_USERDB_PASS);
            
$returnvalue $db->select('SELECT '.$data.' FROM users WHERE id= :account_id', array('account_id' => Session::get('account_ID')));       
            return 
$returnvalue[0][$data];
        }
    }

    public static function 
getUserSettings($data)
    {
        @
session_start();
        
$logged Session::get('loggedIn');
        if (
$logged == true)
        {
            
$db = new Database(DB_TYPEDB_HOSTDB_NAMEDB_USERDB_PASS);
            
$returnvalue $db->select('SELECT '.$data.' FROM users_settings WHERE playerid= :account_id', array('account_id' => Session::get('account_ID')));       
            return 
$returnvalue[0][$data];
        }
    }

    public static function 
getUserByID($data$id)
    {
        
$db = new Database(DB_TYPEDB_HOSTDB_NAMEDB_USERDB_PASS);
        
$returnvalue $db->select('SELECT '.$data.' FROM users WHERE id= :account_id', array('account_id' => $id));       
        return 
$returnvalue[0][$data];
    }
}


?>
And also replace util/Server_status.php by this :

PHP Code:
<?php

class Server_status
{
    public static function 
online_users()
    {
            
$db = new Database(DB_TYPEDB_HOSTDB_NAMEDB_USERDB_PASS);
            
$req $db->prepare('SELECT sval FROM server_statistics WHERE skey="active_connections"');
            
$req->execute();

            
$resultat $req->fetch();
            
            return 
$resultat[0];
    }
}

?>
linkpad is offline  
Thanks
1 User
Old 12/20/2014, 14:51   #385
 
elite*gold: 0
Join Date: Dec 2014
Posts: 5
Received Thanks: 0
Quote:
Deprecated: Non-static method Auth::getUser() should not be called statically, assuming $this from incompatible context in C:\xampp\htdocs\views\internalStart\index.php on line 71
you can fix it with this code:
DO_2048 is offline  
Old 12/20/2014, 21:07   #386
 
Mr.Streuner's Avatar
 
elite*gold: 0
Join Date: Oct 2014
Posts: 76
Received Thanks: 17
<label for="">Username:</label><span id="username"><?php echo Auth::getUser('username'); ?></span>
This Work
Mr.Streuner is offline  
Old 12/21/2014, 08:49   #387
 
elite*gold: 0
Join Date: Nov 2014
Posts: 1
Received Thanks: 0
Tell me where the game started. Do I need to key(code) on the certificate, if so please tell him
dfhkfvjd is offline  
Old 12/23/2014, 16:25   #388
 
elite*gold: 0
Join Date: Aug 2014
Posts: 39
Received Thanks: 51
Post Linkpad help or anyone:p

Hi i have a problem the only problem i have on hamachi is this
when i go to trade the images of the ships and the scrollbar are okay
but when i click on the ship and buy it only make a refresh and follow with same ship (refresh of header.swf) also the under ship details are frozed there :
Speed : 360 Hit Points : 64000
Lasers : 6 Generators : 6
Extras : 1
ArDii98 is offline  
Old 12/23/2014, 22:05   #389
 
UND3RW0RLD's Avatar
 
elite*gold: 1
Join Date: Jun 2011
Posts: 1,464
Received Thanks: 1,065
code?
UND3RW0RLD is offline  
Old 12/24/2014, 01:29   #390

 
elite*gold: 11
Join Date: Dec 2008
Posts: 114
Received Thanks: 66
You did a great job on this. Thanks for releasing the source.
gforcz is offline  
Thanks
1 User
Reply


Similar Threads Similar Threads
[Open Beta] Orbit Reborn - Private Server
10/28/2014 - DarkOrbit - 105 Replies
http://i.epvpimg.com/YgS1f.png Presentation Orbit Reborn is a DarkOrbit private server. This server try to bring back the old gameplay from 2008, that means there's no : PET, RSB, Hellstorm, ... Features - maps 1-1 / 2-1 / 3-1 / 4-1 / 4-2 / 4-3 / 4-4 - rockets : R-310, PLT-2026, PLT-2021
[Selling] Orbit Reborn Acc.
09/20/2014 - Browsergames Trading - 0 Replies
Sellin "a" Orbit Reborn Acc with 275 Kills and Blue Design.^^ 10 e*gold fast deal no probs.^^
[DarkOrbit] Orbit Reborn Private Server
02/28/2014 - DarkOrbit - 4 Replies
Project presentation Orbit Reborn is a private server of the game Dark Orbit. This server is developed only by me and is in Beta test. How to join the server ? You can join Orbit Reborn with this url = orbit-reborn Orbit Reborn have also a TS3=orbit-reborn.com
orbit-reborn.com
01/20/2014 - Browsergames Trading - 1 Replies
Orbit Reborn is the link its a darkorit remake but the old servers meaning just plain ships no pilot points pets rsb just x1,x2,x3,x4,sab its pvp battles private server you just sign up on the link its free to it keeps improving its awesome come join!!!!:rtfm::rtfm::rtfm::rtfm::rtfm:
Orbit Reborn
12/16/2013 - DarkOrbit - 2 Replies
>>Orbit Reborn<< Statut: ONLINE DarkOrbit - Orbit Reborn - YouTube



All times are GMT +1. The time now is 10:01.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.