• Equip weapon bind
    2 replies, posted
I'm currently trying to make a multi bind that allows to say chat messages and equip a weapon as well. I've already tried using: bind . "say /me salute; slot4; +attack; -attack" but it just shows up the slot and doesn't equip it, I've tried several other ways but couldn't figure anything out. Anybody know what I'm doing wrong?
Try "use weaponclassname", for example, "say /me salute; use weapon_physcannon", would cause you to salute and equip the gravity gun.
calling +attack & -attack on the same command would just do -attack. //what you're doing looks like CreateMove - command number: 1 buttons = +attack; buttons = -attack; output: -attack; // doesn't attack at all CreateMove - command number: 1 // what I assume you're trying to do buttons = +attack; output: +attack; CreateMove - command number: 2 buttons = -attack; output: -attack; /* you do +attack in one command then the next you do -attack so it only counts as one attack command */
Sorry, you need to Log In to post a reply to this thread.