Hi; in-short, I'm looking for some code I could adapt to work as an account-registration form (or module for Joomla) for a TC 3.3.5a server, but I don't really know where to begin. From my limited understanding, the best way to handle account registrations is through SOAP or RA (SOAP being a better choice), and the old way of handling it was to just import stuff straight into the account database? If SOAP is the best option, do I just need some sort of script (php?) to go from the website to the SOAP server (which I assume TC's worldserver is hosting)? Or does it need to also know what the database is too? I saw someone's example SOAP script, and it had both, but I would think that SOAP from TC would just know the databases on it's own? Would a single script be able to know what SOAP even is or how to send any info to it? In the past, I usually handled account registrations through some large CMS that was repacked specifically for WoW, but I'm trying to avoid this. I'm pretty sure such account pages just sent the info straight into the database and users had to wait for the accounts to be refreshed I think automatically by the auth/realm/loginserver. Ideally, I'd like for some simple readable code I could work with to toss into a Joomla module or page that just asks what a user wants for a username and pass, possibly some checks to make sure it isn't being abused (like mass-registering hundreds of accounts for some reason), and upon pressing a confirm button, that info would be sent to where it needs to go (either SOAP or the db directly) to make the account. Doesn't have to be flashy at all.