17.07.2017, 17:35
Hallo zusammen
Ich möchte gern ein Prim, und wenn man da drauf klickt bekommt man eine Gruppen Einladung.
Ich versteh folgendes Script nicht so ganz. Wenn ich auf das Prim klicke, öffnet sich zwar das Gruppenfenster, aber nix wo sich der Avatar selbst einladen kann.
Eine UUID hab ich nicht geändert (Es erscheint ja anscheinend das richtige Gruppenfenster).
Ist dies weil ich das Teil mit der entsprechenden Gruppe gerezzt hab ?
Hier der unbearbeitete Code:
Gruss, Pharcide
Ich möchte gern ein Prim, und wenn man da drauf klickt bekommt man eine Gruppen Einladung.
Ich versteh folgendes Script nicht so ganz. Wenn ich auf das Prim klicke, öffnet sich zwar das Gruppenfenster, aber nix wo sich der Avatar selbst einladen kann.
Eine UUID hab ich nicht geändert (Es erscheint ja anscheinend das richtige Gruppenfenster).
Ist dies weil ich das Teil mit der entsprechenden Gruppe gerezzt hab ?
Hier der unbearbeitete Code:
Code:
//
// BETLOG Hax
//
// AEST: 20080613 0704 [SLT: 20080612 1404]
// For Harleywood Guru request in SecondLife Hobos group chat
//
// Thanks to Punkaroo Snoring, and Pavig Lok for inadvertently pointing out something
// i read in a RC release notes and totally didnt pay attention to. But which is really useful.
//=========================================================================
// ---LICENCE START---
// http://creativecommons.org/licenses/by-sa/3.0/
// ie: Attribution licence:
// Give me credit by leaving it in the script I created.
// Supply my original script with your modified version.
// Refer to the wiki URL from which you copied this script.
// https://wiki.secondlife.com/wiki/Group_invitation
// ---LICENCE END---
//=========================================================================
// SHARED CONFIGURATION
//----------------------------------
// CONFIGURATION
//----------------------------------
// CORE CODE
//=========================================================================
default
{ state_entry()
{ llSetText("group join offer EXAMPLE - touch to get the IM", <1.0, 1.0, 1.0>,1.0);
}
touch_start(integer total_number)
{ list data = llGetObjectDetails(llGetKey(), ([OBJECT_GROUP]));
string UUID = llList2String(data, 0);
llSetColor(<1.0, 0.0, 0.0>, ALL_SIDES); //IM adds a delay.. indicate this visually
// llLoadURL( //does NOT seem to work, but i'd love to know if it does (like if it gets fixed in a client release)
llInstantMessage(
llDetectedKey(0)
// , "Join the group! Please click the dialog box." //as above
, "\nJoin the group! Please click the link in your history window (ctrl-H)"
+"\n secondlife:///app/group/"+UUID+"/about"
);
llSetColor(<0.0, 1.0, 0.0>, ALL_SIDES); //IM adds a delay.. indicate this visually
}
}
//=========================================================================
Gruss, Pharcide