ID:2356147
 
Problem description:
My problem is that i couldn't find a way to remove the automatic \the macro from [] expressions. Are there any workarounds?

Example:
view() << "[usr] picks up [src]."
this way you will get an automatic "the" in front of the [src] which is not needed in my case.
You'd use .name instead.

view() << "[usr.name] picks up [src.name]"
In response to Nadrew
thanks
Just to elaborate a bit.

src is an object, src.name is a string. BYOND automatically applies the \the macro to objects, which will prepend 'the' to an object that has an improper name.