Guest User

Untitled

a guest
Nov 30th, 2018
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. GUIEditor_Window = {}
  2. GUIEditor_Button = {}
  3. GUIEditor_Checkbox = {}
  4. GUIEditor_Label = {}
  5. GUIEditor_Edit = {}
  6.  
  7. GUIEditor_Window[1] = guiCreateWindow(199,122,632,451,"Welcome to UGC RPG",false)
  8. guiSetAlpha(GUIEditor_Window[1],1)
  9. GUIEditor_Label[1] = guiCreateLabel(9,33,617,55,"Welcome to Universial Gaming Community.\nPlease sign in to your existing account or create one.",false,GUIEditor_Window[1])
  10. guiLabelSetHorizontalAlign(GUIEditor_Label[1],"center",false)
  11. guiSetFont(GUIEditor_Label[1],"clear-normal")
  12. GUIEditor_Label[2] = guiCreateLabel(9,77,621,33,"_________________________________________________________________________________________________________",false,GUIEditor_Window[1])
  13. GUIEditor_Label[3] = guiCreateLabel(145,124,226,24,"Username: ",false,GUIEditor_Window[1])
  14. guiSetFont(GUIEditor_Label[3],"clear-normal")
  15. GUIEditor_Label[4] = guiCreateLabel(145,182,143,24,"Password: ",false,GUIEditor_Window[1])
  16. guiSetFont(GUIEditor_Label[4],"clear-normal")
  17. GUIEditor_Edit[1] = guiCreateEdit(229,120,164,28,"",false,GUIEditor_Window[1])
  18. GUIEditor_Edit[2] = guiCreateEdit(229,178,164,28,"",false,GUIEditor_Window[1])
  19. GUIEditor_Label[5] = guiCreateLabel(178,220,315,25,"Tick this checkbox to remember my details",false,GUIEditor_Window[1])
  20. guiSetFont(GUIEditor_Label[5],"clear-normal")
  21. GUIEditor_Checkbox[1] = guiCreateCheckBox(155,216,27,25,"",false,false,GUIEditor_Window[1])
  22. guiCheckBoxSetSelected(GUIEditor_Checkbox[1],true)
  23. GUIEditor_Button[1] = guiCreateButton(328,255,125,31,"Recover Password",false,GUIEditor_Window[1])
  24. GUIEditor_Button[2] = guiCreateButton(155,255,125,31,"Login",false,GUIEditor_Window[1])
  25. GUIEditor_Label[6] = guiCreateLabel(157,300,296,52,"ERROR:\nWrong password!",false,GUIEditor_Window[1])
  26. guiLabelSetHorizontalAlign(GUIEditor_Label[6],"center",false)
  27. GUIEditor_Button[3] = guiCreateButton(45,397,125,31,"REGISTER",false,GUIEditor_Window[1])
  28. GUIEditor_Button[4] = guiCreateButton(182,397,125,31,"SERVER INFO",false,GUIEditor_Window[1])
  29. GUIEditor_Button[5] = guiCreateButton(323,397,125,31,"OVERVIEW",false,GUIEditor_Window[1])
  30. GUIEditor_Button[6] = guiCreateButton(463,397,125,31,"THE STAFF",false,GUIEditor_Window[1])
Add Comment
Please, Sign In to add comment