How to: Play WoW with a wiimote menu

User Tag List

Results 1 to 8 of 8
  1. #1
    clamsd101's Avatar Member
    Reputation
    2
    Join Date
    May 2007
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    How to: Play WoW with a wiimote

    I am not sure on if this is in the correct forum. Oh well.

    Ok, playing Wow with a wiimote is pretty bad, you can’t do raiding or do anything extensive like typing (*Laughs*) but I’ve actually played for a very long time like 2 hours without frustration (fortunately I’m not social).

    Feel free to email me at clamsd101@gmail or Msn @ [email protected] for help or questions.

    What you will need, Hardware.
    Wiimote & Nun chuck add-on
    Bluetooth dongle (Search amazon.com for one, 10-20)
    Computer running with Wow
    Optional but may improve performance, Wii sensor bar or candle
    Even more optional dual monitors, I’ll cover that later

    Setting it up.
    1. Plug your Bluetooth dongle into your USB slot on your computer
    2. If you have software that came along with the Dongle install it.
    3. Grab your wiimote and press and hold the sync button.
    4. Go to your Bluetooth software and press search. Most likely you will have BlueSoleil. It’s the big orb in the middle.
    5. Once it finds the wiimote, it will have Nintendo in the name, right click it and go to refresh services, if it fails repeat this step.
    6. Once it has verified that, you need to right click it again, but this time goto connect>what ever the wiimote is.
    7. Now this is where Glove pie, which acts like a driver for the wiimote, comes in.
    Google it, and download it.
    8. Open it, and copy this code in.


    Code:
    /* This was made to play Blizzards World of Warcraft
       This is based off of kasten's WOW script
       Monday February 18 2008 | Made by FAED*/
    // Press run. It sould say 0,28,0. if is doesn't change to numbers below
    var.xOffset = -1
    var.yOffset = -2
    var.zOffset = 0
    
    // This will control the mouse speed higher faster lower slower
    var.speed = 1
    // This is jittering controls. If you are steady you can lower these
    // if you are shaky the change them so their higher.
    var.xCutoff = 4
    var.zCutoff = 4
    // This will set it straight
    var.xRot = Wiimote.RawForceX + var.xOffset
    var.yRot = Wiimote.RawForceY + var.yOffset
    var.zRot = Wiimote.RawForceZ + var.zOffset
    debug = 'X:' + var.xRot + ', ' + 'Y:' + var.yRot + ', ' + 'Z:' + var.zRot
    //This will make the mouse move
    if var.xRot > var.xCutoff then mouse.x = mouse.x - .001 * var.speed * (var.xRot - var.xCutoff) 
    if var.xRot < -var.xCutoff then mouse.x = mouse.x - .001 * var.speed * (var.xRot + var.xCutoff) 
    if var.zRot > var.zCutoff then mouse.y = mouse.y - .001 * var.speed * (var.zRot - var.zCutoff) 
    if var.zRot < -var.zCutoff then mouse.y = mouse.y - .001 * var.speed * (var.zRot + var.zCutoff) 
    // This will control moving on the wiimote
    numlock = Wiimote.Up
    m = Wiimote.Down
    tab = Wiimote.Left
    tab = Wiimote.Right
    // This will all control the movment
    Right = 1 > Wiimote1.Nunchuk.JoyX > 0.5 
    Left = -1 < Wiimote1.Nunchuk.JoyX < -0.5 
    down = 1 > Wiimote1.Nunchuk.JoyY > 0.5 
    up = -1 < Wiimote1.Nunchuk.JoyY < -0.5 
    // These will hit some keys
    p = Wiimote.Plus
    c = Wiimote.Minus
    o = Wiimote.Home
    b = Wiimote.One
    l = Wiimote.Two
    // Nunchuck Keys
    enter = Wiimote.Nunchuk.CButton
    enter = Wiimote.Nunchuk.ZButton
    // Finally mouse clicking
    mouse.LeftButton = Wiimote.A
    mouse.RightButton = Wiimote.B
    // Fun
    Wiimote.Rumble = Wiimote.A
    Wiimote.Rumble = Wiimote.B
    // Leds
    Wiimote.Led1 = w 
    Wiimote.Led2 = s 
    Wiimote.Led3 = a 
    Wiimote.Led4 = d 
    Wiimote.Led1 = j 
    Wiimote.Led2 = k 
    Wiimote.Led3 = h 
    Wiimote.Led4 = ctrl+9
    // This will control the jumping and mounting (my case)
    if var.yRot >= 100 then space = true else space = false
    if var.xRot >= 100 then four = true else four = false


    After that start moving you bars around and getting mods to make it easier to use

    Ok I said I was going to tell you about Dual-Monitors.
    Hopefully you’ll have a graphics-card with two outputs. Your probably using one, that ones called a VGA port.
    There could be a few more but I’m lazy and point you in the way of it. Monitors
    But that won’t help you use Wow in on both.
    If you are using Nvidia, you should be able to right click the taskbar icon>whatever display you want>Nview Settings>Horizontal (or Vertical but that’s pretty weird) and click the one that is set up how you monitors are.
    For Example M1 is to the left and M2 is on the right, then you would do M1 + M2. Wow can be maximized or full screen.
    Now Google CT-Mod, get the pack with Ct-View port. In-game use this to make which screen you want to have the game and the other bars and stuff.
    Highly suggested to use a bar add-on to move the bars to the other moniter.

    I'll get screens up sometime. Just not now.
    Last edited by clamsd101; 04-09-2008 at 03:51 PM.

    How to: Play WoW with a wiimote
  2. #2
    bevin347's Avatar Member
    Reputation
    3
    Join Date
    Oct 2007
    Posts
    83
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its a lot easier to use a xbox controller, theres also a program out for it

    Welcome To CyberFinder.com

  3. #3
    clamsd101's Avatar Member
    Reputation
    2
    Join Date
    May 2007
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't now but I'm never going to get a X-box. Maybe a PS3 someday, but not a xbox controller. Plus I get to use Wiinstrument

  4. #4
    Kurosan's Avatar Member
    Reputation
    4
    Join Date
    Oct 2007
    Posts
    135
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any way to make it so theres faster mouse movement, nice post btw

  5. #5
    clamsd101's Avatar Member
    Reputation
    2
    Join Date
    May 2007
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah. While in glovepie, Ctrl+F and write this "This will control the mouse speed higher faster lower slower". The higher you set it the faster It will go.

  6. #6
    Kill604's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    73
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I will try this someday :d

  7. #7
    Bowty's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol i've tried and works, thanks :P

  8. #8
    clamsd101's Avatar Member
    Reputation
    2
    Join Date
    May 2007
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It can get really fun. Suggest you use voice command to help with the keys. Also nice on trips with a bluetooth enabled laptop

Similar Threads

  1. [How to] Play WoW with an Proxy
    By Arus in forum World of Warcraft Bots and Programs
    Replies: 19
    Last Post: 05-21-2009, 02:14 PM
  2. Play WoW with your Xbox 360 Controller!
    By jimmbo506 in forum World of Warcraft Bots and Programs
    Replies: 95
    Last Post: 11-19-2007, 04:46 PM
  3. WoWPad - Play WoW with GamePad
    By Nightfel in forum World of Warcraft Bots and Programs
    Replies: 13
    Last Post: 09-03-2007, 02:00 PM
  4. [Program] Play WoW with your GamePad !!! (so much more fun)
    By Flying Piggy in forum World of Warcraft Bots and Programs
    Replies: 24
    Last Post: 02-21-2007, 01:39 PM
  5. Play WoW with Wii Remote!
    By Glynbeard in forum World of Warcraft General
    Replies: 10
    Last Post: 02-07-2007, 08:58 PM
All times are GMT -5. The time now is 03:39 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