PostScriptEvent() публичный Метод

Post an event to a single script
public PostScriptEvent ( UUID itemID, EventParams p ) : bool
itemID UUID
p EventParams
Результат bool
        // timer: not handled here
        // listen: not handled here

        public void control(UUID itemID, UUID agentID, uint held, uint change)
        {
            myScriptEngine.PostScriptEvent(itemID, new EventParams(
                                               "control", new object[] {
                new LSL_Types.LSLString(agentID.ToString()),
                new LSL_Types.LSLInteger(held),
                new LSL_Types.LSLInteger(change)
            },
                                               new DetectParams[0]));
        }