LSL Errors

From Second Life Wiki
Revision as of 21:19, 5 September 2007 by Ppaatt Lynagh (talk | contribs) (add "Lists may not contain lists" script run-time error)
Jump to navigation Jump to search

Script run-time error messages

  • Lists may not contain lists
  • Stack-Heap Collision - The Stack has collided with the Heap.
    The LSL memory space contains three sections Bytecode, Stack and Heap which all must be contained in 16kib of memory.
    • This can occur if the running script is too big. The script compiles and saves successfully, but when an object containing it is instantiated the script crashes.

Examples

default
{
    state_entry()
    {
        list entries = [];
        entries += [entries]; // Script run-time error: Lists may not contain lists
    }
}