<div>[Not exactly a response to your scripting question but...] I finally found a teleport script in the OS that works in the OS (see below).  More specifically, I found the full perm teleport script (by Rupudiator quann) in a full perm Pulpit Telelporter (by Garry Beaumont) in the Steam Shop @ Freebie Slumcity (The Neverhood 108, 105, 22).  Also, FYI, The Neverhood and the surrounding sims are terrific builds as well as fun to tour (to hunt for freebies).</div>

<div> </div>
<div>Best,</div>
<div>Kay</div>
<div> </div>
<div>//<br>//"Teleport Script NEW" by Rupudiator quann<br>key lastAVkey = NULL_KEY;<br>string fltText = "Next Floor";<br>vector dest = <109.000,115.000,42.625>; // X Y Z coordinates</div>
<div>init()<br>{<br>        llSetSitText("Teleport");<br>        llSetText(fltText, <1,1,1>, 1);<br>        llSitTarget(dest-llGetPos(), <0,0,0,1>);<br>}</div>
<div>default<br>{<br>    state_entry()<br>    {<br>                init();<br>    }<br>    touch_start(integer i)<br>    {<br>        init();<br>    }<br>    changed(integer change)<br>    {<br>        key currentAVkey = llAvatarOnSitTarget();<br>
        if (currentAVkey != NULL_KEY && lastAVkey == NULL_KEY)<br>        {<br>            lastAVkey = currentAVkey;        <br>            if (!(llGetPermissions() & PERMISSION_TRIGGER_ANIMATION))  <br>                llRequestPermissions(currentAVkey,PERMISSION_TRIGGER_ANIMATION);<br>
            llSleep(0.5);<br>            llUnSit(currentAVkey);<br>            llStopAnimation("sit");<br>            llResetScript();<br>        }<br>    }<br>}</div>
<div><br><br> </div>
<div class="gmail_quote">On Mon, May 16, 2011 at 4:32 PM, Sean McNamara <span dir="ltr"><<a href="mailto:smcnam@gmail.com">smcnam@gmail.com</a>></span> wrote:<br>
<blockquote style="BORDER-LEFT: #ccc 1px solid; MARGIN: 0px 0px 0px 0.8ex; PADDING-LEFT: 1ex" class="gmail_quote">Hi,<br>
<div class="im"><br>On Mon, May 16, 2011 at 5:13 PM, missyfitz <<a href="mailto:7minarets@gmail.com">7minarets@gmail.com</a>> wrote:<br>> Is there anything specific that needs to be done to get scripts to run in<br>
> OSdiva? As a test I'm trying a very basic texture animation script which I<br>> basically copy/pasted from my inventory in SL, and it doesn't do anything..<br>> It says it saves/compiles the script, but the script doesn't actually<br>
> animate the texture. Other basic test scripts, like a prim rotation script,<br>> also don't work. Here is the script I'm working with:<br><br></div>I don't know anything about the specifics of Diva's distro, but have<br>
you tried the most trivial script possible? Rotating a prim and<br>texture animations are hardly what I'd call as "basic" :)<br><br>default<br>{<br>    state_entry()<br>    {<br>          llSay(0, "Hello World!");<br>
    }<br>}<br><br>If the above *does* work, then it seems that you've found some<br>unsupported or misbehaving script functions in the version of XEngine<br>shipped in diva.<br><br>If the above *doesn't* work, you probably have a misconfiguration,<br>
maybe Diva can help you. But I'm sure it would be helpful for you to<br>post your OpenSim.exe console log regardless.<br><br>HTH,<br><font color="#888888"><br>Sean<br></font>
<div>
<div></div>
<div class="h5"><br>><br>> default<br>> {<br>>    state_entry()<br>>    {<br>>        llSetTextureAnim(ANIM_ON | SMOOTH | LOOP, ALL_SIDES,0,0,0.0,<br>> 1,-0.3);<br>>    }<br>> }<br>><br>> Should be just a simple, straightforward texture anim... XEngine is enabled<br>
> in opensim.ini:<br>><br>> DefaultScriptEngine = "XEngine"<br>><br>> Any reason why it wouldn't work?<br>><br>><br>><br>> --<br>> View this message in context: <a href="http://opensim-users.2152040.n2.nabble.com/How-to-get-scripts-to-run-in-Diva-tp6370458p6370458.html" target="_blank">http://opensim-users.2152040.n2.nabble.com/How-to-get-scripts-to-run-in-Diva-tp6370458p6370458.html</a><br>
> Sent from the opensim-users mailing list archive at Nabble.com.<br>> _______________________________________________<br>> Opensim-users mailing list<br>> <a href="mailto:Opensim-users@lists.berlios.de">Opensim-users@lists.berlios.de</a><br>
> <a href="https://lists.berlios.de/mailman/listinfo/opensim-users" target="_blank">https://lists.berlios.de/mailman/listinfo/opensim-users</a><br>><br>_______________________________________________<br>Opensim-users mailing list<br>
<a href="mailto:Opensim-users@lists.berlios.de">Opensim-users@lists.berlios.de</a><br><a href="https://lists.berlios.de/mailman/listinfo/opensim-users" target="_blank">https://lists.berlios.de/mailman/listinfo/opensim-users</a><br>
</div></div></blockquote></div><br>