You last visited: Today at 06:08
Advertisement
[Release] Orbit Reborn - Source
Discussion on [Release] Orbit Reborn - Source within the DarkOrbit forum part of the Browsergames category.
11/06/2014, 11:46
#316
elite*gold: 0
Join Date: May 2013
Posts: 54
Received Thanks: 5
Quote:
Originally Posted by
bobn171
you should check the packet that you send to other users.. i mean
i've something like this in my code
Code:
sendPacket("0|n|d|" + user.playerID +"|" + user.uav);
to load my drones, and this other to load other users drones...
Code:
Is a example, is not exactly like that
sendPacket("0|n|d|" + otherUser.userID + "|" + otherUser.uav);
seems like you have messed up something with the variables
EDIT:
I found this on the code
idk why it sends that drones, maybe there is the problem
Give me your skype name.
11/06/2014, 16:40
#317
elite*gold: 0
Join Date: May 2011
Posts: 101
Received Thanks: 6
Emulator Error Team Viewer Help
?
11/06/2014, 16:49
#318
elite*gold: 0
Join Date: May 2013
Posts: 54
Received Thanks: 5
Quote:
Originally Posted by
xelle
Emulator Error Team Viewer Help
?
Give me your skype name at Priv.
11/06/2014, 21:23
#319
elite*gold: 0
Join Date: Dec 2009
Posts: 37
Received Thanks: 0
how edit Orbit Reborn in Skins ?
ship? Drone?
11/08/2014, 18:16
#320
elite*gold: 0
Join Date: Sep 2014
Posts: 148
Received Thanks: 73
Hi, i'm a developer and i wanna understand DO Private Servers but i don't have a good version...
You can give me a latest version of DO Private Server?
Thx
Sorry for my english, i speak spanish.
Skype: Jockersystem
Facebook: Daniel Díaz
11/08/2014, 18:43
#321
elite*gold: 1
Join Date: Oct 2013
Posts: 1,257
Received Thanks: 1,276
There is no latest version. But the "best" open source emu you can find here is this one.
11/08/2014, 20:49
#322
elite*gold: 0
Join Date: Feb 2013
Posts: 22
Received Thanks: 0
How Automatic Design Feature Do ?
11/09/2014, 11:51
#323
elite*gold: 0
Join Date: Dec 2012
Posts: 45
Received Thanks: 23
?
11/09/2014, 12:28
#324
elite*gold: 1
Join Date: Jun 2011
Posts: 1,464
Received Thanks: 1,065
missing pictures, wrong linking, wrong config. check this and it should work
11/09/2014, 12:31
#325
elite*gold: 0
Join Date: Dec 2012
Posts: 45
Received Thanks: 23
Is it wrong?
11/09/2014, 12:58
#326
elite*gold: 0
Join Date: Jun 2011
Posts: 297
Received Thanks: 14
...
11/09/2014, 13:07
#327
elite*gold: 0
Join Date: Sep 2014
Posts: 280
Received Thanks: 42
Quote:
Originally Posted by
Puma<3
please help :/
never work, your site is not a vps.
11/09/2014, 13:37
#328
elite*gold: 0
Join Date: Jun 2011
Posts: 297
Received Thanks: 14
Quote:
Originally Posted by
steppdroid
never work, your site is not a vps.
i buy today vps
11/09/2014, 14:19
#329
elite*gold: 0
Join Date: Sep 2014
Posts: 280
Received Thanks: 42
At the end of the shift signature remains stuck at a blank page localhost/changeFirm/Update.
how do I get it back to localhost/changeFirm. ?
PHP Code:
<?php
$currentFirm = Auth :: getUser ( 'factionid' );
$array_faction = array( 1 => 'Mars Mining Operations (MMO)' , 2 => 'Earth Industries Corporation (EIC)' , 3 => 'Venus Resources Unlimited (VRU)' );
?>
<link type="text/css" href="public/css/changeFirm.css" rel="stylesheet" media="all" />
<script>
function openMiniMap()
{
console.log("works");
window.open('<?php echo URL ; ?> internalMap', '_blank', 'width=1280,height=900');
}
</script>
<div id="left_start">
</div>
<div id="mainContentFirm">
<div class="title"></div>
<div class="currentFirm">
<img src="<?php echo URL ; ?> public/images/faction<?php echo $currentFirm ?> .jpg">
<span class="name"><?php echo $array_faction [ $currentFirm ]; unset( $array_faction [ $currentFirm ]); ?> </span>
</div>
<div class="infosFirm">
<?php
$members_count = 0 ;
$kill_count = 0 ;
foreach ( $this -> FirmInfos as $key => $value ) {
$members_count += 1 ;
$kill_count += $this -> FirmInfos [ $key ][ 'user_kill' ];
}
?>
<span>Members: <?php echo $members_count ; ?> </span><br>
<span>Ships destroyed: <?php echo $kill_count ; ?> </span>
</div>
<div class="changeFirm">
<?php
$first = 0 ;
foreach ( $array_faction as $key => $value )
{
if ( $first == 0 )
{
echo '<form action="' . URL . 'changeFirm/Update" method="post">' ;
echo '<input type="hidden" name="factionid" value="' . $key . '">' ;
echo '<input type="submit" class="faction' . $key . '" value="">' ;
echo '</form>' ;
echo '<span>Switch FIRM</span>' ;
$first = 1 ;
}
else
{
echo '<form action="' . URL . 'changeFirm/Update" method="post">' ;
echo '<input type="hidden" name="factionid" value="' . $key . '">' ;
echo '<input type="submit" class="faction' . $key . '" value="" style="float: right;">' ;
echo '</form>' ;
}
}
?>
</div>
</div>
11/09/2014, 15:00
#330
elite*gold: 260
Join Date: Jul 2012
Posts: 299
Received Thanks: 812
Quote:
Originally Posted by
steppdroid
At the end of the shift signature remains stuck at a blank page localhost/changeFirm/Update.
how do I get it back to localhost/changeFirm. ?
PHP Code:
<?php $currentFirm = Auth :: getUser ( 'factionid' ); $array_faction = array( 1 => 'Mars Mining Operations (MMO)' , 2 => 'Earth Industries Corporation (EIC)' , 3 => 'Venus Resources Unlimited (VRU)' ); ?> <link type="text/css" href="public/css/changeFirm.css" rel="stylesheet" media="all" /> <script> function openMiniMap() { console.log("works"); window.open('<?php echo URL ; ?> internalMap', '_blank', 'width=1280,height=900'); } </script> <div id="left_start"> </div> <div id="mainContentFirm"> <div class="title"></div> <div class="currentFirm"> <img src="<?php echo URL ; ?> public/images/faction<?php echo $currentFirm ?> .jpg"> <span class="name"><?php echo $array_faction [ $currentFirm ]; unset( $array_faction [ $currentFirm ]); ?> </span> </div> <div class="infosFirm"> <?php $members_count = 0 ; $kill_count = 0 ; foreach ( $this -> FirmInfos as $key => $value ) { $members_count += 1 ; $kill_count += $this -> FirmInfos [ $key ][ 'user_kill' ]; } ?> <span>Members: <?php echo $members_count ; ?> </span><br> <span>Ships destroyed: <?php echo $kill_count ; ?> </span> </div> <div class="changeFirm"> <?php $first = 0 ; foreach ( $array_faction as $key => $value ) { if ( $first == 0 ) { echo '<form action="' . URL . 'changeFirm/Update" method="post">' ; echo '<input type="hidden" name="factionid" value="' . $key . '">' ; echo '<input type="submit" class="faction' . $key . '" value="">' ; echo '</form>' ; echo '<span>Switch FIRM</span>' ; $first = 1 ; } else { echo '<form action="' . URL . 'changeFirm/Update" method="post">' ; echo '<input type="hidden" name="factionid" value="' . $key . '">' ; echo '<input type="submit" class="faction' . $key . '" value="" style="float: right;">' ; echo '</form>' ; } } ?> </div> </div>
Learn to code
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 +2. The time now is 06:09 .