Improve OpenSim-friendliness.
This commit is contained in:
parent
bf8f10bfe6
commit
08263c921e
8 changed files with 42 additions and 42 deletions
|
@ -236,7 +236,7 @@ default
|
|||
{
|
||||
Readout_Say(data);
|
||||
}
|
||||
notecard_query = llGetNotecardLine(notecard_name, notecard_line += 1);
|
||||
notecard_query = llGetNotecardLine(notecard_name, ++notecard_line);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -122,16 +122,16 @@ default
|
|||
{
|
||||
if (llGetListLength(NOTECARDS) - notecard_pointer > 1)
|
||||
{
|
||||
notecard_name = llList2String(NOTECARDS, notecard_pointer += 1);
|
||||
notecard_query = llGetNotecardLine(notecard_name, notecard_line = 0);
|
||||
notecard_name = llList2String(NOTECARDS, ++notecard_pointer);
|
||||
notecard_query = llGetNotecardLine(notecard_name, (notecard_line = 0));
|
||||
}
|
||||
else if (animator_count + 1 < animator_total)
|
||||
{
|
||||
animator_count++;
|
||||
Readout_Say(" ");
|
||||
Readout_Say("SITTER " + (string)animator_count);
|
||||
notecard_name = llList2String(NOTECARDS, notecard_pointer = 0);
|
||||
notecard_query = llGetNotecardLine(notecard_name, notecard_line = 0);
|
||||
notecard_name = llList2String(NOTECARDS, (notecard_pointer = 0));
|
||||
notecard_query = llGetNotecardLine(notecard_name, (notecard_line = 0));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -196,7 +196,7 @@ default
|
|||
}
|
||||
}
|
||||
}
|
||||
notecard_query = llGetNotecardLine(notecard_name, notecard_line += 1);
|
||||
notecard_query = llGetNotecardLine(notecard_name, ++notecard_line);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -102,7 +102,7 @@ default
|
|||
ALL_USED_ANIMATIONS += llList2String(anims, i);
|
||||
}
|
||||
}
|
||||
notecard_query = llGetNotecardLine(notecard_basename, variable1 += 1);
|
||||
notecard_query = llGetNotecardLine(notecard_basename, ++variable1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue