Yes my company is going to start working on a mmo. We come from the byond community and are use to admin systems to ban mute or jail players that are ruining the game. is this possible to do? if so how would we go about making it so??
it's possible. you can connect to databases and webservices and also web based apps from within unity games.
unity uses mono (open source .NET) so you can use sockets and web services and ... you can also use admin system and call webpages with WWW class. then you can get the response and take a look at it and do what you want based on that. if you have ready systems use them and WWW class.
you can even fill forms within unity using WWWForm class.