Improve OpenSim-friendliness.

This commit is contained in:
Sei Lisa 2017-10-31 23:17:38 +01:00 committed by Sei-Lisa
parent bf8f10bfe6
commit 08263c921e
8 changed files with 42 additions and 42 deletions

View file

@ -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);
}
}
}