Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update oc_installer_sys.lsl #1022

Merged
merged 3 commits into from
Jul 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/installer/oc_installer_sys.lsl
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,9 @@ default {
}

touch_start(integer iNumber) {
llWhisper(0, "Hello! In your collar menu, go to Help/About and press Update to begin the update");
llOwnerSay("Hello! In your collar menu, go to Help/About and press Update to begin the update");
return;
//If we weren't planning to redo this for 9.x anyway I'd scream right here.
if (llDetectedKey(0) != llGetOwner()) return;
if (g_iDone) {
g_iDone = FALSE;
Expand Down Expand Up @@ -311,7 +312,7 @@ default {

on_rez(integer iStartParam) {
string sPrefix = llToLower(llGetSubString(llKey2Name(llGetOwner()),0,1));
llSay(0, "Thank you for rezzing me. Next: In the Collar menu, go to Help/About and press Update. Or, use the chat command '"+sPrefix+" update'.");
llOwnerSay("Thank you for rezzing me. Next: In the Collar menu, go to Help/About and press Update. Or, use the chat command '"+sPrefix+" update'.");
llResetScript();
}
no_sensor()
Expand Down
Loading