Register for your free account! | Forgot your password?

Go Back   elitepvpers > Other Online Games > Browsergames > DarkOrbit
You last visited: Today at 15:23

  • 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/18/2014, 20:46   #361
 
elite*gold: 0
Join Date: May 2013
Posts: 54
Received Thanks: 5
Quote:
Originally Posted by LEJYONER(PvP) View Post
I Fixed Loading
STOP SPAM !
BotorCrime is offline  
Old 11/18/2014, 22:31   #362
 
UND3RW0RLD's Avatar
 
elite*gold: 1
Join Date: Jun 2011
Posts: 1,464
Received Thanks: 1,065
Quote:
Originally Posted by LEJYONER(PvP) View Post
I Fixed Loading
how?
UND3RW0RLD is offline  
Old 11/23/2014, 21:36   #363
 
elite*gold: 0
Join Date: Jul 2014
Posts: 47
Received Thanks: 3
Red face



the do_img this in htdocs and even then the hangar does not work
insano_ is offline  
Old 11/23/2014, 22:20   #364
 
UND3RW0RLD's Avatar
 
elite*gold: 1
Join Date: Jun 2011
Posts: 1,464
Received Thanks: 1,065
url is corrupt
UND3RW0RLD is offline  
Old 11/23/2014, 22:45   #365
 
elite*gold: 0
Join Date: Jul 2014
Posts: 47
Received Thanks: 3
Quote:
Originally Posted by ǝnd1ǝss-ɯonǝʎ View Post
url is corrupt
?? dont understand
insano_ is offline  
Old 11/24/2014, 09:10   #366
 
elite*gold: 0
Join Date: Feb 2014
Posts: 10
Received Thanks: 0
i edited inventory.php and shipAnim.php but dont work hangar help me pelase

kdrhn68 is offline  
Old 11/24/2014, 13:47   #367
 
steppdroid's Avatar
 
elite*gold: 0
Join Date: Sep 2014
Posts: 280
Received Thanks: 42
For buy ships with uridium i change internalDock_model so:

PHP Code:
<?php

class InternalDock_Model extends Model
{

    public function 
__construct()
    {
        
parent::__construct();
    }

    function 
get_ship_infos()
    {
        
$req $this->db->prepare('SELECT price_uri, ship_hp, laser, generator, extras, base_speed FROM ships WHERE ship_id=:id');
        
$req->execute(array('id' => $id));
        
$data $req->fetchAll();

        return 
$data;
    }

    function 
BuyShip()
    {
    
$price $this->db->prepare("SELECT price_uri FROM ships WHERE ship_id = :id");
    
$price->execute(array('id' => $id));
    
$uri $this->db->prepare("SELECT uridium FROM users WHERE id = :id");
    
$uri->execute(array('id' => $id));
    
    if(
$price $uri){
    
$uri $uri $price;
    
        try
        {

            
$form = new Form();

            
$form     ->post('id')
                    ->
val('verifyShipID');

            
$form     ->submit();
            
$data $form->fetch();
            
            
$sth $this->db->prepare("SELECT ship_id, ship_hp, base_speed FROM ships WHERE ship_id = :id");
            
$sth->execute(array('id' => $data['id']));
            
$data2 $sth->fetchAll();

            
$sth $this->db->prepare("UPDATE users SET shipid=:ship_id, current_hp=:curr_hp, max_hp=:max_hp WHERE id=:id");
            
$sth->execute(array('id' => Session::get('account_ID'), 'ship_id' => $data2[0]['ship_id'], 'curr_hp' => 0'max_hp' => $data2[0]['ship_hp']));

            
$sth $this->db->prepare("UPDATE player_config SET current_shield=0, max_shield=0, ship_speed=:speed, min_damage=0, max_damage=0 WHERE player_id=:id");
            
$sth->execute(array('id' => Session::get('account_ID'), 'speed' => $data2[0]['base_speed']));

            
$sth $this->db->prepare("UPDATE users_items SET OnConfig_1=0, OnConfig_2=0, Config1_DroneID=0, Config2_DroneID=0 WHERE player_id=:id");
            
$sth->execute(array('id' => Session::get('account_ID')));


            echo 
json_encode(array('result' => 'Ship bought !'));

            
header('location: '.URL.'internalDock');
        }

    }
    else{
    echo 
"<script>alert('Uridium insufficent...');</script>";}
    
    catch (
Exception $e
        {
            echo 
$e->getMessage();
        }

}

?>
but no work why?
steppdroid is offline  
Old 11/24/2014, 13:57   #368
 
UND3RW0RLD's Avatar
 
elite*gold: 1
Join Date: Jun 2011
Posts: 1,464
Received Thanks: 1,065
This hurts my eyes

6 qrys in one method? seriously?

function BuyShip($id)
UND3RW0RLD is offline  
Old 11/24/2014, 14:07   #369
 
steppdroid's Avatar
 
elite*gold: 0
Join Date: Sep 2014
Posts: 280
Received Thanks: 42
Quote:
Originally Posted by ǝnd1ǝss-ɯonǝʎ View Post
This hurts my eyes

6 qrys in one method? seriously?

function BuyShip($id)
hahaha excuse my ignorance ..
steppdroid is offline  
Old 11/24/2014, 14:42   #370
 
elite*gold: 0
Join Date: Jul 2014
Posts: 47
Received Thanks: 3
Quote:
Originally Posted by kdrhn68 View Post
i edited inventory.php and shipAnim.php but dont work hangar help me pelase

you need swf_global on htdocs to fix it
insano_ is offline  
Old 11/24/2014, 21:03   #371
 
bazhanyuk's Avatar
 
elite*gold: 0
Join Date: Sep 2012
Posts: 73
Received Thanks: 79
How did you change title color from yellow to green?
bazhanyuk is offline  
Old 11/24/2014, 22:54   #372
 
cryz35's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,718
Received Thanks: 2,382
Quote:
Originally Posted by bazhanyuk View Post
How did you change title color from yellow to green?
Edited main.swf, probably.
cryz35 is offline  
Old 11/25/2014, 00:25   #373
 
elite*gold: 0
Join Date: Jul 2014
Posts: 47
Received Thanks: 3
Red face

PHP Code:
<label for="server_stats"></label><span id="server_stats"> Server status: <img src="/public/images/server_stats/<?php echo('server_stats'); ?>.png</span>
what wrong ta that?
insano_ is offline  
Old 11/25/2014, 01:51   #374
 
YURI-ELIADE.ITALY's Avatar
 
elite*gold: 15
Join Date: Feb 2014
Posts: 313
Received Thanks: 78
hehehehe faczion orbit-reborn
YURI-ELIADE.ITALY is offline  
Old 11/25/2014, 02:04   #375
 
elite*gold: 0
Join Date: Jul 2014
Posts: 47
Received Thanks: 3
My rank 21 -admin dont show on emulator, why not?

are you using atlantiz emulator for orbit reborn cms
insano_ is offline  
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 15:23.


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.