addEventHandler("onClientResourceStart", resourceRoot,
function()
local screenW, screenH = guiGetScreenSize()
wnd = guiCreateWindow((screenW - 341) / 2, (screenH - 469) / 2, 341, 469, "~# لوحة انتقآلات #~", false)
guiWindowSetSizable(wnd, false)
guiSetAlpha(wnd, 1.00)
label = guiCreateLabel(11, 435, 158, 19, "#Created By : Royal - mIDO", false, wnd)
guiLabelSetColor(label, 6, 148, 248)
grid = guiCreateGridList ( 13, 25, 318, 342, false, wnd)
column = guiGridListAddColumn(grid, "الآمآآكن", 0.9, wnd)
for k,v in ipairs(grida) do
s = guiGridListAddRow(grid)
guiGridListSetItemText(grid,s,1,v[1],false,false)
guiGridListSetItemData(grid,s,1,{v[2],v[3],v[4]})
end
Warp = guiCreateButton(16, 376, 143, 40, "~# Warp #~", false, wnd)
guiSetProperty(Warp, "NormalTextColour", "FFAAAAAA")
Close = guiCreateButton(188, 376, 143, 40, "~# Close #~", false, wnd)
guiSetProperty(Close, "NormalTextColour", "FFAAAAAA")
guiSetVisible(wnd,false)
end
)