Sziasztok, videó és MTA wiki alapján is próbáltam összehozni egy GUI-t. Most így néz ki:
És ha beírom a parancsot semmi sem történik pedig Logban sem ír semmi errort.
EDIT: most láttam, hogy shows\"cursor-t írtam átírtam showcursorra és mostmár ezt írja logban:
attempt to call global \'guiGetScreenSize\' (a nil value)
function teszt( )
local sWidth, sHeight = guiGetScreenSize( )
local wWidth, wHeight = 300, 300
x = (sWidth/2) - (wWidth/2)
y = (wHeight/2) - (wHeight/2)
hatter = guiCreateStaticImage(x, y, 300, 300, \"teszt.png\", false)
showCursor(true)
gomb1 = guiCreateLabel(10, 350, 120, 60, \"AAAAAAAA\", false, hatter)
gomb1 = guiCreateLabel(177, 350, 120, 60, \"AAAAAAAA\", false, hatter)
addEventHandler(\"onClientGUIClick\", gomb1, gombteszt, false)
addEventHandler(\"onClientGUIClick\", gomb2, bezaras, false)
end
addCommandHandler(\"teszt\", teszt)
function gombteszt( )
outputChatBox(\"teszt\")
end
function bezaras( )
outputChatBox(\"teszt2\")
end