• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Castro AAC

Just letting people know this is not dead. I had some troubles with git these days but now everything seems fine.

I am however wondering if someone would design a VERY simple landing page for http://cloakaac.github.io/ something simple and minimalist but with some relation to tibia (dunno maybe background?)

If anyone interested send me a PM :)
 
As @Printer suggested I added two factor auth system + recovery key.

Oogylw3.png


Maybe the generated keys are a bit complicated for writing them down. so this is not how the final key will look like

cqzqudu.png


Heres the enable tf page

BAAvs4E.png


And thats it. Your account wont be ever stealed =)

You can go and try if google auth will read the qr on the photos
 
Wow! Thank you mate, looks lovely! :-)
 
Okey so after some feedback on the LUA bindings I finally finish em'

This is an example on how to create a custom page (a top premdays listing in this example)

test.lua

Code:
local t = {}
t["data"] = query("SELECT name FROM accounts ORDER BY id DESC")
t["title"] = "LUA Example page =)"
renderTemplate("test.html", t)

test.html

HTML:
[[ template "head_start.html" ]]
[[ template "head_end.html" .Logged ]]
<div class="panel panel-default">
    <div class="panel-heading">
        <h3 class="panel-title">[[ .title ]]</h3>
    </div>
    <div class="panel-body">
        [[ range $element := .data ]]
        Player name: [[ index $element "0" ]] <br>
        [[ end ]]
    </div>
</div>
[[ template "footer_start.html" ]]
[[ template "footer_end.html" ]]

Will give this

SanQyuq.png


I hope this is easy enough to make custom pages =)
 
The AAC is so sick dude, but that layout.... urgh!! :D
Still, I might gonna try it out soon :)
Great work!
 
As @Printer suggested I added two factor auth system + recovery key.

Oogylw3.png


Maybe the generated keys are a bit complicated for writing them down. so this is not how the final key will look like

cqzqudu.png


Heres the enable tf page

BAAvs4E.png


And thats it. Your account wont be ever stealed =)

You can go and try if google auth will read the qr on the photos

Looks good mate, found some working motivation from this post.
Keep it up :)
 
It looks really nice, keep up the great work!
 
The guy that was making a template for the AAC is on vacation without PC so... looking again for someone :p

Also started the account lost stuff. still WIP

xhMFuNV.png
 
Last edited:
Not much to say. I cleaned the main repo A LOT. moved almost all the framework code to its own module so the AAC feels cleaner.

I updated the guild list page a bit

JpO4Sh4.png


So it shows some extra information about the guild.

I also fixed some database querys to just one isntead of multiple. And I finished the credits page (uses github API)

BhepBbe.png


And a little change to the character view page

ATZAWxP.png
 
Last edited:
When is it ready to use? Since i would love to launch my new server with this awesome aac :)

Also, do you have flags system? Which country a player is from, always curious where the majority of players come from.
 
When is it ready to use? Since i would love to launch my new server with this awesome aac :)

Also, do you have flags system? Which country a player is from, always curious where the majority of players come from.

Well. Admin panel is still not done in the new version, houses, guild wars and highscores. I am having my last exams this month so progress is a bit slow.

I was also planning to add lua events to the AAC on each controller but not sure on that. And about the flags... nope no flag system at the moment
 
Back
Top