client//define this under client...
command_text = ".alt "//when someone logs in it is already in Macro mode
mob/verb/sword()
set hidden = 1
usr.sword = 1
usr.whip = 0
mob/verb/whip()
set hidden = 1
usr.sword = 0
usr.whip = 1
mob/var
sword
whip
macros.dms:
macro
* return "sword"
/ return "whip"
it doesnt seen wrong but when i use the macro in play it doesnt work.