Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- key queryId;
- default
- {
- on_rez(integer Setting)
- {
- llResetScript();
- }//on_rez
- state_entry()
- {
- }
- touch_start(integer num_detected){
- queryId = llRequestSimulatorData( llGetRegionName(), DATA_SIM_POS );
- }
- dataserver(key query_id, string data)
- {
- if (query_id == queryId)
- {
- llOwnerSay(data);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement