mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 22:26:09 +08:00
Added interface, stub implementation and script
stub for llRequestURL().
This commit is contained in:
@@ -8026,6 +8026,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
return UUID.Zero.ToString();
|
||||
}
|
||||
}
|
||||
public LSL_String llRequestURL()
|
||||
{
|
||||
m_host.AddScriptLPS(1);
|
||||
NotImplemented("llRequestURLe");
|
||||
return UUID.Zero.ToString();
|
||||
}
|
||||
|
||||
public void llForceMouselook(int mouselook)
|
||||
{
|
||||
|
||||
@@ -274,6 +274,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
|
||||
LSL_Key llRequestInventoryData(string name);
|
||||
void llRequestPermissions(string agent, int perm);
|
||||
LSL_Key llRequestSimulatorData(string simulator, int data);
|
||||
LSL_Key llRequestURL();
|
||||
void llResetLandBanList();
|
||||
void llResetLandPassList();
|
||||
void llResetOtherScript(string name);
|
||||
|
||||
@@ -1228,6 +1228,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
{
|
||||
return m_LSL_Functions.llRequestSimulatorData(simulator, data);
|
||||
}
|
||||
public LSL_Key llRequestURL()
|
||||
{
|
||||
return m_LSL_Functions.llRequestURL();
|
||||
}
|
||||
|
||||
public void llResetLandBanList()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user