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

AAC Development Suggestions

Status
Not open for further replies.

Avarian

Bring Out Your Dead!
Joined
Jun 14, 2007
Messages
472
Reaction score
1
Location
United States
Well i've pretty much run out of things to do on my to-do list. A side from a few minor things i've got nothing to do! So I was wondering what you guys were thinking, maybe you have something you'd like to see created or implemented?

Let me know,
Avarian
 
- Tutor Exam.
- Kill Statistics.
- "Who is Online?"
- Build-in forum.
- Screenshot library.
- Nice-looking news on index.php instead of picture.
- Not possible to make names like DuaDuDAUDA.
- Hideable & editable email, rl name, location.
- "Status" shown on character info page (online/offline = blank)
- "Position" with a name of it instead of group_id at account.php
- Rookgaard name taken from config instead of "No Residence" at char info.


I think it's enough for now x)

You're doing well.
 
@Marcinek Paladinek

He's making ACC special for TFS, so "Online List" and "Status" will not work, becouse TFS doesn't have online players saved to "online.php". But rest i agree! ;)

And my suggestion is - make acc compatible with MD5 passwords.
 
well, Avarian, get on it! :p You should ask Tala to include the status and online list things, it'd be great, or just ask him if there's any other way to fix it.
 
- Profesinal style(s)
- Website Style changer
- Polls & feedback (need to login to vote and to give a feedback)
- A portal with news, information about the server which is above the news, polls, links and affilates and more... and on the menu link to the account page, and a login box or something.

Don't know more. =/
 
Last edited:
Most of them sound good and i'll put them on the to-do list.

Post more if you think of any.
 
Also:

- Show if is banned+for what at character info.
 
Some ideas.

* Banishment Complains
Player can make complains to gamemaster
about banishments and can only answer if gamemaster
have posted a reply.
Gamemasters can answer
Gods can answer, delete, edit complains

* Build-in forum. (Include PHPBB in some way maybe? :))

* Tutor Exam.

//Skynox
 
@Marcinek Paladinek

He's making ACC special for TFS, so "Online List" and "Status" will not work, becouse TFS doesn't have online players saved to "online.php". But rest i agree! ;)

And my suggestion is - make acc compatible with MD5 passwords.

online list page exists already for TFS, the file is online-list.php, simple/horrible code version of it is:
PHP:
$sql = mysql_query("SELECT `name` FROM `players` WHERE `online`='1'");
   while ($row = mysql_fetch_array($sql)) {
      echo 'Username: ',$row[name],'<br />';
   }

Status in character page simple/horrible code:
PHP:
if ($charbeingviewed[online] == '1') {
  echo 'Status:  Online<br />';
} else {
  echo 'Status:  Offline<br />';
}

Edit --
PhpBB and all other pre-made forums (eg: SMF) suck unless you edit the hell out of them to match your ACC's design template. It would simply be easier and less time consuming to just code a simple forums directly into the ACC
 
Status
Not open for further replies.
Back
Top