Login GUI

From Crys, 10 Years ago, written in Lua, viewed 756 times.
URL https://paste.godclan.hu/view/Vgxq6UKo Embed
Download Paste or View Raw
  1. GUIEditor_Window = {}
  2. GUIEditor_Button = {}
  3. GUIEditor_Label = {}
  4. GUIEditor_Edit = {}
  5.  
  6. GUIEditor_Window[1] = guiCreateWindow(419,326,350,191,"godStats Login",false)
  7. GUIEditor_Label[1] = guiCreateLabel(16,32,324,33,"Please log in using your account previously registered on http://godclan.hu if you want your statistics to be saved",false,GUIEditor_Window[1])
  8. guiLabelSetHorizontalAlign(GUIEditor_Label[1],"left",true)
  9. guiSetFont(GUIEditor_Label[1],"default-bold-small")
  10. GUIEditor_Label[2] = guiCreateLabel(16,80,68,18,"Username:",false,GUIEditor_Window[1])
  11. guiSetFont(GUIEditor_Label[2],"default-bold-small")
  12. GUIEditor_Label[3] = guiCreateLabel(16,116,65,17,"Password:",false,GUIEditor_Window[1])
  13. guiSetFont(GUIEditor_Label[3],"default-bold-small")
  14. GUIEditor_Edit[1] = guiCreateEdit(99,76,165,24,"aasdsada",false,GUIEditor_Window[1])
  15. GUIEditor_Edit[2] = guiCreateEdit(99,108,165,24,"aasdsada",false,GUIEditor_Window[1])
  16. guiSetProperty(GUIEditor_Edit[2],"MaskText","true")
  17. GUIEditor_Button[1] = guiCreateButton(28,159,120,23,"Log in",false,GUIEditor_Window[1])
  18. GUIEditor_Button[2] = guiCreateButton(167,159,155,22,"Play without stats",false,GUIEditor_Window[1])
  19.  

Reply to "Login GUI"

Here you can reply to the paste above