guiComboBoxAddItem | Multi Theft Auto: Wiki Skip to content

guiComboBoxAddItem

Client-side
Server-side
Shared

Pair: guiComboBoxRemoveItem

Adds an item to a combobox.

OOP Syntax Help! I don't understand this!

Syntax

int|false guiComboBoxAddItem ( ​gui-combobox comboBox, ​string value )
Required arguments
  • comboBox: The combobox you want to add a row to.
  • value: The text that the item will contain.

Returns

Returns the item ID if it has been created, false otherwise.

  • int|false: itemID

Code Examples

client

This example will add an item to comboBox when player use command addItem followed by the value of the item.

addCommandHandler("addItem", function(command, value)
guiComboBoxAddItem(comboBox, value)
outputChatBox("Item with text " .. value .. " has been added!")
end)

See Also

GUI Functions