Open mzed opened 1 year ago
/obj/kick/azim?
I would more expect this in the following form in order to set/get a name of a specific object:
adm/obj/(k)/name s
I would prefer not have to build adresses, but rely on a string argument.
There are two possibilities here.
/adm/obj/<objectNumber>/name s
should set the name to whatever string is contained by s
. So, /adm/obj/5/name piano
sets object number 5 to be named piano.
/adm/obj/<objectNumber>/name
with no argument is a query for the name. /adm/obj/5/name
should return "piano"
Possibly, object names could be used in place of object numbers. Like: /adm/obj/piano/azim 45.0
. That might be nice to have, by not necessary.
ADM limits labelLength to 128 characters. That seems reasonable for /name
too
/adm/obj/
/adm/obj/piano/azim 45.0 : this can be a good idea but can leads to parsing consumption. This has probanly yo be study and discuss.
?