+ Antworten
Ergebnis 1 bis 3 von 3

Thema: Wiimote für LemmingballZ???

  1. #1
    loozzer befindet sich auf einem aufstrebenden Ast
    Registriert seit
    12.01.2008
    Beiträge
    3

    Wiimote für LemmingballZ???

    Also... bevor man mich noch als webspammer bezeichnet geb ichs gleich zu, einen ähnlichen beitrag hab ich schon in anderen foren geposted... aber ich bin zur zeit besessen...

    Hab per Glovepie meine mote am PC...
    Moorhuhn geht tadellos, FPS so lala...
    Aber bei menem lieblingsspiel LemmingballZ (www.lbz3D.com) hab ich ein problem...
    Man kann da rum dodgen indem man am keyboard die pfeiltasten doppeldrückt.
    Mit meiner Mote klappts nicht, mal ist de totzone zu gross, mal zu klein, nunchuckstick... verwirrt zu sehr... beschleunigung... macht zuviel auf einmal...

    Will doch nur nen doppeldruck.. einen, keine 3 auf einmal

  2. #2
    Gewinner des Ava/Sig Wettbewerbs
    Moderator
    Rubinho wird schon bald berühmt werden Avatar von Rubinho
    Registriert seit
    25.10.2006
    Ort
    SSV Normandy
    Beiträge
    2.086

    Hier mal das Standard-Script für die Wiimote+Classic Controller mit GlovePie.

    Code:
    //This is the setup for A,B,X,Y buttons on you're classic controller.
    //After Key. You're write the Keyboard button you want Like...
    // Key.Enter       = wiimote1.classic.A
    //it can also be a mouse button like...
    //Mouse.LeftButton = WiiMote.Classic.A
    key.               = Wiimote1.Classic.a
    Key.               = Wiimote1.Classic.b
    Key.               = Wiimote1.Classic.x
    Key.               = Wiimote1.Classic.y
    
    //This is the setup for Plus,Minus,Home buttons on youre classic controller.
    //After Key. You're write the Keyboard button you want Like...
    // Key.Esc         = wiimote1.classic.Plus
    //it can also be a mouse button like...
    //Mouse.LeftButton = WiiMote.Classic.Plus
    Key.               = Wiimote1.Classic.plus
    Key.               = Wiimote1.Classic.Minus
    Key.               = Wiimote1.Classic.home
    
    //This is the setup for Up,Down,Right,Left buttons on youre classic controller.
    //After Key. You're write the Keyboard button you want Like...
    // Key.W       = wiimote1.classic.Up
    //it can also be a mouse button like...
    //Mouse.LeftButton = WiiMote.Classic.Up
    Key.               = Wiimote1.Classic.Up
    Key.               = Wiimote1.Classic.Down
    key.               = Wiimote1.Classic.Right
    key.               = Wiimote1.Classic.Left
    
    //This is the setup for Rfull,Lfull,ZR,ZL buttons on you're classic controller.
    //After Key. You're write the Keyboard button you want Like...
    // Key.Enter       = wiimote1.classic.RFull
    //it can also be a mouse button like...
    //Mouse.LeftButton = WiiMote.Classic.RFull
    key.               = Wiimote1.Classic.RFull
    key.               = Wiimote1.Classic.LFull
    key.               = Wiimote1.Classic.ZR
    key.               = Wiimote1.Classic.ZL
    
    //this is the joy pad to you´re the left.
    //just put the key you like to control like...
    //Key.W        = (wiimote.Classic.Joy1y <= -0.5)
    //or
    //key.Up       = (wiimote.Classic.Joy1y <= -0.5)
    
    //up
    Key.             = (Wiimote.Classic.joy1y <= -0.5)
    //down
    Key.           = (Wiimote.Classic.joy1y >=  0.5)
    //left
    Key.           = (Wiimote.Classic.joy1x <= -0.5)
    //right
    Key.          = (Wiimote.Classic.joy1x >=  0.5)
    
    //This is the joy pad to you're right.
    //just put the key you like to control like...
    //Key.W        = (wiimote.Classic.Joy2y <= -0.5)
    //or
    //key.Up       = (wiimote.Classic.Joy2y <= -0.5)
    
    //up
    Key.            = (Wiimote.Classic.joy2y <= -0.5)
    //down
    Key.           = (Wiimote.Classic.joy2y >=  0.5)
    //left
    Key.          = (Wiimote.Classic.joy2x <= -0.5)
    //right
    Key.         = (Wiimote.Classic.joy2x >=  0.5)
    
    Benutze dieses Scipt für allerlei Spiele und funktioniert meistens tadellos.
    Du musst links bei den "Key."s die entsprechenden Tasten der Tastatur eingeben z.b. "Key.A" oder "Key.Enter"

    Einen Standard-Script für Wiimote+Nunchuk habe ich nicht. Kannst aber mal hier nachschauen:
    Klick und Klick.
    Das letztere ist ein Thread mit über 40 Seiten voller Scripts. :eyebrows:

    "Someday, and that day may never come, I may call upon you to do a favor for me. Until that day except this as a gift."

  3. #3
    loozzer befindet sich auf einem aufstrebenden Ast
    Registriert seit
    12.01.2008
    Beiträge
    3

    dank dir...

    aber es geht weniger um das wie skripten, sondern wie den doppeldirectionkeytapper als bewegung auszuführen

    trozdem, danke für die mühe

+ Antworten

Berechtigungen

  • Es ist Ihnen nicht erlaubt, neue Themen zu verfassen.
  • Es ist Ihnen nicht erlaubt, auf Beiträge zu antworten.
  • Es ist Ihnen nicht erlaubt, Anhänge hochzuladen.
  • Es ist Ihnen nicht erlaubt, Ihre Beiträge zu bearbeiten.

SEO by vBSEO 3.5.0 RC1 PL1

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27