Cutstuff Forum

Mega Man 8-bit Deathmatch => MM8BDM Discussion => Topic started by: RainsLikeSnow on October 23, 2010, 02:53:08 AM

Title: Binding
Post by: RainsLikeSnow on October 23, 2010, 02:53:08 AM
Can someone plz tut how to bind keys
Title: Re: Binding
Post by: Ivory on October 23, 2010, 03:00:06 AM
Check Here (http://cutstuff.net/forum/viewtopic.php?f=27&t=902&start=0)
I have a basic tutorial for it there.
Title: Re: Binding
Post by: Blueiscooltoo on October 23, 2010, 03:53:13 AM
Simple: bind anykey "command"

Example: bind r "idkfa"

it binds r with the cheat that gives you all weapons.
Title: Re: Binding
Post by: RainsLikeSnow on October 23, 2010, 04:09:26 AM
Quote from: "Blueiscooltoo"
Simple: bind anykey "command"

Example: bind r "idkfa"

it binds r with the cheat that gives you all weapons.

thats what i did when i was guessing on binding, now i do
Code: [Select]
bind 5 "mdk" It inflicts 10000000 to what ever is in the cross heir
Title: Re: Binding
Post by: TERRORsphere on October 23, 2010, 03:30:04 PM
Quote from: "RainsLikeSnow"
thats what i did when i was guessing on binding, now i do
Code: [Select]
bind 5 "mdk" It inflicts 10000000 to what ever is in the cross heir
Pathetic code. Try this:
Code: [Select]
bind 5 "mdk;wait 1;mdk;wait 1;mdk;wait 1;mdk;wait 1;mdk;wait 1;mdk;wait 1;mdk;wait 1;mdk;wait 1;mdk;wait 1;mdk;wait 1;mdk;wait 1;mdk;wait 1;mdk;wait 1;mdk;wait 1;mdk"
This'll perform the mdk code 15 times really really fast but not at the same time.
Title: Re: Binding
Post by: YassoGaming on June 10, 2019, 05:17:51 PM
i want make color bind how i can make it ????
Title: Re: Binding
Post by: Gumballtoid on June 10, 2019, 06:52:59 PM
I'm sure you know that when coloring your name or a message in the chat, you use the backslash '\' followed by 'c' and a color code of your choice.

When typing anything in the console, the backslash serves as your escape character. This basically means that, when processing the console command, the backslash tells the game, "Hey, use the 'literal' version of the next character you see." This means that, rather than using the next character as part of the command's syntax (if applicable), it just includes the next character in the command itself.

For many characters, this means nothing really changes. However, since you need a backslash to enter a color code, you need to use the escape character. This means that you simply need two backslashes--the first is your escape character, and the second begins your color code. If done correctly, your command should look something like this:

Code: [Select]
bind Z "say \\cgBring on the pizza!"
The backslash escape character is also useful when creating nested console commands, where you would need to use them on the inner quotes to prevent the command from being misread.

I hope this answered your question. Otherwise, you can defer to this tutorial: http://cutstuff.net/forum/index.php?topic=6237.0 (http://cutstuff.net/forum/index.php?topic=6237.0)