Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- addEventHandler("onClientResourceStart",resourceRoot,
- function()
- --Erstellung des Panels
- local sWidth, sHeight = guiGetScreenSize()
- local Width,Height = 365,215
- local X = (sWidth/2) - (Width/2)
- local Y = (sHeight/2) - (Height/2)
- ElementP = guiCreateWindow(X, Y, Width, Height, "setElementData-Panal made by #LarSo~",false)
- guiSetVisible(ElementP, false)
- --Erstellung der Gridlist und "Player" Spalte
- Grid = guiCreateGridList(10,25,150,180,false,ElementP)
- guiGridListSetSelectionMode(Grid,2)
- guiGridListAddColumn(Grid,"Player",0.2)
- --Erstellung der Edits und maximim der edits
- gruppe = guiCreateEdit(175,25,182,35,"",false,ElementP)
- was = guiCreateEdit(175,75,182,35,"",false,ElementP)
- guiEditSetMaxLength(gruppe, 10)
- guiEditSetMaxLength(was, 10)
- --Erstellung des Knopfes
- Button = guiCreateButton(175,120,180,40,"accept",false,ElementP)
- --Unwichtig
- Label = guiCreateLabel(182,176,170,30," scripted for Xtreme-Players",false,ElementP)
- guiLabelSetColor(Label,255,0,0)
- end
- )
Advertisement
Add Comment
Please, Sign In to add comment