ID:164848
 
//if i have this, for an example
mob/Login()
..()
client.show_verb_panel=0
src<<sound('blabla')

mob/verb
silence_sound()
set category="wee"
src<<sound(null)

Even though client.show_verb_panel is 0, could it be possible to bypass it for a certain tab or no?
Nope, but you could always do this (which is quite redundant if you have a lot of verbs)

mob/verb
a()
set hidden=1
world<<"Hey, I'm verb <b>A</b>, and I'm hidden!"
g()
world<<"Hey, I'm the only unhidden verb. ;)\n Let's hang out sometime! I'll show a <b>G</b>reat time!"
c()
set hidden=1
world<<"Hey guys, check me out! I'm verb <b>C</b> and I'm hidden too!"
d()
set hidden=1
world<<"Hey, I'm hidden too. You just lost <b>D</b>a Game."
Do you want to hide their verbs?
In response to Hell Ramen
Hell Ramen wrote:
Nope, but you could always do this (which is quite redundant if you have a lot of verbs)

mob/verb
> a()
> set hidden=1
> world<<"Hey, I'm verb <b>A</b>, and I'm hidden!"
> g()
> world<<"Hey, I'm the only unhidden verb. ;)\n Let's hang out sometime! I'll show a <b>G</b>reat time!"
> c()
> set hidden=1
> world<<"Hey guys, check me out! I'm verb <b>C</b> and I'm hidden too!"
> d()
> set hidden=1
> world<<"Hey, I'm hidden too. You just lost <b>D</b>a Game."

Ah yes, i could do that, thanks o_o
In response to Axerob
Oops, forgot to close my DM tags.

Sorry about that!
Axerob wrote:
Even though client.show_verb_panel is 0, could it be possible to bypass it for a certain tab or no?

Not with client.show_verb_panel, no. What you want to do is set client.default_verb_category to null. Every verb without set category set will automatically be hidden. It has the same effect as setting set category=null for every verb.