| Field |
Original Value |
New Value |
|
Description
|
the following script gives this error, when compiled with mono:
// 2009-04-19
float randDistribution(list l1) {
float p1 = llList2Float(l1, 0);
return 3.;
}
default
{
touch_start(integer num_detected)
{
llOwnerSay( (string)randDistribution([2.,2.,2.999]));
}
}
// Object [script:New Script]: Script run-time error
// Object [script:New Script]: System.InvalidProgramException: Invalid IL code in LSL_e6df061f_b26c_2333_0ada_8c9914e71204:grandDistribution (System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList): IL_0025: stloc.1
// at LSL_e6df061f_b26c_2333_0ada_8c9914e71204.edefaulttouch_start (Int32 num_detected) [0x00000]
// at LSL_e6df061f_b26c_2333_0ada_8c9914e71204edefaulttouch_startFrame.ResumeVoid () [0x00000]
|
the following script gives this error, when compiled with mono:
{code}
// 2009-04-19
float randDistribution(list l1) {
float p1 = llList2Float(l1, 0);
return 3.;
}
default
{
touch_start(integer num_detected)
{
llOwnerSay((string)randDistribution([2.,2.,2.999]));
}
}
{code}
// Object [script:New Script]: Script run-time error
// Object [script:New Script]: System.InvalidProgramException: Invalid IL code in LSL_e6df061f_b26c_2333_0ada_8c9914e71204:grandDistribution (System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList): IL_0025: stloc.1
// at LSL_e6df061f_b26c_2333_0ada_8c9914e71204.edefaulttouch_start (Int32 num_detected) [0x00000]
// at LSL_e6df061f_b26c_2333_0ada_8c9914e71204edefaulttouch_startFrame.ResumeVoid () [0x00000]
|