Advertisement
Guest User

Untitled

a guest
Jul 18th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. mywind[7] = guiCreateStaticImage(lefttt,toppp,windowWidthhh,windowHeighttt,"img/s1.png",false)
  2.  
  3. guiSetAlpha(mywind[7],0.89999997615814)
  4. mywind[12] = guiCreateButton(439,24,42,29,"Kick",false,mywind[7])
  5. mywind[14] = guiCreateButton(283,26,88,29,"Destroy Car",false,mywind[7])
  6. mywind[11] = guiCreateButton(376,25,58,29,"Slap",false,mywind[7])
  7. mywind[18] = guiCreateButton(9,25,86,30,"Mute",false,mywind[7])
  8. mywind[9] = guiCreateButton(103,25,86,30,"Freeze",false,mywind[7])
  9. mywind[10] = guiCreateButton(193,27,86,28,"unFreeze",false,mywind[7])
  10. mywind[8] = guiCreateButton(491,24,64,26,"Jail",false,mywind[7])
  11.  
  12. --Mute Panel
  13. local screenWidthhhhh, screenHeighttttt = guiGetScreenSize()
  14. local windowWidthhhhh, windowHeighttttt = 120, 164
  15. local leftt = screenWidthhhhh/2.5 - windowWidthhhhh/2.5
  16. local topp = screenHeighttttt/1 - windowHeighttttt/1
  17.  
  18.  
  19. mywind[15] = guiCreateStaticImage(leftt,topp, windowWidthhhhh,windowHeighttttt,"img/s1.png",false)
  20. guiSetAlpha(mywind[15],0.89999997615814)
  21. mywind[16] = guiCreateGridList(10,24,101,97,false,mywind[15])
  22. guiGridListSetSelectionMode(mywind[16],2)
  23.  
  24. local column = guiGridListAddColumn(mywind[16],"Mute Time",0.60)
  25.  
  26. row1 = guiGridListAddRow(mywind[16])
  27. row2 = guiGridListAddRow(mywind[16])
  28. row3 = guiGridListAddRow(mywind[16])
  29. row4 = guiGridListAddRow(mywind[16])
  30. row5 = guiGridListAddRow(mywind[16])
  31. row6 = guiGridListAddRow(mywind[16])
  32.  
  33. guiGridListSetItemText(mywind[16],row1,column,"1 min", false, false)
  34. guiGridListSetItemColor ( mywind[16], row1, column, 0, 0, 255 )
  35. guiGridListSetItemText(mywind[16],row2,column,"2 min", false, false)
  36. guiGridListSetItemColor ( mywind[16], row2, column, 0, 0, 255 )
  37. guiGridListSetItemText(mywind[16],row3,column,"3 min", false, false)
  38. guiGridListSetItemColor ( mywind[16], row3, column, 0, 0, 255 )
  39. guiGridListSetItemText(mywind[16],row4,column,"4 min", false, false)
  40. guiGridListSetItemColor ( mywind[16], row4, column, 0, 0, 255 )
  41. guiGridListSetItemText(mywind[16],row5,column,"5 min", false, false)
  42. guiGridListSetItemColor ( mywind[16], row5, column, 0, 0, 255 )
  43. guiGridListSetItemText(mywind[16],row6,column,"1 hour", false, false)
  44. guiGridListSetItemColor ( mywind[16], row6, column, 0, 0, 255 )
  45.  
  46. mywind[17] = guiCreateButton(9,130,102,24,"unMute",false,mywind[15])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement