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

C++ (otx) 1/1 In-game Account Manager

Solution
Try if works... Taken from this post


You need to put the blocked accounts here
Code:
array(1,2,123)

Iam fix from Sourc Salt
1 problem how block 1/1 from website

If that didnt work for you, then u can try this

go to classes/visitors.php
look for setAccount and setPassword functions and replace them with

PHP:
public static function setAccount($value)
{
    $_SESSION['account'] = ($value != (1)) ? $value : null;
}

public static function setPassword($value)
{
    $_SESSION['password'] = ($value != (1)) ? $value : null;
}
Try if works... Taken from this post


You need to put the blocked accounts here
Code:
array(1,2,123)

Iam fix from Sourc Salt
1 problem how block 1/1 from website

If that didnt work for you, then u can try this

go to classes/visitors.php
look for setAccount and setPassword functions and replace them with

PHP:
public static function setAccount($value)
{
    $_SESSION['account'] = ($value != (1)) ? $value : null;
}

public static function setPassword($value)
{
    $_SESSION['password'] = ($value != (1)) ? $value : null;
}
 
Solution
Back
Top