Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Avatar Position

Damien Fate
Goofy designer
Join date: 6 Nov 2003
Posts: 634
01-15-2005 05:22
Hi, yet another possible STUPID question!

I can make an object say the name of whoever touches it, I can make it say the key of whoever touches it, I can make it say the objects position upon touch... but

I can't make it say the position of the avatar touching it, what am I missing? is it possible?
_____________________
Mirada.smartHUD - The new way to control your avatar and the world around you - In Mirada, Hairspray (22,63,51) or find me in world!

You want me to be Semi Serious? Well that's ok, I'm almost half semi serious 50% of the time.
Strife Onizuka
Moonchild
Join date: 3 Mar 2004
Posts: 5,887
01-15-2005 05:39
CODE
//
default {
touch_start(integer a) {
while(a--)
llSay(0,llDetectedPos(a));
}
}
_____________________
Truth is a river that is always splitting up into arms that reunite. Islanded between the arms, the inhabitants argue for a lifetime as to which is the main river.
- Cyril Connolly

Without the political will to find common ground, the continual friction of tactic and counter tactic, only creates suspicion and hatred and vengeance, and perpetuates the cycle of violence.
- James Nachtwey
Damien Fate
Goofy designer
Join date: 6 Nov 2003
Posts: 634
01-15-2005 06:24
Ahhh llDetectedPos, I was trying llGetPos

*duh*
_____________________
Mirada.smartHUD - The new way to control your avatar and the world around you - In Mirada, Hairspray (22,63,51) or find me in world!

You want me to be Semi Serious? Well that's ok, I'm almost half semi serious 50% of the time.