/////////////////////////////////////////////////////////////////////////// // 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. // /////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////// // INTERNALS // /////////////////////////////////////////////////////////////////////////// default { state_entry() { llSetText("Touch to dispense a volleyball.", <1, 1, 1>, 1); } touch_start(integer total_number) { if(llGetInventoryName(INVENTORY_OBJECT,0) == "") return; llRezObject(llGetInventoryName(INVENTORY_OBJECT,0), llGetPos() + <0, 0, 1>, <0,0,2>, ZERO_ROTATION, 0); } }