[GER/EN] NosTale Chit-Chat

03/03/2017 21:46 szymek111#17416
Quote:
Originally Posted by EPvPAgen View Post
Hi guys! I want you to support me from changing Nostale eu publisher to new better

As well they change this items example from 19 to 99 nd they change the prize 1000%.We must change this!
Google Translate XD
03/03/2017 22:34 Bombasticx3#17417
[Only registered and activated users can see links. Click Here To Register...]
Vielleicht kann mir wer von euch hier helfen.
Maybe someone of you can help me.
03/03/2017 22:39 Pumba98#17418
Quote:
Originally Posted by Bombasticx3 View Post
[Only registered and activated users can see links. Click Here To Register...]
Vielleicht kann mir wer von euch hier helfen.
Maybe someone of you can help me.
Versteh ich nicht ganz 😅 warum nicht beim klick nen neuen Thread mit der Methode?
03/03/2017 23:42 FI0w#17419
Quote:
Originally Posted by Bombasticx3 View Post
[Only registered and activated users can see links. Click Here To Register...]
Vielleicht kann mir wer von euch hier helfen.
Maybe someone of you can help me.
Knopfdruck -> CreateThread

dazu hier noch Hilfe
[Only registered and activated users can see links. Click Here To Register...]

Mehr brauch man da eig. nicht du kannst auch in Visual Studio QT nutzen Somit musst du es nicht direkt bei dem QT Compiler belassen :)

PS: Wenn nicht schreib mir mal ne PN mit dein Skype Namen. Arbeite öfters mit QT somit auch nicht wirklich nen Problem
03/12/2017 13:41 Bombasticx3#17420
Wer von euch Schlingeln hat gerade S1 Ch1 crashen lassen?
03/14/2017 13:18 0x0F#17421
Quote:
Originally Posted by Bombasticx3 View Post
Wer von euch Schlingeln hat gerade S1 Ch1 crashen lassen?
Das war bestimmt nur ausversehen :D
03/21/2017 23:13 Lemmli#17422
Nabend, eine Frage lohnt es sich noch Nostale anzufangen oder eher auf nem Privat Server?
03/22/2017 09:47 Liihes#17423
Quote:
Originally Posted by Ausdemauz View Post
Nabend, eine Frage lohnt es sich noch Nostale anzufangen oder eher auf nem Privat Server?
Die Frage wird hier alle zwei Seiten gestellt. Nostale Offi wird immer schlechter also wäre die Antwort Nein.

Pserver unterscheiden sich nur in Raten/Crafting Gedöns/Mapaufbau.. soweit ich weiß ist die OpenNos Source immernoch nicht 100% absturzsicher usw. Also auch nicht.

Gesendet von meinem SM-G935F mit Tapatalk
03/22/2017 09:59 Cryless~#17424
Consider using NodeJS, a wonderful language imo

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

Code:
const cryptography = require('./modules/cryptography.js');

const db = require('mysql').createConnection({
	host: 'localhost', user: 'root', password: '123456', database: 'nostale'
}).connect(function(error) {
	if (error) {
		console.log('Unable to connect to MySql server.');
	}
});

const server = require('net').createServer(function(socket) {
	socket.on('data', function(data) {
		const loginPacket = cryptography.decryptLoginPacket(data);
		console.log(loginPacket.split(' '));

		// ...
		// db.query(..., function(...) {});
		// ...

		const loginReply = new Buffer('fail JS\n', 'binary');
		socket.write(cryptography.encryptLoginPacket(loginReply));
	});
});

console.log('--------------------------------------------------');
console.log('LoginServer2017 ( https://systemx64.com )');
console.log('--------------------------------------------------');

server.listen(4003, '127.0.0.1');
Code:
module.exports = {
	decryptLoginPacket : function(data) {
		for (var i = 0; i < data.length; i++) {
			data[i] -= 0x0F;
			data[i] ^= 0xC3;
		}

		return data.toString('ascii');
	},

	encryptLoginPacket : function(data) {
		for (var i = 0; i < data.length; i++) {
			data[i] += 0x0F;
		}

		return data.toString('ascii');
	}
}
03/22/2017 10:00 Liihes#17425
Quote:
Originally Posted by SystemX64™ View Post
Consider using NodeJS, a wonderful language imo

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

Code:
const cryptography = require('./modules/cryptography.js');

