This is an [AddWall command just like the [AddSign and [AddDoor commands.
Just started to put this together and changed up the gump a bit.
(Not sure why but I like this black background.)
The buttons use the Tile Method instead of the just add.
If you would like to change this to do the [M add Static #ID or just [Add Static #ID
On line 238
Just started to put this together and changed up the gump a bit.
(Not sure why but I like this black background.)
The buttons use the Tile Method instead of the just add.
If you would like to change this to do the [M add Static #ID or just [Add Static #ID
On line 238
[Tile Method:
CommandSystem.Handle(from, String.Format("{0}Tile Static {1}", CommandSystem.Prefix, m_Types[button].m_BaseID));
[M Add Method:
CommandSystem.Handle(from, String.Format("{0}M Add Static {1}", CommandSystem.Prefix, m_Types[button].m_BaseID));
[Add Method:
CommandSystem.Handle(from, String.Format("{0}Add Static {1}", CommandSystem.Prefix, m_Types[button].m_BaseID));