//"00-MagnaMural Drone Script" (One or Two - both are the same) // // by Apollia Pirandello // // Free, public domain, open source. May be used and modified // for any purpose, including commercial purposes. // // If you like it, or even if you don't, I welcome donations of // any size. // // MagnaMural Home Page, with manual and scripts: // http://magnamural.astroblahhh.com/ // A nice, short, simple script. This goes in MagnaMural prims 3 and 4. // It makes it possible for the MagnaMural to resize itself, and // reposition its prims as necessary. vector vec; default { link_message(integer sender_num, integer num, string str, key id) { if (num==41) { vec=(vector)str; llSetScale(vec); } if (num==42) { vec=(vector)str; llSetPos(vec); } } }