Jump to content

think about llGetInventoryCreator


MrSndbad
 Share

You are about to reply to a thread that has been inactive for 2677 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

The correct way to use that is

llGetInventorycreator(<name of item in the edit contents of the prim the script is in>);

not the UUID of the Avatar

If you are trying to get the creator of the object that the script is in, that's not going to work.

If that is what you are trying to do see this: http://wiki.secondlife.com/wiki/llGetCreator

Link to comment
Share on other sites

thank you for answer

but i try to not get creator 

i want say something in world if this a correct creator 

for example

 

if(get creator mrsndbad)

{

llsay(0,"this item is correct ");

}

else 

{

 llSay(0,"sorry this item not for mrsndbad");

}

 

some like that

Link to comment
Share on other sites

FIrst you need to have the script get the creator then listen for the answer to who the creator is then compare the two.

The script can get the creator using llGetCreator, or you can tell it who the creator is using

string creator = <name of the creator>;

then have a listen event

then compare the answer to the correct name

if (message = creator){llsay(0,"that is correct ");}else { llSay(0,"that is not correct");}

 

 

 

 

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 2677 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...