ID:161616
 
Hmm created a pane for Inventory and Stat and they work ok but i didnt create a pane for the admin tab or the commands tab can i make them appear without creating panes???


Hmm also how do i code stuff like a title in into the panes???
I think you want the category setting
In response to Nickr5
Hmm so whats the catagory setting???
In response to Chrislee123
Always use and read the DM Reference: F1 in Dream Maker, or here. Look up the category setting in it.
Also, you should really follow this as well:
http://www.byond.com/members/ DreamMakers?command=view_post&post=40355
In response to Kaioken
It says:

<font color = red>category setting (verb)

See also:
default_verb_category var (client)
show_verb_panel var (client)

Format:
set category = "Category"

Args:

Category: A text string for the category.
Verbs in the same category are visually grouped together in the verb panels. The default is "", which is displayed in the default panel titled "Commands". You can change that default by setting client/default_verb_category.

To hide a verb from all panels, set the category to null. The verb may still show up in right-click popup menus, so you may want to use the hidden or popup_menu verb properties instead. </font>




How do i use that setting in my src???
In response to Chrislee123
Chrislee123 wrote:
How do i use that setting in my src???

You indent it under your verb so it belongs to it and modifies it's category setting. The format is described in the very text you've quoted.
If you cannot figure this out, you even more so need to read the article I linked to in my previous post... learn how to do things instead of posting asking how to do everything.
In response to Kaioken
For example:
mob/verb
Say(msg as text)
set category = "Bla"
view(usr) << "[usr] says: [msg]"