[Release] IN-ORBIT | Private server Website!

07/29/2014 17:06 Diаmonds#121
Quote:
Originally Posted by quinster08 View Post
Huh in azure emulator i cant find where the database rows are written. I decompiled everything. Somebody help me?
Why did you decompiled everything? Azure is open-source.
You shouldn't try to do an emulator if you can't find the name of the rows...
But anyway, let me help you : CTRL+F and then search for the name of a row.
07/29/2014 17:45 quinster08#122
I mean that low. I opened the .exe and the .dll its nowhere man!!
07/29/2014 18:25 Diаmonds#123
Quote:
Originally Posted by quinster08 View Post
I mean that low. I opened the .exe and the .dll its nowhere man!!
Just download the source code -.-
Btw, this thread is about In-Orbit, if you have questions about Azure, ask them in the official thread / in the private server support thread.
07/29/2014 23:25 Luffa#124
Website and API's will be down from 29. july 23:30 to 30 july 02:00.

Running a full system update.

Best Regards Bau
07/30/2014 00:05 quinster08#125
Is it possible to edit this: [Only registered and activated users can see links. Click Here To Register...] emulator and let it work on in-orbit? Sorry im a little noob but i can code in java (eclipse) not c# or c++
07/30/2014 00:49 tugasnake#126
Bau im not understanding this xD im the only one in the leaderboards with you
07/30/2014 00:54 cornelius21#127
Quote:
Originally Posted by quinster08 View Post
Is it possible to edit this: [Only registered and activated users can see links. Click Here To Register...] emulator and let it work on in-orbit? Sorry im a little noob but i can code in java (eclipse) not c# or c++

yes, is possible, but DB have diferent tables, bau db is maybe the same as azure db, no at all, but have diferent tables of manulaiko db .

well you just have to edit QueryManager.java, but as i say before, DBs are differents, for example, bau db, have 2 tables wich contain user info, "users" and "server_1_players" and manulaiko have "server_accounts" or something like that, this is for the LoadAccounts() on querymanager.

so, just adapt the querys to get data from bau db, and they will be ready to use con that cms
07/30/2014 01:02 Luffa#128
Quote:
Originally Posted by tugasnake View Post
Bau im not understanding this xD im the only one in the leaderboards with you
The database was cleaned up, thats why ;)


Best Regards Bau
07/30/2014 01:05 tugasnake#129
so what do i need to do to play on this server? and btw will certain things likeskill tree and tech factory work?
07/30/2014 01:07 quinster08#130
You cant play on this server. If u wanna play download the cms and code/edit a emulator. The website your looking on is just a test-website. But it wont connect you in the map. Its just only the website.

And i have a question for bau: does the upgrade system really affect your damage? Or is it just a coded system with random maths and numbers on your items?
07/30/2014 01:08 tugasnake#131
but i cant download the cms
07/30/2014 01:27 Diаmonds#132
Quote:
Originally Posted by quinster08 View Post
And i have a question for bau: does the upgrade system really affect your damage? Or is it just a coded system with random maths and numbers on your items?
Since there is no emulator, you can't join the spacemap, so this question is not answerable, and not important. If Bau / someone makes an emu for this server, then the emu will include the damage upgrade.
07/30/2014 01:36 cryz35#133
Quote:
Originally Posted by TheDarkDiamonds View Post
Since there is no emulator, you can't join the spacemap, so this question is not answerable, and not important. If Bau / someone makes an emu for this server, then the emu will include the damage upgrade.
^ answerable, All_items table has an item_level row for item levels so you should do the calculation on the emulator side. Like you do for lf3/lf2/bo3 and all others etc..
Note: my emulator can run with Bau's files :p
07/30/2014 01:42 Diаmonds#134
Quote:
Originally Posted by cryz35 View Post
^ answerable, All_items table has an item_level row for item levels so you should do the calculation on the emulator side. Like you do for lf3/lf2/bo3 and all others etc..
Note: my emulator can run with Bau's files :p
:handsdown:
I guess I answered a little bit too fast, I meant that he's not able to check if the damages are upgraded only with the in-orbit files :p
With one emulator, and even with a modified azure, it's really easy, it's just one more calc :D
07/30/2014 09:08 Luffa#135
Quote:
Originally Posted by tugasnake View Post
but i cant download the cms
Download link is fixed.


Database:
[Only registered and activated users can see links. Click Here To Register...]


To run ranks, will you need to make cron jobs running:

[Only registered and activated users can see links. Click Here To Register...]


Make a new file called rank_new.php
PHP Code:
<?php
require './KERNEL-DOCMS/Init.php';
if(isset(
$_GET['id'])){
    
$all $rnk->getAllPlayers($_GET['id']);
}elseif(isset(
$_GET['fi']) && $_GET['fi']==1){
    
$fi $_GET['fi'];
    
$all $rnk->getAllPlayers(null$fi);
    
header('location: /rank_new?fi=2');
}elseif(isset(
$_GET['fi']) && $_GET['fi']==2){
    
$fi $_GET['fi'];
    
$all $rnk->getAllPlayers(null$fi);
    
header('location: /rank_new?fi=3');
}elseif(isset(
$_GET['fi']) && $_GET['fi']==3){
    
$fi $_GET['fi'];
    
$all $rnk->getAllPlayers(null$fi);
    
header('location: /rank_new?o=1');
}elseif(isset(
$_GET['o'])){
  
print_r($rnk->setOverAll());  
}else{

}
?>
Linux people use something like this:
PHP Code:
 0 0 * * * wget -/dev/null http://callback.darkorbit.tv/rank_new?fi=1 
For windows you can make task schedule run a vb script like:
PHP Code:
Call LogEntry()   
Sub LogEntry()   
On Error Resume Next   
Dim objRequest 
Dim URL   
Set objRequest 
CreateObject("Microsoft.XMLHTTP"
URL "http://localhost/rank_new?fi=1"   
objRequest.open "POST"URL false   
objRequest
.Send   
Set objRequest 
Nothing   
End Sub 

To all you smarties, make the scripts above more secure.
This is just a fast layout.


Cron job setup | windows:

Best Regards Bau