Guest User

Untitled

a guest
Sep 8th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. default
  2. {
  3.     touch_start(integer total_number)
  4.     {
  5.         vector st = llDetectedTouchST(0);
  6.         if(st.y > 0.75)
  7.             if(st.x > 0.666)        llOwnerSay("3");
  8.             else if(st.x > 0.333)   llOwnerSay("2");
  9.             else                    llOwnerSay("1");
  10.         else if(st.y > 0.5)
  11.             if(st.x > 0.666)        llOwnerSay("6");
  12.             else if(st.x > 0.333)   llOwnerSay("5");
  13.             else                    llOwnerSay("4");
  14.         else if(st.y > 0.25)
  15.             if(st.x > 0.666)        llOwnerSay("9");
  16.             else if(st.x > 0.333)   llOwnerSay("8");
  17.             else                    llOwnerSay("7");
  18.         else
  19.             if(st.x > 0.666)        llOwnerSay(".");
  20.             else if(st.x > 0.333)   llOwnerSay("0");
  21.             else                    llOwnerSay(",");
  22.     }
  23. }
Add Comment
Please, Sign In to add comment