ID:151359
 
All the future verbs will be in that category, instead of copying and pasting it in all the verbs.
mob
gm
verb
set category = "GM"
GM_Verb_Here(mob/m in world)


Example That Relates:
mob
icon = 'mobs.dmi'
slime
icon_state = "slime"
npc = "slime"

All future mobs will be in that icon.

[Sorry, I didn't know what philosophy meant, and I figured it was suggestions so I posted it here. :P]
Um, what is this?
In response to Duelmaster409
Instead of doing
mob/verb
UberThing()
set category = "Uber Stuff is in Here"
usr<<"Whoa!"
Uberthing2()
set category = "Uber Stuff is in Here"
usr<<"Hai!"


you can do

mob/verb
set category = "Uber Stuff is in Here"
Uberthing()
usr<<"Whoa!"
Uberthing2()
usr<<"Hai!"
In response to Kenny84
I tried doing that. It wont work >.<
In response to Namedspeed
It's a suggestion - you can't do it yet.

The feature request tracker is here: http://www.byond.com/members/?command=view_tracker&tracker=4
Only way currently to shorten something like that would be to create a preprocessor definition.
#define GMVERB set category = "GM"

mob
gm
verb
GM_Verb_Here()
GMVERB
src << "You clicked \"GM Verb Here,\" located in the \"GM\" verb category."


Other than that, it has been requested before, but possibly not in the feature tracker.