Initial Upload

This commit is contained in:
2025-09-27 10:48:07 +01:00
commit 48d171ca34
11 changed files with 1281 additions and 0 deletions

View File

@ -0,0 +1,17 @@
integer button_listen_chan = 1347453635;
string button_name = "button_01";
default
{
state_entry() {
}
on_rez(integer start_param) {
llResetScript();
}
touch_end(integer total_number)
{
llSay(button_listen_chan, button_name);
}
}