blob: 2f9182980bf6d6526ce6615f9e212ad220458fd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<floater name="floater_script_colors" title="SKRIPTFARBEN">
<text name="color_pickers_label">
Gewünschte Farben auswählen:
</text>
<text name="text_label">
Text
</text>
<text name="cursor_label">
Cursor
</text>
<text name="background_label">
Hintergrund
</text>
<text name="datatype_label">
Datentypen
</text>
<text name="event_label">
Events
</text>
<text name="string_literal_label">
String-Literale
</text>
<text name="constant_label">
Konstante
</text>
<text name="flow_control_label">
Flusskontrolle
</text>
<text name="function_label">
Funktion
</text>
<text name="comment_label">
Kommentar
</text>
<script_editor name="Script Preview">
/* Ein Beispielskript */
default
{
state_entry()
{
// Kommentar
string greeting = "Hallo";
llSay(PUBLIC_CHANNEL, greeting);
}
}
</script_editor>
</floater>
|