elitepvpers

elitepvpers (https://www.elitepvpers.com/forum/)
-   DarkOrbit (https://www.elitepvpers.com/forum/darkorbit/)
-   -   [Collection Thread] Private Server Info and Support Thread (https://www.elitepvpers.com/forum/darkorbit/2830133-private-server-info-support-thread.html)

CORBELLIvonTIE 10/21/2014 02:11

My past mistakes You know now:

Notice: Undefined index: in C:\xampp\KERNEL-DOCMS\Init.php on line 52
Notice: Undefined index: darkorbit in C:\xampp\KERNEL-DOCMS\Init.php on line 52


This is but mine appears, if I start the localhost.
When I try to login, but just adds an error.

Notice: Trying to get property of non-object in C:\xampp\htdocs\index.php on line 10

and by registration have i this error :

Notice: Trying to get property of non-object in C:\xampp\htdocs\index.php on line 47

I have to do whatever localhost/index.php, as only localhost does not work.

I think it is somewhere at the MySQL in the area login.
What do you want for still have more accurate?
Can provide everything from love to pure Init.php and index.php if it helps.

Init.php
Spoiler:
Quote:

<?php
define('IP', str_replace('::1', '127.0.0.1', $_SERVER['REMOTE_ADDR']));
define('KERNEL', dirname(__FILE__) . DIRECTORY_SEPARATOR);

ini_set('default_charset', 'UTF-8');
ini_set('expose_php', 0);
ini_set('session.name', 'DO-BPP1');
ini_set('session.gc_probability', 10);
ini_set('session.gc_divisor', 100);
ini_set('session.cookie_httponly', 1);
ini_set('session.gc_maxlifetime', 600);
ini_set('zlib_output_compression', 'On');

$_SERVER['REQUEST_URI'] = str_replace('.php', '', strtolower($_SERVER['REQUEST_URI']));
if(strstr($_SERVER['REQUEST_URI'], '?')):
define ('URI', explode('?', $_SERVER['REQUEST_URI'])[0]);
else:
define ('URI', $_SERVER['REQUEST_URI']);
endif;

@session_start();

require(KERNEL . "/Server.Config.php");

if(!empty($_SERVER['SERVER_NAME'])):
$_Server = str_replace("www.", "", $_SERVER['SERVER_NAME']);

if(!empty($Config['URL']["devPrivateServer"]) && ($Config['URL']["devPrivateServer"] === $_SERVER['SERVER_NAME'])):
$Config['Lang'] = $Config['URL']['Default']['Lang'];
define("SERVER", "http://" . $_SERVER['SERVER_NAME']);
define("HOST", $_SERVER['SERVER_NAME']);
define("sSERVER", "http://" . $_SERVER['SERVER_NAME']);
elseif(isset($Config['URL']['Other'][$_Server])):
$Config['MySQL'] = $Config['URL']['Other'][$_Server]['MySQL'];
$Config['Lang'] = $Config['URL']['Other'][$_Server]['Lang'];
define("SERVER", ($Config['URL']['Other'][$_Server]["Require.www"]) ? "http://www." . $_Server : "http://" . $_Server);
define("HOST", ($Config['URL']['Other'][$_Server]["Require.www"]) ? "www." . $_Server : $_Server);
define("sSERVER", ($Config['URL']['Other'][$_Server]["SSL.enabled"]) ? "https://" . HOST : "http://" . HOST);
elseif(!empty($Config['URL']["Default"]["Server"])):
$Config['Lang'] = $Config['URL']['Default']['Lang'];
define("SERVER", ($Config["URL"]["Default"]["Require.www"]) ? "http://www." . $Config['URL']["Default"]["Server"] : "http://" . $Config['URL']["Default"]["Server"]);
define("HOST", ($Config["URL"]["Default"]["Require.www"]) ? "www." . $Config['URL']["Default"]["Server"] : $Config['URL']["Default"]["Server"]);
define("sSERVER", ($Config["URL"]["Default"]["SSL.enabled"]) ? "https://" . HOST : "http://" . HOST);
else:
echo "You don´t have access.";
exit;
endif;
else:
exit;
endif;

$MySQLi = new mysqli($Config['MySQL']["host"], $Config['MySQL']["user"], $Config['MySQL'][""], $Config['MySQL']["do"]);

if ($MySQLi->connect_error) {
die('Error de Conexión MySQLi (' . $MySQLi->connect_errno . ') '
. $mysqli->connect_error);
}

$_mysqliCharacter = $MySQLi->character_set_name();

require 'Class.Core.php';
$Core = new Core();
require 'Class.Users.php';
$Users = new Users();

// AntiHTML & SQL Injection
$_POST = str_replace(['<', '>', '\'', '\'', '\\'], ['<', '>', '"', ''', '\'], $_POST);
$_GET = str_replace(['<', '>', '\'', '\'', '\\'], ['<', '>', '"', ''', '\'], $_GET);

DEFINE('FILES', KERNEL . 'Files/' . DIRECTORY_SEPARATOR . $Config['Lang'] . DIRECTORY_SEPARATOR);
DEFINE('GLOBALS', FILES . '/GLOBAL/');
?>

index.php
Spoiler:
Quote:

<?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();
$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, settings) 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.php';
require GLOBALS . 'header.php';
require FILES . 'INDEX/header.php';
require GLOBALS . 'sajax.php';
require GLOBALS . 'xajax.php';
require GLOBALS . 'headerEndJS.php';
require FILES . 'INDEX/jsSubmit.php';
echo '</head>';
require FILES . 'INDEX/bodyHeader.php';
require FILES . 'INDEX/body.php';
require FILES . 'INDEX/bodyFooter.php';
?>

These are the two relevant things, but login and register did not go so far.

Or what you are looking for?

Moreover, the offered emulator was there goes not with me.
Windows then says always that the was wrong and the program closes without error message.
Recommended I found not just that.
Whether with me at all times which can work?
Is really no longer bearable.
The Dark Orbit Server OLD worked well, only fully bugged -.-

Sorry for my bad English, really do not speak any language other than German :(

DarkSkiesDO 10/21/2014 03:18

Quote:

Originally Posted by CORBELLIvonTIE (Post 29936979)
My past mistakes You know now:

Notice: Undefined index: in C:\xampp\KERNEL-DOCMS\Init.php on line 52
Notice: Undefined index: darkorbit in C:\xampp\KERNEL-DOCMS\Init.php on line 52


This is but mine appears, if I start the localhost.
When I try to login, but just adds an error.

Notice: Trying to get property of non-object in C:\xampp\htdocs\index.php on line 10

and by registration have i this error :

Notice: Trying to get property of non-object in C:\xampp\htdocs\index.php on line 47

I have to do whatever localhost/index.php, as only localhost does not work.

I think it is somewhere at the MySQL in the area login.
What do you want for still have more accurate?
Can provide everything from love to pure Init.php and index.php if it helps.

Init.php

index.php

These are the two relevant things, but login and register did not go so far.

Or what you are looking for?

Moreover, the offered emulator was there goes not with me.
Windows then says always that the was wrong and the program closes without error message.
Recommended I found not just that.
Whether with me at all times which can work?
Is really no longer bearable.
The Dark Orbit Server OLD worked well, only fully bugged -.-

Sorry for my bad English, really do not speak any language other than German :(

Hello, thanks for taking the time to provide us with information to help you. However, I don't think that this is relevant information you're providing us. If you don't mind, adding me on Skype or something and passing me your TeamViewer so I can take a look at the CMS and fix your issue, I'd be glad to help.

Best Regards,
DarkSkiesDO

Skype: reptilen13

CORBELLIvonTIE 10/21/2014 04:13

big thanks to you.
DarkSkiesDO

Can only recommend it.

DarkSkiesDO 10/21/2014 13:56

Quote:

Originally Posted by CORBELLIvonTIE (Post 29937231)
You have a PN from me ;)

I fixed your errors. I must go to school now. Bye.

Best Regards,
DarkSkiesDO

CORBELLIvonTIE 10/22/2014 13:47

Does anyone know how I make new ships into the game?
The SWF is now ship200.swf added to ship206.swf already have
Do I have something in mind when the old server so that it accepts?
On the Azure are indeed available, just not on the old server.
Now I want to integrate with the missing, only on the map then it shows always the Yamato. *arg*
Meanness :D

cryz35 10/22/2014 19:42

Quote:

Originally Posted by CORBELLIvonTIE (Post 29949883)
Does anyone know how I make new ships into the game?
The SWF is now ship200.swf added to ship206.swf already have
Do I have something in mind when the old server so that it accepts?
On the Azure are indeed available, just not on the old server.
Now I want to integrate with the missing, only on the map then it shows always the Yamato. *arg*
Meanness :D

Spacemap/xml/resources.xml and game.xml
if your client is 2.x you should add them to spacemap.swf

Destiny 10/22/2014 19:52

2.x use game xml know my v2.1.20
only old have all in spacemap.swf

AceHardlightHUN 10/22/2014 20:39

How can i open the emulator?

NoCheatImPGM 10/22/2014 20:45

Quote:

Originally Posted by AceHardlightHUN (Post 29954363)
How can i open the emulator?

Double click on it.

AceHardlightHUN 10/22/2014 20:53

Quote:

Originally Posted by NoCheatImPGM (Post 29954435)
Double click on it.

-.- java emulator Double click??? -.- funny

NoCheatImPGM 10/22/2014 20:55

Quote:

Originally Posted by AceHardlightHUN (Post 29954526)
-.- java emulator Double click??? -.- funny

And, how the hell can I know that you are talking about a Java emulator hm?!
We need more informations to help you...

CORBELLIvonTIE 10/22/2014 22:35

Can it be that the SWF files are not compatible with the old from Azure?
The ship what I have now done over game.xlm and SWF to htdocs\SpaceMap\graphics\ships can not, somehow.
Then there is always the red box where is it: Image Missing

Or did I something ignored?
Will the other ships such as kick and Saturn can use :(

What actually belongs in htdocs\spacemap\graphics\expansions pure ?
Because just such ship109_Emed.swf and ship109_Emax.swf seem to me as well to be missing or?
Try this just with Saturn, but if I know how to do it, I could make sure the rest alone.

Destiny 10/22/2014 23:54

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

DarkSkiesDO 10/23/2014 02:55

Quote:

Originally Posted by AceHardlightHUN (Post 29954526)
-.- java emulator Double click??? -.- funny

Please provide more information, is your emulator a .jar file? Or is it a project that you must open in eclipse? If your emulator is a .jar file, is your system a 32 bit or a 64 bit?

In the case that your emulator is a .jar file;
Open Notepad or Preferred Text Editor,

Paste the following;
java -jar "PATH TO EMULATOR JAR FILE"

Save the file as a .bat file.

Then, double click that .bat file where ever you saved it at, and there. Hope that helps.

In the case that it's a project;
Open up Eclipse, select your work space, allow Eclipse to load.
Then, follow these steps;
1. File>Import
2. Import>General>Existing Projects into Work space
3. Existing Projects into Work space>Select Root Directory
4. Select Root Directory>Browse>Find Folder Of Emulator Contents
5. Select Folder With Emulator Contents>Finish

If those steps don't work, say your emulator is in a .zip file or something,
Follow these steps then;
1. File>Import
2. Import>General>Archive File
3. Archive File>Browse
4. Browse>Find .zip file or whatever.
5. Select .zip file or whatever>Finish

In the case that none of this works, I don't understand your issue, if you could please explain a provide what emulator and the details of it so that way I can better help you, I'd be glad too.

Best Regards,
DarkSkiesDO

Quote:

Originally Posted by edox77 (Post 29956447)
who can help fix
[Only registered and activated users can see links. Click Here To Register...]

I don't understand your issue, I'll need more than just a picture showing the error. Only a picture doesn't help, you must elaborate more, in order for the community as a whole to help you, I'm not so much familiar with Dark Orbit Offline. However, I may be able to help if you can elaborate more on what you error is, do you get that error trying to get on the official/current Dark Orbit? Or localhost? What, you don't provide enough details, please fill this out.

--- Form ---
Problem/Error:
OS (Operating System, e.g. Windows 7):
Source Error (For Example, Is it Localhost or Dark Orbit):
Files Used (Are They Modified?):
Sign off with your name if you'd like.
--- Form ---

Best Regards,
DarkSkiesDO

Quote:

Originally Posted by CORBELLIvonTIE (Post 29955724)
Can it be that the SWF files are not compatible with the old from Azure?
The ship what I have now done over game.xlm and SWF to htdocs\SpaceMap\graphics\ships can not, somehow.
Then there is always the red box where is it: Image Missing

Or did I something ignored?
Will the other ships such as kick and Saturn can use :(

What actually belongs in htdocs\spacemap\graphics\expansions pure ?
Because just such ship109_Emed.swf and ship109_Emax.swf seem to me as well to be missing or?
Try this just with Saturn, but if I know how to do it, I could make sure the rest alone.

Hello again there, I will help you if I can after I get home from school, if you could please send me your Team Viewer details again in a PM, then leave your Team Viewer on, I will try and fix your issue when I get home from school.

Best Regards,
DarkSkiesDO

CORBELLIvonTIE 10/23/2014 23:22

So I do not learn it, too, if it's always someone, but PM.
The main thing I've finally Saturn on the old server with this, Satur have the Ship109.swf and so that Saturn also has the 109 :)
you have a pM from me.
And thanks again, are really great! :*

Destiny 10/23/2014 23:54

fixed

CORBELLIvonTIE 10/24/2014 11:46

I've done it, you should make entries in the resource.xlm also, not only in game.xlm ^^

Here's a picture: D

Spoiler:
Quote:

[IMG=expandable: 1]http://img5.fotos-hochladen.net/uploads/meinsaturn3zhyx7npt2.png[/IMG]

Now you just need an error -.-
My ship makes when I Shoot one shot, and then I have to shoot again, so he makes another shot.
What is the error?

Requi 10/24/2014 12:20

Quote:

Originally Posted by CORBELLIvonTIE (Post 29968150)
I've done it, you should make entries in the resource.xlm also, not only in game.xlm ^^

Here's a picture: D


Now you just need an error -.-
My ship makes when I Shoot one shot, and then I have to shoot again, so he makes another shot.
What is the error?

Das schießen ist nicht in einer Schleife.

CORBELLIvonTIE 10/24/2014 13:25

Und wie behandel ich nun das Problem ?
Bestimmt unter der game.xlm oder wo ?
Und vor allem wie ? :(
Das ist eigentlich mein letztes Prolem noch auf der Map, den Rest habe ich eigentlich quasi im Griff :)

Requi 10/24/2014 13:34

Quote:

Originally Posted by CORBELLIvonTIE (Post 29968889)
Und wie behandel ich nun das Problem ?
Bestimmt unter der game.xlm oder wo ?
Und vor allem wie ? :(
Das ist eigentlich mein letztes Prolem noch auf der Map, den Rest habe ich eigentlich quasi im Griff :)

Im Emulator Code. Wo das Angriffspacket gehandelt wird. Er sendet dem Client den Angriff nur einmal. Und das sind nun mal nur 3 Schüsse die du dann machst.

CORBELLIvonTIE 10/24/2014 14:19

Da muss ich dich leider editieren, bei mir zählt nur der erste Schuß einen Schaden, das habe ich getestet , weiteren Schaden macht er nicht , selbst wenn ich im Emulator
DMG = 1000
eingegeben habe.
Ich klick das einmal an zum schießen, und während seiner ganzen Salben zählt er nur den ersten Schuss , keinen weiteren Schuss ....
Emulator-Code ?
Geht es genauer ?
game.xlm oder den Emulator direkt editieren oder wie ?

AceHardlightHUN 10/24/2014 18:37

Please Help me [ServerCMS: DORPS]
<?php
require_once '../dorps/index.es';
?>
In chrome

in firefox
whire screen

Quote:

Originally Posted by NoCheatImPGM (Post 29954554)
And, how the hell can I know that you are talking about a Java emulator hm?!
We need more informations to help you...

Server CMS : Darkobit Remix Private Server 3.0 [BETA]
Emulator: Coded in java
how can i start this ****?

bobn171 10/25/2014 02:52

Quote:

Originally Posted by AceHardlightHUN (Post 29972115)
Please Help me [ServerCMS: DORPS]
<?php
require_once '../dorps/index.es';
?>
In chrome

in firefox
whire screen



Server CMS : Darkobit Remix Private Server 3.0 [BETA]
Emulator: Coded in java
how can i start this ****?

You must compile it. Use Eclipse for example and the other problem, you've a beautiful file called "INSTRUCTIONS.html" that maybe you should read

CORBELLIvonTIE 10/25/2014 12:07

does anyone happen to the SWF of ShipXXX.swf from
Citadel
Aegis
and
Spear Head?
The missing for me :(


Rique ?
Wo genau liegt das jetzt ?

shooteram 10/25/2014 14:16

Quote:

Originally Posted by CORBELLIvonTIE (Post 29978389)
does anyone happen to the SWF of ShipXXX.swf from
Citadel
Aegis
and
Spear Head?
The missing for me :(


Rique ?
Wo genau liegt das jetzt ?

Download them from my [Only registered and activated users can see links. Click Here To Register...].

..htdocs\spacemap\graphics\ships

CORBELLIvonTIE 10/27/2014 10:14

Does anyone know how I can embed a Tite?
For example, the boss of bosses
The best would even own title, you can not lose or leave.
For example, for administrators or for events ...


__________________________________________________ ___



Und ich finde Rique macht nen schlechten Support.
Wenn ich schon Tips gebe, das ich Angriffs--Einstellungen vornehmen könnte, dann wäre es auch sinnvoll zu erwähnen wo ...
Schade, also da bin ich recht enttäuscht, hätte mit mehr Details zur angegebenen Info erwartet.
So kann man sehen, man wird nicht ausgiebig geholfen, wie es User bräuchten.

Klar ich bin neu im Programmieren, ich versuch auch das meiste selbst zu machen, gebe auch mein bestes.
ABER, es ist nunmal kein Profi vom Himmel gefallen, der eine kann das, der andere dafür jene Sachen besser.
Und daher sind ausgiebige Informationen, für einen guten Support in meinen Augen unausweichlich.
Ich finde es schade, das es nicht so ist, wie es eigentlich sich für ein guten Support gehört.
Aber ich hoffe, das war ein gutes Kriterium bzw. Gedankenanstoß,
das nicht alle so begabt sind als Neulings-Programmiere, wie er es sich evt. vorstellt.

bobn171 10/27/2014 10:56

Quote:

Originally Posted by CORBELLIvonTIE (Post 29998437)
Does anyone know how I can embed a Tite?
For example, the boss of bosses
The best would even own title, you can not lose or leave.
For example, for administrators or for events ...


__________________________________________________ ___



Und ich finde Rique macht nen schlechten Support.
Wenn ich schon Tips gebe, das ich Angriffs--Einstellungen vornehmen könnte, dann wäre es auch sinnvoll zu erwähnen wo ...
Schade, also da bin ich recht enttäuscht, hätte mit mehr Details zur angegebenen Info erwartet.
So kann man sehen, man wird nicht ausgiebig geholfen, wie es User bräuchten.

Klar ich bin neu im Programmieren, ich versuch auch das meiste selbst zu machen, gebe auch mein bestes.
ABER, es ist nunmal kein Profi vom Himmel gefallen, der eine kann das, der andere dafür jene Sachen besser.
Und daher sind ausgiebige Informationen, für einen guten Support in meinen Augen unausweichlich.
Ich finde es schade, das es nicht so ist, wie es eigentlich sich für ein guten Support gehört.
Aber ich hoffe, das war ein gutes Kriterium bzw. Gedankenanstoß,
das nicht alle so begabt sind als Neulings-Programmiere, wie er es sich evt. vorstellt.

There are two types of titles:
  • Titles (The yellow ones) -> 0|n|t|userID|title
  • Permanent Titles (The purple ones) -> 0|n|pt|userID|title

For variable title you should look into your translationSpacemap.php (flashinput/translationSpacemap.php in my case) and copy the id of the title..

Example:

Item of translationSpacemap.php
Code:

<item id='pvpHunter'><![CDATA[PvP Hunter of the Day]]></item>

And i want to have this as permanent title.. So i should send this packet..

Code:

0|n|pt|10|pvpHunter -> 10 (userID)

CORBELLIvonTIE 10/27/2014 11:25

is this for the old Client ?
I make off the old Client

Where is one of the part go?
0|n|pt|10|pvpHunter -> 10 (userID)

manulaiko3.0 10/27/2014 11:35

Quote:

Originally Posted by CORBELLIvonTIE (Post 29998864)
is this for the old Client ?
I make off the old Client

Where is one of the part go?
0|n|pt|10|pvpHunter -> 10 (userID)

You should test it before asking, it works for both

CORBELLIvonTIE 10/27/2014 11:53

Where belong this to?
0 | n | pt | 10 | pvpHunter -> 10 (userID)
i have no plan, sry :D

Thanks in advance

DarkSkiesDO 10/28/2014 02:24

Quote:

Originally Posted by CORBELLIvonTIE (Post 29999071)
Where belong this to?
0 | n | pt | 10 | pvpHunter -> 10 (userID)
i have no plan, sry :D

Thanks in advance

pvpHunter is what title_ id In translationSpacemap.php?

I do apologize if this is not a proper question and/or is not needed. By the looks of it, it's a title packet. It sends a title depending on the user it's sent to. Please, provide more details as to what your error is please. Thanks.

Best Regards,
DarkSkiesDO

CORBELLIvonTIE 10/28/2014 08:59

Quote:

Originally Posted by bobn171 (Post 29998686)

Example:

Item of translationSpacemap.php
Code:

<item id='pvpHunter'><![CDATA[PvP Hunter of the Day]]></item>

And i want to have this as permanent title.. So i should send this packet..

Code:

0|n|pt|10|pvpHunter -> 10 (userID)

Is beautiful and great, but I do not know exactly where the second part should go.
Or does it directly
Code:

0|n|pt|10|pvpHunter -> 10 (userID)
among them?

Diаmonds 10/28/2014 09:40

Quote:

Originally Posted by CORBELLIvonTIE (Post 30008355)
Is beautiful and great, but I do not know exactly where the second part should go.
Or does it directly
Code:

0|n|pt|10|pvpHunter -> 10 (userID)
among them?

Just send this packet with the other packets you send to init an user.

bobn171 10/28/2014 09:55

Quote:

Originally Posted by DarkSkiesDO (Post 30007439)
pvpHunter is what title_ id In translationSpacemap.php?

I do apologize if this is not a proper question and/or is not needed. By the looks of it, it's a title packet. It sends a title depending on the user it's sent to. Please, provide more details as to what your error is please. Thanks.

Best Regards,
DarkSkiesDO

I changed the id for my example to make it easiest... the real one is this
Code:

<item id='title_19'><![CDATA[PvP Hunter of the Day]]></item>
Edit:

I want to ask for some help, i saw many times this question but without any answer... It's a problem with Bau (In-orbit) equipment... In localhost (with all the configs ok i think, Init.php Dynhost set to localhost) it loads this

[IMG=expandable: 1]http://i.imgur.com/Nnoez56.jpg[/IMG]

It works perfectly but without any image (maybe a resource missing? wrong url in one file?) And when we upload it to the vps it doesn't load the texts too

[IMG=expandable: 1]http://i.imgur.com/MwkK1Cr.jpg[/IMG]

I asked Bau for help but he's not supporting this now, so pls i checked "all the files" and i didn't found the error

Edit2: i think that i found text error in the vps.. [IMG=expandable: 1]http://i.imgur.com/Gs1hZB8.png[/IMG]

Thanks

CORBELLIvonTIE 10/28/2014 11:07

I just do not know where to put it.
The init is only available in the kernel, but I use the old server, not with kernel :(
Somehow this is stupid, the use of all Azure, I'd rather use the old, because the emulator for Azure anyway not go with me.
Can someone explain to me the old CMS?
I have no init in the old CMS :(

I have this :

Old Server CMS Snowy 1.0.1 Finished Old Client Webfiles

Emulator : Imician

You speak as of Azure :(

DarkSkiesDO 10/28/2014 11:52

Quote:

Originally Posted by CORBELLIvonTIE (Post 30009134)
I just do not know where to put it.
The init is only available in the kernel, but I use the old server, not with kernel :(
Somehow this is stupid, the use of all Azure, I'd rather use the old, because the emulator for Azure anyway not go with me.
Can someone explain to me the old CMS?
I have no init in the old CMS :(

I have this :

Old Server CMS Snowy 1.0.1 Finished Old Client Webfiles

Emulator : Imician

You speak as of Azure :(

I'm assuming you don't know very much English. That's okay, however, I don't understand exactly what your issue is? Okay, so just like you send the drone packets, and the ready map packets and such, in that same file, with those packets, send this.
"0|n|pt|10|title_19" <= Where 10 Is Your User ID. PT is Permanent Title. Title_19 Is The Title ID In translationSpacemap.php
Or
"0|n|t|10|title_19" <= Where 10 Is Your User ID. T is Title. Title_19 Is The Title ID in translationSpacemap.php

Best Regards,
DarkSkiesDo

CORBELLIvonTIE 10/28/2014 12:21

I have no init, since I use the old server.
Since I do not know what to do with the second line, I'm stumped.
I do not even where the drones are in it, the 10 Iris were already available.

The have i :
Code:

<item id='title_19'><![CDATA[Administrator]]></item>
But what I now do with the:
Code:

"0|n|t|10|title_19"
An Init there is not, this is a old Server, now Azure :(
What the data mean I understood, only I do not know where to put it :(


-----------------------------

Can it be that what is missing?
Spoiler:
Quote:

Servidor elieaz: Env << RDY|I|8|$uperstar_[$ysadmin]|109|1500|99993999|49999999|
99993999|49999999|99999|99999|1757|901|1|3|1|32000 |1600|3|1|248400|836|6|534700|
9848|89.95|21|ADMIN|4|1|0
Servidor elieaz: Env << 0|7|HS
Servidor elieaz: Env << 0|S|CFG|1
Servidor elieaz: Env << 0|B|99000|99000|99000|99000|99000|99000
Servidor elieaz: Env << 0|3|9000|9000|9000|9000|9000|9000|9000|9000|9000|9 000|90
00|9000|9000|9000
Servidor elieaz: Env << 0|A|FWX|INL|15
Servidor elieaz: Env << 0|A|FWX|FWL|25|25|25
Servidor elieaz: Env << 0|RL|R|25|25|25
Servidor elieaz: Env << 0|n|t|8|12
Servidor elieaz: Env << 0|A|JV|0
Servidor elieaz: Env << 0|A|BK|0

If I understand correctly, the emulator a title queries.
But on the map is not displayed.

Chanhy 10/29/2014 07:10

what is the problem? HELP!!
[Only registered and activated users can see links. Click Here To Register...]

manulaiko3.0 10/29/2014 09:42

Quote:

Originally Posted by Chanhy (Post 30018317)
what is the problem? HELP!!
[Only registered and activated users can see links. Click Here To Register...]

BP Changed internalStart.css long time ago, if you're using it directly from BP's server you need to find the old css and use it

Chanhy 10/29/2014 11:21

How to do it?


All times are GMT +2. The time now is 14:46.

Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.