• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows Account Manager

Big Gunz

Active Member
Joined
Nov 17, 2011
Messages
1,064
Reaction score
32
Location
United States
guys there is a way I can put account manager even tho im using mysql? and can you please.. explain how?

thank you! ;P
 
can you explain to me how to do it? because account manager account is 1\1 and player would be able to log into the account manager using the website.

I want players to be able to create their accounts\character using the website.. and create their accounts\character using account manager in game xd
 
In login.php

I just added:
PHP:
else if ($username === "1") {
		$errors[] = 'You may not log into the Account Manager.';
	}

After:
PHP:
else if (user_exist($username) === false) {
		$errors[] = 'Failed to authorize your account, are the details correct, have you <a href=\'register.php\'>register</a>ed?';
	}

Then tested it and it worked.
 
Back
Top