/////////////////////////////////////////////////////////////////////////// // Copyright (C) Wizardry and Steamworks 2011 - License: GNU GPLv3 // // Please see: http://www.gnu.org/licenses/gpl.html for legal details, // // rights of fair usage, the disclaimer and warranty conditions. // /////////////////////////////////////////////////////////////////////////// default { touch_start(integer num) { integer itra; list reconf; for(itra=0; itra<4; ++itra) { reconf += (string)llFloor(llFrand(2)); } llMessageLinked(LINK_ALL_CHILDREN, 0, llList2CSV(reconf), "k@reconf"); } }