* Patch from Ansi (IBM)

* Allows the creation of a user via the RemoteAdminPlugin.
* Many thanks!
This commit is contained in:
Justin Clarke Casey
2008-01-29 14:43:45 +00:00
parent 832243c6e8
commit 55dc0dc267
2 changed files with 59 additions and 2 deletions

View File

@@ -436,6 +436,10 @@ namespace OpenSim
m_sceneManager.OnRestartSim += handleRestartRegion;
}
public LLUUID CreateUser(string tempfirstname, string templastname, string tempPasswd, uint regX, uint regY)
{
return m_commsManager.AddUser(tempfirstname,templastname,tempPasswd,regX,regY);
}
public UDPServer CreateRegion(RegionInfo regionInfo)
{
@@ -678,6 +682,7 @@ namespace OpenSim
m_log.Error(" alert [First] [Last] [Message] - send an alert to a user. Case sensitive.");
m_log.Error(" alert general [Message] - send an alert to all users.");
m_log.Error("backup - trigger a simulator backup");
m_log.Error("create user - adds a new user");
m_log.Error("change-region [name] - sets the region that many of these commands affect.");
m_log.Error("command-script [filename] - Execute command in a file.");
m_log.Error("debug - debugging commands");