Fix and hook up llTeleportAgent
parent
0fb50a8a9e
commit
f11ab97747
|
@ -4657,7 +4657,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
ScriptSleep(5000);
|
ScriptSleep(5000);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void llTeleportAgentHome(string agent, string simname, LSL_Vector pos, LSL_Vector lookAt)
|
public void llTeleportAgent(string agent, string simname, LSL_Vector pos, LSL_Vector lookAt)
|
||||||
{
|
{
|
||||||
m_host.AddScriptLPS(1);
|
m_host.AddScriptLPS(1);
|
||||||
UUID agentId = new UUID();
|
UUID agentId = new UUID();
|
||||||
|
|
|
@ -395,6 +395,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
|
||||||
void llTargetOmega(LSL_Vector axis, double spinrate, double gain);
|
void llTargetOmega(LSL_Vector axis, double spinrate, double gain);
|
||||||
void llTargetRemove(int number);
|
void llTargetRemove(int number);
|
||||||
void llTeleportAgentHome(string agent);
|
void llTeleportAgentHome(string agent);
|
||||||
|
void llTeleportAgent(string agent, string simname, LSL_Vector pos, LSL_Vector lookAt);
|
||||||
void llTextBox(string avatar, string message, int chat_channel);
|
void llTextBox(string avatar, string message, int chat_channel);
|
||||||
LSL_String llToLower(string source);
|
LSL_String llToLower(string source);
|
||||||
LSL_String llToUpper(string source);
|
LSL_String llToUpper(string source);
|
||||||
|
|
|
@ -1815,6 +1815,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||||
m_LSL_Functions.llTargetRemove(number);
|
m_LSL_Functions.llTargetRemove(number);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void llTeleportAgent(string agent, string simname, LSL_Vector pos, LSL_Vector lookAt)
|
||||||
|
{
|
||||||
|
m_LSL_Functions.llTeleportAgent(agent, simname, pos, lookAt);
|
||||||
|
}
|
||||||
|
|
||||||
public void llTeleportAgentHome(string agent)
|
public void llTeleportAgentHome(string agent)
|
||||||
{
|
{
|
||||||
m_LSL_Functions.llTeleportAgentHome(agent);
|
m_LSL_Functions.llTeleportAgentHome(agent);
|
||||||
|
|
Loading…
Reference in New Issue