Injector

This script was tested and works on OpenSim version 0.7.4!

injector.lsl
//////////////////////////////////////////////////////////
//   (C) Wizardry and Steamworks 2011, license: GPLv3   //
// Please see: http://www.gnu.org/licenses/gpl.html     //
// for legal details, rights of fair usage and          //
// the disclaimer and warranty conditions.              // 
//////////////////////////////////////////////////////////
 
integer comChannel = 0;
 
default
{
    touch_start(integer total_number) {
        comChannel = ((integer)("0x"+llGetSubString((string)llGetOwner(),-8,-1)) & 0x3FFFFFFF) ^ 0xBFFFFFFF;
        llListen(comChannel, "", llGetOwner(), "");
        llTextBox(llGetOwner(), "\nPlease enter a test-string to broadcast to growl-enabled devices:\n", comChannel);
    }
    listen(integer channel, string name, key id, string message) {
        llMessageLinked(LINK_THIS, comChannel, message, id);
    }
}

secondlife/prowler/injector.txt ยท Last modified: 2022/11/24 07:46 by 127.0.0.1

Access website using Tor Access website using i2p Wizardry and Steamworks PGP Key


For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.