what do I use to make the center, numpad 5, button to do differant things? I've tried both of these which didn't work:
mob/verb/Center()
set hidden = 1
usr << "You pushed Center!"
And...
client/Center()
usr << "You pushed Center!"
Niether of them give errors, but they also don't do what I want them to do, either.
ID:174556
Aug 8 2003, 11:18 am
|
|
CoWdUdE7 wrote:
what do I use to make the center, numpad 5, button to do differant things? I've tried both of these which didn't work: Using client/Center() is correct, but by setting up mob/verb/Center() I believe you've short-circuited the whole thing and now neither works. Lummox JR |
(NOTE: Taking a look at Deadrons recent macro demo would help you greatly)
macro
center return "(verb name, no () on verb)"
I would also suggest, if your using a macro for a verb, setting the verb to hidden.
mob/verb/verbhere()
set hidden = 1
It makes it not appear in stat panels.