• 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!

Paxton Account Manager

MrLipzZz

HTML 'haha
Joined
Nov 27, 2008
Messages
171
Reaction score
0
Location
Brazil
paxton, any way to block ppl to login the account id 1
(Account manager)
On the site?


Something like..
when try to login
"You cant log in with account manager in this place"

or just blocking the Login if the Accunt have < 2 letters !
so this will block the acc "1" to login! get it?

yea?
 
Last edited:
Idk why, but players prefer Account Manager to create, but i wanna use it, AND the website, i want enable all ppls to login with yours accs in site , but enabling Account manager only ingame..

get???
 
Yeah, i already done it , hehehe
But, BAD players can log in site with 1/1 , and delete the Account Manager Character, hAHAHHAHAHAHHAhaha


now u get it?
 
My servers have the 1/1 account, caus account manager players use it..
but i wan to BLOCK the login with this account in website :S
no one?!
 
My servers have the 1/1 account, caus account manager players use it..
but i wan to BLOCK the login with this account in website :S
no one?!

Go to system/application/controllers/account.php


On line ~179 you will find:

PHP:
function login($action = 0) {

below it paste this:

PHP:
if(@$_REQUEST['pass'] == 1 && @$_REQUEST['name'] == 1) show_error('Account Manager is blocked on this website.');

So you will have this:

PHP:
		function login($action = 0) {
			if(@$_REQUEST['pass'] == 1 && @$_REQUEST['name'] == 1) show_error('Account Manager is blocked on this website.');
 
Back
Top