Voice Command menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [GUIDE] Voice Command

    This is post that will contain guides to Voice Command and it will be followed by profiles for classes.

    In this first post I will show how to set up movement commands.


    1. Lets first set up a comment to seperate what we are doing.
    ;Movements
    2. Now lets make commands to run and stop.
    run:{vkdown:$57}
    stop:{vkdown:$57}{vkup:$57}
    3. Now lets make commands to jump, sit and dance.
    jump:{vkdown:$20}{vkup:$20}
    posture:x
    dance:{vkdown:$0D}{vkup:$0D}/dance{vkdown:$0D}{vkup:$0D}
    4. Now lets make commands to turn and follow.
    left:{vkdown:$41}{delay:1}{vkup:$41}
    right:{vkdown:$44}{delay:1}{vkup:$44}
    follow:{vkwdown:$0D}{vkup:$0D}/follow{vkdown:$0D}{vkup:$0D}
    5. Final result and explanation.
    ;Movements

    run:{vkdown:$57} <-- This holds the W Key down until you tell it to stop
    stop:{vkdown:$57}{vkup:$57} <-- This presses W once
    jump:{vkdown:$20}{vkup:$20} <-- This presses the spacebar
    posture:x <-- Presses X, The default posture key
    dance:{vkdown:$0D}{vkup:$0D}/dance{vkdown:$0D}{vkup:$0D} <-- This hits the enter key, types /dance then hits the enter key again
    left:{vkdown:$41}{delay:1}{vkup:$41} <-- This holds A for 1 second, Change the delay for how long you want it to hold
    right:{vkdown:$44}{delay:1}{vkup:$44} <-- This holds D for 1 second, Change the delay for how long you want it to hold
    follow:{vkwdown:$0D}{vkup:$0D}/follow{vkdown:$0D}{vkup:$0D} <-- Hits the Enter key then types /follow and hits Enter again
    I hope this helps a little to some, more to come soon but for Now I must go. :wavey:


    - Suicidity.


    This post is copyright by the user posting it and MMOwned.com - World of Warcraft Exploits,Hacks, Bots and Guides, where it was posted. You may not copy or reproduce this information on any other site without written permission from both the poster and MMOwned.com
    Last edited by suicidity; 05-20-2007 at 05:00 AM.

    Voice Command
  2. #2
    jacky's Avatar Member
    Reputation
    1
    Join Date
    Jan 2007
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Voice Command

    thanks! now i understand how that stuip program works.
    it just held the button down forever and kill me
    + REP!

  3. #3
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Voice Command

    Tutorial 2 : Advanced Movement - Beginner

    In this tutorial, I will be showing you how to use Advanced movement.

    You will learn how to use the If and Var commands to determine what to do with an "on/off" or "true/false" variable.


    1. Declare a section for Variables.
    ;Variables
    2. Declare our needed variables for the movement.

    _lturnon:{vkdown:$41}{var1:true}
    _lturnoff:{vkup:$41}{var1:false}
    _rturnon:{vkdown:$44}{var2:true}
    _rturnoff:{vkup:$44}{var2:false}
    _runon:{vkdown:$57}{var3:true}
    _runoff:{vkup:$57}{var3:false}
    3. Declare a section for Movement, You should now have.

    ;Variables

    _lturnon:{vkdown:$41}{var1:true}
    _lturnoff:{vkup:$41}{var1:false}
    _rturnon:{vkdown:$44}{var2:true}
    _rturnoff:{vkup:$44}{var2:false}
    _runon:{vkdown:$57}{var3:true}
    _runoff:{vkup:$57}{var3:false}

    ;Movement
    4. Place the following commands for the movement under the movement section.

    left:{if1:_lturnoff:_lturnon}
    right:{if2:_rturnoff:_rturnon}
    run:{if3:_runoff:_runon}
    5. You should now have the following. Read on for the explanations.

    ;Variables

    _lturnon:{vkdown:$41}{var1:true} <-- Holds the A key and makes variable 1 true. This is only triggered when Var1 is False.
    _lturnoff:{vkup:$41}{var1:false} <-- Releases the A key and makes variable 1 false. This is only triggered when Var1 is True.
    _rturnon:{vkdown:$44}{var2:true} <-- Holds the D key and makes variable 2 true. This is only triggered when Var2 is False.
    _rturnoff:{vkup:$44}{var2:false} <-- Releases the D key and makes variable 2 false. This is only triggered when Var2 is True.
    _runon:{vkdown:$57}{var3:true} <-- Holds the W key and makes variable 3 true. This is only triggered when Var3 is False.
    _runoff:{vkup:$57}{var3:false} <-- Releases the W key and makes variable 3 false. This is only triggered when Var3 is True.

    ;Movement

    left:{if1:_lturnoff:_lturnon} <-- If Var1 = True Turn it False (_lturnoff) Else Turn it True (_lturnon).
    right:{if2:_rturoff:_rturnon} <-- If Var2 = True Turn it False (_rturnoff) Else Turn it True (_rturnon).
    run:{if3:_runoff:_runnon} <-- If Var3 = True Turn it False (_runoff) Else Turn it True (_runon).
    That is it! Test it, Commands are Left, Right, and Run. You must say the command, once the command is executed you must say it again to stop it.

    Hope you enjoyed the tutorial!


    - Suicidity.
    Last edited by suicidity; 05-19-2007 at 11:56 PM.

  4. #4
    Dnns's Avatar Member
    Reputation
    12
    Join Date
    Dec 2006
    Posts
    130
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Voice Command

    And Voice Command are posted b4 -_-

  5. #5
    ausgeo's Avatar Member
    Reputation
    8
    Join Date
    Jan 2007
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Voice Command

    Originally Posted by Dnns
    And Voice Command are posted b4 -_-
    Most things are. Go QQ somewhere else. Hes propably just bringing it back.


    Nice post! Thanks.

  6. #6
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Voice Command

    Just planning on showing people how to use Voice Command and to post some profiles.

  7. #7
    eddy9994's Avatar Member
    Reputation
    24
    Join Date
    Apr 2007
    Posts
    147
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Voice Command

    Nice guides btw + rep for you.

  8. #8
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Voice Command

    Here is the current Priest profile I been working on. Sorry i havnt posted anymore stuff, been playing WoW all day .

    This profile is not complete.
    ;Attacks
    fear:5
    blast:4
    shadow:3
    smite:2
    wand:1

    ;Buffs
    shield:{vkdown:$12}3{vkup:$12}
    fortitude:{vkdown:$12}1{vkup:$12}
    armor:{vkdown:$12}2{vkup:$12}

    ;Dispells
    disease:{vkdown:$12}4{vkup:$12}
    dispell magic:{vkdown:$12}5{vkup:$12}

    ;Heals
    desperate:9
    heal:8
    lesser:7
    renew:6
    resurect:{vkdown:$12}6{vkup:$12}

    ;Food and Drinks
    eat:{vkdown:$10}{vkdown:$11}0{vkup:$11}{vkup:$10}
    drink:{vkdown:$12}{vkdown:$11}0{vkup:$11}{vkup:$12}

    ;Movement
    left:{vkdown:$41}{delay:1}{vkup:$41}
    right:{vkdown:$44}{delay:1}{vkup:$44}
    run:{vkdown:$57}
    stop:{vkdown:$57}{vkup:$57}
    posture:x
    jump:{vkdown:$20}{vkup:$20}
    follow:{vkwdown:$0D}{vkup:$0D}/follow{vkdown:$0D}{vkup:$0D}
    dance:{vkdown:$0D}{vkup:$0D}/dance{vkdown:$0D}{vkup:$0D}

    ;Commands
    call pet:{vkdown:$12}{vkdown:$11}9{vkup:$11}{vkup:$12}
    smelt:{vkdown:$10}{vkdown:$11}={vkup:$11}{vkup:$10}
    find minerals:{vkdown:$12}{vkdown:$11}={vkup:$11}{vkup:$12}

    ;UI Commands
    questlog:l
    bags:{vkdown:$10}b{vkup:$10}
    character:c
    enchant:{vkdown:$10}{vkdown:$11}-{vkup:$11}{vkup:$10}
    disenchant:{vkdown:$12}{vkdown:$11}-{vkup:$11}{vkup:$12}
    world map:m
    friends
    talents:n
    skills:k
    looking for group:i
    main menu:{vkdown:$1B}{vkup:$1B}

    ;Targeting commands
    scape:{vkdown:$12}-{vkup:$12}
    maintarget:{vkdown:$12}={vkup:$12}
    target:{vkdown:$09}{vkup:$09}

    ;On / Off
    microphone on:{activate}{beep}
    microphone off:{beep}{beep}{deactivate}
    I do run around SW and stuff with this actually. 75% of the time im not touching the keyboard.

    Most UI functions are in there too.
    Last edited by suicidity; 05-20-2007 at 10:36 PM.

  9. #9
    Nugma's Avatar Field Marshal
    Reputation
    122
    Join Date
    Aug 2006
    Posts
    1,290
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Voice Command

    Originally Posted by ausgeo
    Most things are. Go QQ somewhere else. Hes propably just bringing it back.


    Nice post! Thanks.
    What are you talking about? He's not bringing it back and the guy you quoted probably didn't realize that it was the program (Due to weird thread title) Please don't tell people to "Go cry somewhere else" since that's just a lame response.

  10. #10
    Peter.b's Avatar Member
    Reputation
    13
    Join Date
    May 2007
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Voice Command

    word dawg .

  11. #11
    Leeroy Jenkins's Avatar Member
    Reputation
    11
    Join Date
    Apr 2007
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Voice Command

    i have got a error in sound system message? what hav ei done wrong?
    Last edited by Leeroy Jenkins; 05-30-2007 at 12:13 PM.

  12. #12
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Voice Command

    You mistyped a header or command.

    Headers are used as such..

    ;Header

    Commands are used as such..

    command said:actions to take


    Post your complete profile and I will fix any errors.

  13. #13
    Leeroy Jenkins's Avatar Member
    Reputation
    11
    Join Date
    Apr 2007
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Voice Command

    cheers
    thabks alot

  14. #14
    glynix's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Mar 2007
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Voice Command

    this is great stuff, ill definately keep a watch on this thread

  15. #15
    Fallenx's Avatar Member
    Reputation
    1
    Join Date
    Sep 2006
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Voice Command

    Make it for Warrior plz I rly need
    Find me in the woods and destroy my forest you'll be sorry!

Page 1 of 2 12 LastLast

Similar Threads

  1. [Control WoW with your voice] Voice Commander
    By Alkhara Majere in forum World of Warcraft Bots and Programs
    Replies: 330
    Last Post: 10-24-2008, 10:20 AM
  2. Make a Bot using Voice Commander!
    By drew77 in forum World of Warcraft Bots and Programs
    Replies: 28
    Last Post: 12-26-2007, 03:22 PM
  3. Alternate Voice Commander Profile (Priest)
    By j_jones84 in forum World of Warcraft Bots and Programs
    Replies: 5
    Last Post: 06-20-2007, 04:05 PM
  4. My Voice Command Commands.
    By Nemesis Kkc in forum World of Warcraft Bots and Programs
    Replies: 11
    Last Post: 06-11-2007, 05:45 AM
  5. Voice Commander Question
    By Finaldoom in forum World of Warcraft General
    Replies: 0
    Last Post: 06-11-2007, 01:56 AM
All times are GMT -5. The time now is 01:18 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search