• Steam recently changed the default privacy settings for all users. This may impact tracking. Ensure your profile has the correct settings by following the guide on our forums.

Just made a hello World for the Wii

Darkchild

The Doctor
TV2009102115374400.png

using MLIB

If you want to try it on dolphin, the Wii Emu, here is the elf/dol files : View attachment 8453

Special MP3 song playing ;D See if you recognize it
 

angelsniper45

New Member
Awsome man! I got ur msn but I wasnt at my comp until a couple hours later.

Can you PM me the SRC? Ive always wanted to get into wii devving.

Also, does dolphin work on win 7?
 

Darkchild

The Doctor
Awsome man! I got ur msn but I wasnt at my comp until a couple hours later.

Can you PM me the SRC? Ive always wanted to get into wii devving.

Also, does dolphin work on win 7?

to be honest, this ELF doesn't work on dolphin, though if you have a real wii, I can tell you of a easy way to send homebrew through wireless to the homebrew channel. And teach you how to code :D

btw:

Code:
/*
     DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
                    Version 2, December 2004

 Copyright (C) 2004 Sam Hocevar
  14 rue de Plaisance, 75014 Paris, France
 Everyone is permitted to copy and distribute verbatim or modified
 copies of this license document, and changing it is allowed as long
 as the name is changed.

            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. You just DO WHAT THE FUCK YOU WANT TO. 

*/

#include <mllib.h><mllib.h>(MLlib.h)
#include "font_png.h"
#include "wii_png.h"
#include "intro_mp3.h"

int main(int argc, char **argv) 
{
    ML_Init();
    ML_InitMP3();
    
    
    
    
    ML_Image fontData;
    ML_Image Imagedata;
    ML_Sprite Image;
    ML_Sprite font;
    ML_LoadSpriteFromBuffer(&Imagedata, &Image, wii_png, 100,100);
    ML_LoadSpriteFromBuffer(&fontData, &font, font_png, 100, 100);
    ML_InitTile(&font, 8, 8);    
    
    
    while(1)
    {
        if(Wiimote[0].Held.Home) {ML_DeleteImage(&fontData); ML_DeleteImage(&Imagedata); ML_Exit(); }
        ML_SetSpriteScale(&font, 2, 2);
        ML_DrawSpriteText(&font, 100, 350, "Hello ");
        ML_SetSpriteScale(&font, 1, 1);
        ML_DrawSpriteText(&font, 550,400, "By Madcat!");
        ML_DrawSprite(&Image);
        if (!ML_IsPlayingMP3()) { ML_PlayMP3FromBuffer(intro_mp3, intro_mp3_size); }
        ML_Refresh();
    } 
    
    return 0;
}

[B]<mllib.h></mllib.h>[/B]
</mllib.h></mllib.h><mllib.h>
<mllib.h><mllib.h>
font.pngwii.pngView attachment intro.mp3 (The included files :D)

if you really want to program though, open the link on the original post, there's instructions there ;D</mllib.h></mllib.h></mllib.h>
 

angelsniper45

New Member
Awsome :D

I do have a wii, but its a family thing. and my parents would be PISSED if they saw i hacked it. So i might as well try modifing the elf file and running dolphin :)
 

angelsniper45

New Member
guess ill take a look into it :D

nobodys updated it so im pretty sure its the original firmware :D
 

angelsniper45

New Member
awsome :D

can you pm me a tut?
 
Top