• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

NMServer source

Newbie Spellweaver
Joined
Jun 19, 2016
Messages
65
Reaction score
13
I do not know, but maybe someone else is looking for them.
I've changed the code for myself, I think, and some have to.
I found them on the forum by chance
Run through run.bat before changing it

Set the pserver=false
Then the address -server = will go to the post requests,when a person is authorized
Code:
NMServer -server=http://yourservename/api/login -port=47611 -pserver=true

name post request:
PHP:
$_POST['userID']
$_POST['password']

example
PHP:
<?php	set_time_limit(2400);	ini_set('session.gc_maxlifetime', 2400);		if($_SERVER['REQUEST_METHOD'] == 'POST'){
		$username = $_POST['userID'];		$password = $_POST['password'];
		$value = md5($username."".$password);		setcookie("NPPv2", $value);				echo('test body');	}

If you just run ex, it will be in private mode.
Also, if you do not set the Server parameter, the server will be set to
http://127.0.0.1/api/login

original http://forum.ragezone.com/f944/release-vindictus-1106627/index16.html#post8658816
Download
source:

complete
virustotal
 
Last edited:
Newbie Spellweaver
Joined
Aug 24, 2016
Messages
20
Reaction score
0
How does this thing connect to the database?
 
Experienced Elementalist
Joined
Nov 8, 2014
Messages
233
Reaction score
14
I do not know, but maybe someone else is looking for them.
I've changed the code for myself, I think, and some have to.
I found them on the forum by chance
Run through run.bat before changing it

Set the pserver=false
Then the address -server = will go to the post requests,when a person is authorized
Code:
NMServer -server=http://yourservename/api/login -port=47611 -pserver=true

name post request:
PHP:
$_POST['userID']
$_POST['password']

example
PHP:
<?php    set_time_limit(2400);    ini_set('session.gc_maxlifetime', 2400);        if($_SERVER['REQUEST_METHOD'] == 'POST'){
        $username = $_POST['userID'];        $password = $_POST['password'];
        $value = md5($username."".$password);        setcookie("NPPv2", $value);                echo('test body');    }

If you just run ex, it will be in private mode.
Also, if you do not set the Server parameter, the server will be set to

original [Release] Vindictus - Page 16 - RaGEZONE - MMO development community
Download
source:

complete
virustotal


how to setup it with Vindictus :(


* fixed! can run OK, thanks @Ulkyome Dev
 
Last edited:
Back
Top