Esti Mation @EstiMoondust

north east europe Offline

impatiently curious and constantly sniffing the codes and graphics


Threads

View context
Dreamgrid has also some oars and IARs, investigate it, there are downloads
like(0)
View context
key detected;
vector LandingPoint = ;
vector LookAt = ;

float time = (5.0);

default
{
state_entry()
{

}



collision(integer number)
{
detected = llDetectedKey(0);
osTeleportAgent(detected,LandingPoint,LookAt);
state wait;
}
}

state wait
{
state_entry()
{
llSetTimerEvent(time);
}

timer()
{
llSetTimerEvent(0.0);
state default;
}
}
like(0)
Hi Esti and thank you so much for this script!
I have created the collision prim and teleported to the prim that contains the animation.

key detected;
vector LandingPoint = < > ; // X,Y,Z landing point for avatar to arrive at
vector LookAt = < > ; // which way they look at when arriving

works really nicely

I have no idea, though, where to go from here...collision prim... https://gyazo.com/0ea276e8bb6bfd490c651bba4d69838b
to here...animated... there was no prompt to sit. https://gyazo.com/33159338b37c66ed65b0aa6a554d9d0c

My problem is...I am not able to translate further than the the teleport though:/
Would you put notes, please, so i know what i'm looking at.
like(0)
View context
you can not even imagine how right you are! same is about lone creators in sl, "companies" steal their work at sandboxes and represent as own by selling, linden lab just spreads its arms because those huge sellers also rent big regions :D
like(1)
View context
currently i go back to Osgrid
like(0)
please send the name of the cottage on a notecard
liked(1)
View context
in object needs to be with notecard named whitelist

script:
key second = NULL_KEY; // fill in a second key if you want

string active = "active";
float range = 25.0; // Range we will be scanning for for persons to check if they are on the whitellist

key nrofnamesoncard; // Some variables used to collect all the data from the notecard
integer nrofnames;
list names;
list keynameoncard;
string nameoncard;
string storedname;

integer listener;

default // We use the default state to read the notecard.
{
state_entry()
{
llOwnerSay("Startup state reading whitelist notecard");
nrofnamesoncard = llGetNumberOfNotecardLines("whitelist"); // Triggers the notecard reading by getting the numer of lines in the notecard
}

on_rez (integer param)
{
llResetScript();
}

dataserver (key queryid, string data){

if (queryid == nrofnamesoncard)
{
// When we receive the number of lines in the notecard we do llGetNotecardLine for each line to get the contents
nrofnames = (integer) data;
llOwnerSay("Found "+(string)nrofnames+ " names in whitelist.");

integer i;
for (i=0;i < nrofnames;i++){
keynameoncard += llGetNotecardLine("whitelist", i);
}
} else
{
integer listlength;
listlength = llGetListLength(keynameoncard);
integer j;
for(j=0;j
like(0)
View context
i don't know if it would be appropriate to just shake my head or just laugh
like(3)
Do both! - but if choice is restricted always laugh :)
liked(2)
View context
eh Copper, seems you know everything about everyone :D well, if moaning is not non-kosher than everything is fine. Btw, that giazzo image about cybeglo post- was interesting to know, i see him not (banned him)
like(0)
I just read things and dont forget things. Most do and follow like rats behind the guy whos playing the flute. I do not and use my brain ^ Cyber play cards like the gay thing if he looses arguments. And those non-thinkers inform him with infos they heard ..right or not. Like Jupiter Rowland. How did sould grid owner once said..the comment-me-to_
death Jupiter *smirk
Would have been better to respond in "the box". Here no one reads replies (only new posts come up at main site)
like(0)
View context
Really wonderful people who are doing this . :)
like(1)