User talk:GantGrid

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(Created page with "I'm running into this error when I send a message from one object to the other on the receiving end.Any Suggestions? //------------------- //-Messaging Script-- //--------------...")
 
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
I'm running into this error when I send a message from one object to the other on the receiving end.Any Suggestions?
+
You're welcome!
 
+
--[[User:Fritigern|Fritigern]] 07:30, 13 February 2012 (PST)
//-------------------
+
//-Messaging Script--
+
//-------------------
+
 
+
default
+
{
+
    state_entry()
+
    {
+
       
+
    }
+
 
+
    touch_start(integer total_number)
+
    {
+
        llSay(0, "Cat");
+
    }
+
}
+
 
+
//-------------------
+
//--Receiver Script--
+
//-------------------
+
 
+
default
+
{
+
    state_entry()
+
    {
+
 
+
        llListen(0, "", "", "");
+
    }
+
 
+
    listen( integer channel, string name, key id, string message )
+
    {
+
        if(message == "Cat")
+
      {
+
          llDialog(llGetOwnerKey( id ), "What do you want to do?", [],
+
                11 );
+
        }
+
    }
+
}
+
 
+
 
+
 
+
//---------
+
//--Error--
+
//---------
+
 
+
//----------------------------------------------------------------------------------------------------------------
+
Primitive: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Exception: LSL Runtime Error: No less than 1 button can be shown
+
 
+
 
+
 
+
Server stack trace:
+
 
+
  at OpenSim.Region.ScriptEngine.Shared.Api.LSL_Api.LSLError(String msg)
+
 
+
  at OpenSim.Region.ScriptEngine.Shared.Api.LSL_Api.llDialog(String avatar, String message,
+
list buttons, Int32 chat_channel)
+
 
+
  at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[]
+
args, Object server, Int32 methodPtr, Boolean fExecuteInContext, Object[]& outArgs)
+
 
+
  at System.Runtime.Remoting.Messaging.StackBuilderSink.PrivateProcessMessage(RuntimeMethodHandle md,
+
Object[] args, Object server, Int32 methodPtr, Boolean fExecuteInContext, Object[]& outArgs)
+
 
+
  at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg,
+
Int32 methodPtr,
+
Boolean fExecuteInContext)
+
 
+
 
+
 
+
Exception rethrown at [0]:
+
 
+
  at System.Runtime.Remoting.Proxies.RealPr
+
//------------------------------------------------------------------------------------------------------------------
+

Latest revision as of 08:30, 13 February 2012

You're welcome! --Fritigern 07:30, 13 February 2012 (PST)

Personal tools
General
About This Wiki