Jump to content

Lua custom command appears to not work


CSMajor

Recommended Posts

function onPlayerCommand(thePlayer,command) 
local myWindow = guiCreateWindow ( 0, 0, 0.5, 0.4, "Information", true )--create a window which has "Information" in the title bar. 
local tabPanel = guiCreateTabPanel ( 0, 0.1, 1, 1, true, myWindow ) --create a tab panel which fills the whole window 
local tabMap = guiCreateTab( "Map Information", tabPanel ) -- create a tab named "Map Information" on 'tabPanel' 
local tabHelp = guiCreateTab( "Help", tabPanel ) -- create another tab named "Help" on 'tabPanel' 
  
-- adds a label (text) to each tab 
guiCreateLabel(0.02,0.04,0.94,0.2,"This is information about the current map",true,tabMap) 
guiCreateLabel(0.02,0.04,0.94,0.92,"This is help text.",true,tabHelp) 
outputChatBox("TEST:",thePlayer) 
end 
addCommandHandler("cmds",onPlayerCommand) 

Can someone tell me why this command seems not to work :S

Link to comment
It's working fine, are you sure you didn't put in meta.xml type="server"? GUI elements & DX drawing are only client side so type must be type="client"

so i must create another xml line and state it as a client??? mmk i see i dont have it client sided i have it in my server. TYVM :P

how would i go about doing it tho, im new haha

Link to comment
<meta> 
    <info author="CSMAJOR" type="gamemode" name="TCK TEST" description="TCK Gammings first MTA Server :P" /> 
    <script src="script.lua"/> 
    <script src="client/gui.lua" type="client"/> 
</meta> 

and another question would i just load the server like i normally would and this will work?

ok i got it working but i cant click anything on the gui, and i cant close it... how can i get rid of it etc. :S

Link to comment

try this,

function onPlayerCommand(thePlayer,command) 
if isElement(myWindow) then destroyElement(myWindow) end 
local myWindow = guiCreateWindow ( 0, 0, 0.5, 0.4, "Information", true )--create a window which has "Information" in the title bar. 
local tabPanel = guiCreateTabPanel ( 0, 0.1, 1, 1, true, myWindow ) --create a tab panel which fills the whole window 
local tabMap = guiCreateTab( "Map Information", tabPanel ) -- create a tab named "Map Information" on 'tabPanel' 
local tabHelp = guiCreateTab( "Help", tabPanel ) -- create another tab named "Help" on 'tabPanel' 
  
-- adds a label (text) to each tab 
guiCreateLabel(0.02,0.04,0.94,0.2,"This is information about the current map",true,tabMap) 
guiCreateLabel(0.02,0.04,0.94,0.92,"This is help text.",true,tabHelp) 
outputChatBox("TEST:",thePlayer) 
end 
addCommandHandler("cmds",onPlayerCommand) 

Link to comment
try this,
function onPlayerCommand(thePlayer,command) 
if isElement(myWindow) then destroyElement(myWindow) end 
local myWindow = guiCreateWindow ( 0, 0, 0.5, 0.4, "Information", true )--create a window which has "Information" in the title bar. 
local tabPanel = guiCreateTabPanel ( 0, 0.1, 1, 1, true, myWindow ) --create a tab panel which fills the whole window 
local tabMap = guiCreateTab( "Map Information", tabPanel ) -- create a tab named "Map Information" on 'tabPanel' 
local tabHelp = guiCreateTab( "Help", tabPanel ) -- create another tab named "Help" on 'tabPanel' 
  
-- adds a label (text) to each tab 
guiCreateLabel(0.02,0.04,0.94,0.2,"This is information about the current map",true,tabMap) 
guiCreateLabel(0.02,0.04,0.94,0.92,"This is help text.",true,tabHelp) 
outputChatBox("TEST:",thePlayer) 
end 
addCommandHandler("cmds",onPlayerCommand) 

not to be rude or anything, but can you explain what you just added, and it needs to be lower because mywindow is not declared.... im new to mta so im confused haha.

EDIT: tried it and it doesnt delete the window or allow me to click anything :S

Link to comment
local myWindow = guiCreateWindow ( 0, 0, 0.5, 0.4, "Information", true )--create a window which has "Information" in the title bar. 
guiSetVisible(myWindow,false) 
local tabPanel = guiCreateTabPanel ( 0, 0.1, 1, 1, true, myWindow ) --create a tab panel which fills the whole window 
local tabMap = guiCreateTab( "Map Information", tabPanel ) -- create a tab named "Map Information" on 'tabPanel' 
local tabHelp = guiCreateTab( "Help", tabPanel ) -- create another tab named "Help" on 'tabPanel' 
  
-- adds a label (text) to each tab 
guiCreateLabel(0.02,0.04,0.94,0.2,"This is information about the current map",true,tabMap) 
guiCreateLabel(0.02,0.04,0.94,0.92,"This is help text.",true,tabHelp) 
outputChatBox("TEST:",thePlayer) 
  
function open_close() 
if guiGetVisible(myWindow) == false then 
guiSetVisible(myWindow,true) 
showCursor(true) 
else 
guiSetVisible(myWindow,false) 
showCursor(false) 
end 
end 
addCommandHandler("cmds",open_close) 

Link to comment

another question, say i want to amke a login command with the syntax: /login username password, and in the server the user types /login, or /login CSMajor, how would i make it show the correct syntax to the player? for example USAGE:/login username password

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...