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

Znote AAC Character Auctions System

Mister Budex

BudexOT.com
Joined
Jun 22, 2016
Messages
1,547
Solutions
18
Reaction score
378
Hi, Is someone up to finish this works from ZnoteAAC?
I means would be really good if someone get up on it and finish that work and release it.
I would but I don't have enough aknowledge to do it, I can help with some parts.
Aswell I saw that @StreamSide already has it, I'm willing to buy that script from him and release it for free.

Znote/ZnoteAAC (https://github.com/Znote/ZnoteAAC/blob/master/auctionChar.php)
 
I just created this for an old project, code is messy and really outdated, thats why I dont want to share it, we are not using it anymore.
 
I just created this for an old project, code is messy and really outdated, thats why I dont want to share it, we are not using it anymore.
You could share it so some of our scripters could re-write it when they have base its easier.
 
You could share it so some of our scripters could re-write it when they have base its easier.
The code is there in the orignal post. All you need to do is update it and integrate it with your AAC. If you don't have the knowledge to do this then you could acquire it by learning about it (at least enough to get it working) or hire someone to do it for you.

I can't afford to hire people to build or fix every little thing that i want done so i set some time aside to learn about these different languages because i can't & don't expect things to run right out of the box and neither should you.
 
The code is there in the orignal post. All you need to do is update it and integrate it with your AAC. If you don't have the knowledge to do this then you could acquire it by learning about it (at least enough to get it working) or hire someone to do it for you.

I can't afford to hire people to build or fix every little thing that i want done so i set some time aside to learn about these different languages because i can't & don't expect things to run right out of the box and neither should you.
The Best Character Auction system is coming in public within few days, for ZnoteAAC of course ! :)
 
@Znote released the Character Auction System


We love you man !!!
 
and I have a result from 1.0
Well, maybe you should look a little harder:
PHP:
<?php
    if (!defined('ZNOTE_OS')) {
        $isWindows = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN');
        define('ZNOTE_OS', ($isWindows) ? 'WINDOWS' : 'LINUX');
    }

    // If you want to use items.php (not 100% yet, I guess)
    // Tested with TFS master items.xml (1.x)
    $config['items'] = false;

    // Available options: TFS_02, TFS_03, OTHIRE, TFS_10
    // OTHire = OTHIRE
    // TFS 0.2 = TFS_02
    // TFS 0.3 = TFS_03 (If you are using 0.3.6, set $config['salt'] to false)!
    // TFS 0.4 = TFS_03
    // TFS 1.x = TFS_10 (Current under development version)
    $config['ServerEngine'] = 'TFS_10';
    // As far as I know, OTX is based on TFS_03, so make sure TFS version is configured TFS_03
    $config['CustomVersion'] = false;

In the config.php file.
 
Back
Top