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

TFS 1.X+ ZNOTE Account. Character Action.

Kuantikum

Member
Joined
Jul 3, 2015
Messages
219
Solutions
1
Reaction score
20
Hello,

I'm trying to configure the znote site (Character Action), when I try to create a character action, the following error happens:


Lua:
Character auction
Configured storage_account_id in config.php does not exist!
Print: - Array
(
    [characterAuction] => 1
    [storage_account_id] => 789789
    [step] => 5
    [step_duration] => 3600
    [lowestLevel] => 20
    [lowestPrice] => 10
    [biddingDuration] => 86400
    [deposit] => 10

action error.JPG



I understand that I have to set up a separate account for the characters to be moved to that account, the account was created. What am I doing wrong ?

Lua:
$config['shop_auction'] = array(
        'characterAuction' => true, // Enable/disable this system
        // Account ID of the account that stores players in the auction.
        // Make sure storage account has a very secure password!
        'storage_account_id' => 789789, // Separate secure account ID, not your GM.
        'step' => 5, // Minimum amount someone can raise a bid by
        'step_duration' => 1 * 60 * 60, // When bidding over someone else, extend bid period by 1 hour.
        'lowestLevel' => 20, // Minimum level of sold character
        'lowestPrice' => 10, // Lowest donation points a char can be sold for.
        'biddingDuration' => 1 * 24 * 60 * 60, // = 1 day, 0 to disable bidding
        'deposit' => 10 // Seller has to add 10=10% deposit to auction which he gets back later.
    );


Account created on data base:
acccreada.JPG


I am very grateful for your help 😍😘🥰
 
Solution
From what I gather on that small phpmyadmin screenshot, storage_account_id is 4, and account name is 789789.

So try to use 'storage_account_id' => 4
From what I gather on that small phpmyadmin screenshot, storage_account_id is 4, and account name is 789789.

So try to use 'storage_account_id' => 4
 
Solution
From what I gather on that small phpmyadmin screenshot, storage_account_id is 4, and account name is 789789.

So try to use 'storage_account_id' => 4
How can I fix this problem? that should be put in the storage so that everyone can sell and buy chart


Captura.PNG
 
How can I fix this problem? that should be put in the storage so that everyone can sell and buy chart


View attachment 58946

Create a new account with no characters. Give it a secure password.
Look it up in database (using etc phpmyadmin) to get the accounts.id value
put that in storage_account_id.
 
Back
Top