ID:107861
 
I'm just curious is there is a macro for right clicking in BYOND. I've tried all the options I could think of to no avail. Thanks in advance.
There's some sort of parameter or something in the Click() proc if you're programming. Otherwise, no.
Click(location,control,params)

if("right" in params2list(params))

// stuff


You're going to have to edit the map control/grid control in particular so that it returns right-click functions.
To expand on what duelmaster said: there is right click, and more!
I think you guys misunderstood what he meant.

He's looking for a .click type of command that applies to right clicks, so that he can set up his own macros for it in a custom DMF for a game.
Oh. In that case, no, there's no such thing (I would think), since the only things are .click and .dblclick -- I don't think you can get any more information from those commands, but I might be wrong.
Oh. In that case, no, there's no such thing (I would think), since the only things are .click and .dblclick -- I don't think you can get any more information from those commands, but I might be wrong.

Yeah, this is more what I was going for. Teridal has most of it's action based on right-clicking now, so I guess I'll just have to go about it the hard way for now.

Thanks guys.