Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some adjustments #123

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions config.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

// what client version are you using on this OT?
// used for the Downloads page and some templates as well
'client' => 1321, // 1321 = client 13.21
'client' => 1340, // 1340 = client 13.40

'session_prefix' => 'myaac_', // must be unique for every site on your server
'friendly_urls' => false, // mod_rewrite is required for this, it makes links looks more elegant to eye, and also are SEO friendly (example: https://localhost/guilds/Testing instead of https://localhost?subtopic=guilds&name=Testing). Remember to rename .htaccess.dist to .htaccess
Expand Down Expand Up @@ -88,8 +88,8 @@
),

// images
'outfit_images_url' => './outfit/animoutfit.php', // set to animoutfit.php for animated outfit
'item_images_url' => 'images/items/', // set to images/items if you host your own items in images folder
'outfit_images_url' => 'https://outfit-images-oracle.ots.me/latest_walk/animoutfit.php', // set to animoutfit.php for animated outfit
'item_images_url' => 'https://item-images-oracle.ots.me/latest_otbr_anim/', // set to images/items if you host your own items in images fold

// account
'account_management' => true, // disable if you're using other method to manage users (fe. tfs account manager)
Expand All @@ -98,14 +98,14 @@
'account_create_auto_login' => false, // auto login after creating account?
'account_create_character_create' => true, // allow directly to create character on create account page?
'account_mail_verify' => false, // force users to confirm their email addresses when registering account
'account_verified_only' => false, // force users to confirm their email to login in game
'account_mail_confirmed_reward' => [ // reward users for confirming their E-Mails
// account_mail_verify needs to be enabled too
'premium_days' => 0,
'coins_transferable' => 0,
'coins' => 0,
'message' => 'You received %d %s for confirming your E-Mail address.' // example: You received 20 coins for confirming your E-Mail address.
],
'account_verified_only' => false, // force users to confirm their email to login in game
'account_mail_confirmed_reward' => [ // reward users for confirming their E-Mails
// account_mail_verify needs to be enabled too
'premium_days' => 0,
'coins_transferable' => 0,
'coins' => 0,
'message' => 'You received %d %s for confirming your E-Mail address.' // example: You received 20 coins for confirming your E-Mail address.
],
'account_mail_unique' => true, // email addresses cannot be duplicated? (one account = one email)
'account_premium_days' => 0, // default premium days on new account
'account_welcome_coins' => 0, // default coins on new account
Expand Down
2 changes: 2 additions & 0 deletions system/clients.conf.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,6 @@
1321,
1322,
1330,
1332,
1340,
];
Loading