Value Functions

These functions either set or get values from menu tiles. They are predominantly wrapper functions for existing xOBSE and MenuQue functions due to inherent limitations in the function signatures.

Setters

Setters set values:

GMFSetTileFloatValue

Args:

@string::sTile, @string::sTrait, @float::fValue

Info:

Set the float value of a trait for some tile, wrapper for GetMenuFloatValue from xOBSE

GMFSetTileStringValue

Args:

@string::sTile, @string::sTrait, @string::sValue

Info:

Set the string value of a trait for some tile, wrapper for GetMenuStringValue from xOBSE

GMFSetByMenuTileStringValue

Args:

@string::sTile, @string::sTrait, @string::sValue, @int::iMenuType

Info:

Set the string value of a trait for some tile and menu type, wrapper for GetMenuStringValue from xOBSE

GMFSetByMenuTileFloatValue

Args:

@string::sTile, @string::sTrait, @float::FValue, @int::iMenuType

Info:

Set the float value of a trait for some tile and menu type, wrapper for GetMenuStringValue from xOBSE

Getters

Getters get values:

GMFGetTileFloatValue

Args:

@string::sTile, @string::sTrait,

Info:

Get the float value of a trait for some tile, wrapper for GetMenuFloatValue from xOBSE

Return:

@float::fValue

GMFGetByMenuTileFloatValue

Args:

@string::sTile, @string::sTrait, @int::iMenuType

Info:

Get the float value of a trait for some tile and menu type, wrapper for GetMenuFloatValue from xOBSE

Return:

@float::fValue

GMFGetTileStringValue

Args:

@string::sTile, @string::sTrait

Info:

Get the string value of a trait for some tile, wrapper for GetMenuStringValue from xOBSE

Return:

@string::sValue

GMFGetByMenuTileStringValue

Args:

@string::sTile, @string::sTrait, @int::iMenuType

Info:

Get the string value of a trait for some tile and menu type, wrapper for GetMenuStringValue from xOBSE

Return:

@string::sValue

GMFGetTileName

Args:

@string::sTile

Info:

Get the immediate name of a tile, wrapper for tile_GetName from MenuQue

Return:

@string::sName

GMFGetByMenuTileName

Args:

@string::sTile, @int::iMenuType

Info:

Get the immediate name of a tile of a menu type, wrapper for tile_GetName from MenuQue

Return:

@string::sName

GMFGetTileFullName

Args:

@string::sTile

Info:

Get the full name of a tile (i.e. ancestry of the tile), wrapper for tile_GetName from MenuQue with the boolean option enabled

Return:

@string::sName

GMFGetByMenuTileFullName

Args:

@string::sTile, @int::iMenuType

Info:

Get the full name of a tile (i.e. ancestry of the tile) of a menu type, wrapper for tile_GetName from MenuQue with the boolean option enabled

Return:

@string::sName