const db = require('mysql').createConnection({
host: 'localhost', user: 'root', password: '123456', database: 'nostale'
}).connect(function(error) {
if (error) {
console.log('Unable to connect to MySql server.');
}
});

const server = require('net').createServer(function(socket) {
socket.on('data', function(data) {
const loginPacket = cryptography.decryptLoginPacket(data);
console.log(loginPacket.split(' '));

// ...
// db.query(..., function(...) {});
// ...

const loginReply = new Buffer('fail JS\n', 'binary');
socket.write(cryptography.encryptLoginPacket(loginReply));
});
});

console.log('--------------------------------------------------');
console.log('LoginServer2017 ( https://systemx64.com )');
console.log('--------------------------------------------------');

server.listen(4003, '127.0.0.1');
Code:
module.exports = {
decryptLoginPacket : function(data) {
for (var i = 0; i < data.length; i++) {
data[i] -= 0x0F;
data[i] ^= 0xC3;
}

return data.toString('ascii');
},

encryptLoginPacket : function(data) {
for (var i = 0; i < data.length; i++) {
data[i] += 0x0F;
}

return data.toString('ascii');
}
}
Not a fan of js, but thanks for sharing.

Gesendet von meinem SM-G935F mit Tapatalk
03/22/2017 10:32 Cryless~#17426
Quote:
Originally Posted by Liihes View Post
Not a fan of js, but thanks for sharing.

Gesendet von meinem SM-G935F mit Tapatalk
I can see a potential: cross-platform, very short code, etc.. It manages to be faster than .NET and does not require any compilation.. There is more and more but you can easy find it on Google just typing 'NodeJS'.

As you said it uses Javascript sintax, which is studied in the early years of school. This characteristic makes the community more involved in an open source project than any other language.

Just see OpenNos, it is designed to be a free software but only few people are able to develope on it because of C#. It does not involve the whole community but only a few profiteers who work at a high price.
03/22/2017 10:37 Liihes#17427
Quote:
Originally Posted by SystemX64™ View Post
I can see a potential: cross-platform, very short code, etc.. It manages to be faster than .NET and does not require any compilation.. There is more and more but you can easy find it on Google just typing 'NodeJS'.

As you said it uses Javascript sintax, which is studied in the early years of school. This characteristic makes the community more involved in an open source project than any other language.

Just see OpenNos, it is designed to be a free software but only few people are able to develope on it because of C#. It does not involve the whole community but only a few profiteers who work at a high price.
Yep totally agreeed. In my case, I've worked in a project using Node for about 3 months and basicly im not a friend of JS like I said. Node has a big future, in my oppinion, but also its a little bit overhyped.

Gesendet von meinem SM-G935F mit Tapatalk
03/22/2017 11:05 Lemmli#17428
Quote:
Originally Posted by Liihes View Post
Die Frage wird hier alle zwei Seiten gestellt. Nostale Offi wird immer schlechter also wäre die Antwort Nein.

Pserver unterscheiden sich nur in Raten/Crafting Gedöns/Mapaufbau.. soweit ich weiß ist die OpenNos Source immernoch nicht 100% absturzsicher usw. Also auch nicht.

Gesendet von meinem SM-G935F mit Tapatalk
Danke, meine Frage kommt daher, da ich noch nie so richtig Nostale gezockt habe, daher ein Laie in dem Bereich bin.
03/22/2017 11:33 Bombasticx3#17429
Quote:
Originally Posted by Ausdemauz View Post
Danke, meine Frage kommt daher, da ich noch nie so richtig Nostale gezockt habe, daher ein Laie in dem Bereich bin.
Ich persönlich mag den Offi, aber spiele auch nur auf PvE.
Ob es sich lohnt zu spielen wird dir nie jemand sagen können, teste es einfach aus. Kostet ja nix.
03/22/2017 15:49 Liihes#17430
Ich wär ja dafür, dass wir nen Sticky machen für jeden OpenNos 'Server' oder wie die sich heutzutage schimpfen. Da dürfen die dann ihre Präsentationen untereinander reinklatschen & ich muss mir nichtmehr gefühlte 10 neue Server pro Tag geben, weil ich die Threads hier tatsächlich lese. =)

(Allerdings würde das auch 80% der lustigen Kindergarten Streitgespräche killen..)
((Pro / Kontra inc.?))