• 0

    posted a message on Bad video card drivers?
    Didn't work......
    Posted in: Legacy Support
  • 0

    posted a message on Bad video card drivers?
    I hope someone can help me.
    This shows up whenever I try to open Minecraft:


    Bad video card drivers!
    -----------------------

    Minecraft was unable to start because it failed to find an accelerated OpenGL mode.
    This can usually be fixed by updating the video card drivers.



    --- BEGIN ERROR REPORT 7fe0271 --------
    Generated 3/1/12 10:30 PM

    Minecraft: Minecraft 1.2.2
    OS: Windows NT (unknown) (x86) version 6.2
    Java: 1.6.0_31, Sun Microsystems Inc.
    VM: Java HotSpot(TM) Client VM (mixed mode), Sun Microsystems Inc.
    LWJGL: 2.4.2
    [failed to get system properties (java.lang.NullPointerException)]

    org.lwjgl.LWJGLException: Pixel format not accelerated
    at org.lwjgl.opengl.WindowsPeerInfo.nChoosePixelFormat(Native Method)
    at org.lwjgl.opengl.WindowsPeerInfo.choosePixelFormat(WindowsPeerInfo.java:52)
    at org.lwjgl.opengl.WindowsDisplay.createWindow(WindowsDisplay.java:185)
    at org.lwjgl.opengl.Display.createWindow(Display.java:311)
    at org.lwjgl.opengl.Display.create(Display.java:856)
    at org.lwjgl.opengl.Display.create(Display.java:784)
    at org.lwjgl.opengl.Display.create(Display.java:765)
    at net.minecraft.client.Minecraft.a(SourceFile:230)
    at net.minecraft.client.Minecraft.run(SourceFile:650)
    at java.lang.Thread.run(Unknown Source)
    --- END ERROR REPORT 67f19f3a ----------


    I have updated my drivers, and I know my card is supported because it worked before I installed Windows 8 Consumer Preview. What can I do?
    Posted in: Legacy Support
  • 0

    posted a message on Minecraft with a Wiimote + Nunchuck
    Could you?
    I don't have a twitter.
    Posted in: Discussion
  • 0

    posted a message on Minecraft with a Wiimote + Nunchuck
    :iapprove:
    Posted in: Discussion
  • 0

    posted a message on Minecraft with a Wiimote + Nunchuck
    .
    Posted in: Discussion
  • 0

    posted a message on [!READ THE OP!] Buying Minecraft Gift Codes for Others!
    I live in costa rica and can't buy anything online :sad.gif:
    Could I please?
    Posted in: Discussion
  • 0

    posted a message on Minecraft with a Wiimote + Nunchuck
    Quote from elaxter

    Where do I put the script?

    GlovePIE.
    Posted in: Discussion
  • 0

    posted a message on Minecraft with a Wiimote + Nunchuck
    Damn, I'm currently moving and my wiimotes are all packed up... Won't be visiting it for a while
    Posted in: Discussion
  • 0

    posted a message on Minecraft with a Wiimote + Nunchuck
    .
    Posted in: Discussion
  • 0

    posted a message on Minecraft with a Wiimote + Nunchuck
    It's simple
    You pair your wiimote with your computer via bluetooth. (Some computers have it built in, you can get a bluetooth dongle for cheap.) I use software that cam with my bluetooth dongle which you can find here : Bluesoleil with this you basically just pair it. Then you right click on the wiimote which appears as something like NINTENDO-RVL-CNT and select connect Human Interface Device.
    Then run the script in GlovePIE.
    For the IR one you need a sensor bar. You can buy wireless ones that run on batteries, but what I do is I pair my wiimote with my computer, then I turn on my wii so my sensor bar is activated, and put it in front of my computer screen.
    The Wiimote plus one doesn't need a sensor bar. When you hold down the B button your movements control the mouse movement.
    I prefer the sensor bar one.
    Hope I helped!
    Posted in: Discussion
  • 0

    posted a message on Minecraft with a Wiimote + Nunchuck
    I haven't really used this that much anymore, I'll be sure to revisit it tomorrow, seeing as how it's really late were I live...
    On that topic, does anyone know of a script to play oblivion or skyrim with a wiimote?
    Posted in: Discussion
  • 0

    posted a message on Minecraft with a Wiimote + Nunchuck
    In case you hadn't seen it:
    I just simplified and optimized a few things here:
    //Turn the sensitivity down!!
    // Z jumps C crouches
    // A mines B Places
    // D-pad picks block Up is 1 Down is 9
    // 1 Drops the block 2 Chats
    // Home Pauses Minus is Inventory
    WASD = nunchuck1.Joy
    Space = nunchuck1.Z
    LeftShift = nunchuck1.C
    I = wiimote1.Minus
    ESC = wiimote1.Home
    T = wiimote1.Two
    Q = wiimote1.One
    One = Wiimote1.Up
    Nine = Wiimote1.Down
    Mouse.WheelUp = Wiimote1.Left
    Mouse.WheelDown = Wiimote1.Right
    mouse.RightButton = wiimote1.B
    mouse.LeftButton = wiimote1.A
    mouse.RightButton = wiimote1.Plus
    
    var.Speed = 75   // 0 to 100
    
    PIE.FrameRate = 100hz
    if wiimote.PointerVisible but not var.PointerBump then
      mouse.x = wiimote.PointerX
      mouse.y = wiimote.PointerY
    end if
    Posted in: Discussion
  • 0

    posted a message on Minecraft with a Wiimote + Nunchuck
    bump
    Posted in: Discussion
  • 0

    posted a message on Minecraft with a Wiimote + Nunchuck
    Quote from DuncanTheWealthy

    Finally, a use for those odd white electronic things in my basement!

    Yeah, I must admit my wiimotes were gathering dust xD
    Posted in: Discussion
  • 0

    posted a message on Minecraft with a Wiimote + Nunchuck
    Quote from SuperLlama

    I've been using GlovePIE for a few days now and I've found that using a delta interface with a hold button sometimes allows better aiming-- I have a script that plays Morrowind and I use the following for aiming:

    if !Wiimote.A then
    Mouse.DirectInputX += Smooth(Delta(Wiimote.PointerX),5)*Screen.Width pixels
    Mouse.DirectInputY += Smooth(Delta(Wiimote.PointerY),5)*Screen.Height pixels
    endif

    It allows a 1:1 relationship between movement and aim, and you can hold the A button to recenter the wiimote when your aim is too far from the sensor bar. The downside is that when you open your inventory, it doesn't always point to the same spot that the wii pointer would be. This doesn't really matter too much though, I just like the fact that it doesn't require constant adjustment to keep your view from spinning out of control.

    Nice script though, I didn't know you could use "but not" instead of "and not", that's pretty cool. GlovePIE never ceases to amaze me, lol. I was going to make my own Minecraft script in a day or so, probably with optional motion controls for mining and placing just for fun, lol.

    Haha like swinging the wiimote to swing your pickaxe? Maybe I'll try that. :biggrin.gif:
    Posted in: Discussion
  • To post a comment, please .