ID:179737
 
Hi again, Im having a bit of trouble with my grammarically correct verbs. How do I rearange the order in which verb input is typed? I have a verb that goes like this

look(mob/M as mob in view(), obj/O as obj in M.contents)

but no one would ever say it like "look from player at this object", people say it like "look at this object from player". But the verb requires that I input it as "look player object" which just doesnt sound right, so I want to reverse the player and object inputs, but I dont know how. Can anyone help??
simply reverse the code:

look(obj/O as obj in usr.contents, mob/M as mob in view(1))




Rcet
In response to Rcet
Oops! I wrote that wrong, it should have been

look(mob/M as mob in view(), obj/O as obj in M.contents)