Skip to main content

build.set_wall_color

Overview

  • Change wall color. Works in both play mode (character must be inside a building) and build mode. Specify edge_key for a single wall (from build.scan_walls), or omit to apply to all walls. Use floor_level to filter. side: front, back, or both (default).

Metadata

FieldValue
DisplaySet Wall Color
Categorybuild
AccessScriptCheat
ScopeB1Multicast
TagsExperimental
Aliases

Parameters

NameTypeRequiredDefaultDescription
colorstringyesColor value: hex (#0000FF) or name (blue)
edge_keyintnoSpecific wall edge key (from build.scan_walls). Omit for all walls.
floor_levelintnoFilter by floor level (default: all floors)
sidestringnobothWhich side: front, back, or both (default: both)

Returns

  • Return shape is not declared for this command.

Usage

await inzoi.cli.execute('build.set_wall_color', {
color: '',
edge_key: 0, // optional
floor_level: 0, // optional
side: 'both', // optional
});