i.e
mob
verb
stab(mob/m in usr.view())
m<<"STABBED! =P"
Is there any way so that if there are multiple people IN view as the player, that the player has to TYPE the name?
i.e
stab player-1
ID:169255
Jul 14 2005, 11:49 pm
|
|
Is there anyway that you can disable the list menu?
i.e mob Is there any way so that if there are multiple people IN view as the player, that the player has to TYPE the name? i.e stab player-1 |
In response to O-matic
|
|
O-matic wrote:
> mob NOTE: Untested! It takes the input but it doesnt do anything with it. Also that still spawns a popup window. I want it so you have to literally type it all in, you cant simple type in "stab" and have a window popup |
This is not physically possible with the BYOND system.
Thanks to Mobius Evalon for informing me of this. |
In response to Bunnie
|
|
Then Mobius is sorely mistaken! What you're looking for is the undocumented client/Command() proc. See [link].
|
In response to Crispy
|
|
Crispy wrote:
Then Mobius is sorely mistaken! What you're looking for is the undocumented client/Command() proc. See [link]. It does not stop it from asking for input through a window form, if you have a say verb and just type in say, you'll get a Say box asking you what to put it. you cannot get rid of ALL the means of that box |
In response to Bunnie
|
|
You asked me if it was possible to close an input box without the user clicking cancel, and -that- is not possible.
client I'd rather just deal with the input box, myself. |
Solution provided by Mobius Evalon.
client |
In response to Bunnie
|
|
Wouldn't doing this make players with long/confusing names have an advantage?
|
In response to DarkCampainger
|
|
DarkCampainger wrote:
Wouldn't doing this make players with long/confusing names have an advantage? You would then assumably have some kind of filter system against it, such as a character limit and a strict warning 'any players found with 1337 names will be deleted on sight!' but not really, DarkCampaigner, you can simply COPY the name from the screen.. |
In response to Bunnie
|
|
Bunnie wrote:
DarkCampainger wrote: You spelt my name right, lol. See? You wouldn't have been able to attack me because you switched the g and n =b |
NOTE: Untested!
O-matic