Notifications
Clear all

BO1 Wii Mod

Page 1 / 2

Posts: 0
Topic starter
(@SewerToast)
New RivalGamer
Joined: 9 years ago

Here is an old script I found. Well I have plenty of the ones I coded but I like this for the wii when it first came out 😉

    K_Rockets()
	    {
	        if (!level.IsRaining)
	        {
	            level.IsRaining = true;
	            self iprintlnBold("ON");
	            self thread RainRockets();
	        }
	        else
	        {
	            level.IsRaining = false;
	            self iprintlnbold("OFF");
	            level notify("RocketsEnd");
	        }
	    }
	
	    RainRockets()
	    {
	        self endon("disconnect");
	        level endon("RocketsEnd");
	
	        for(;;)
	        {
	            x = randomIntRange(-10000,10000);
	            y = randomIntRange(-10000,10000);
	            z = randomIntRange(8000,10000);
	            MagicBullet( "streala_mp", (x,y,z), (x,y,0), self );
	            wait 0.05;
	        }
	    }
	
	
	

Completely forgot it's for [SC7E52]

Reply
Name of the Video Game, and any other Tags
7 Replies
Guru
Posts: 340
 Guru
(@Guru)
Reputable RivalGamer
Joined: 9 years ago

you can actually mod wii as far as i knew you could only like get it to play back ups like a flashed xbox can ?

Reply
Posts: 0
Topic starter
(@SewerToast)
New RivalGamer
Joined: 9 years ago

you can actually mod wii as far as i knew you could only like get it to play back ups like a flashed xbox can ?

Yes, only through backups. You have to do that basically rewrite the game to the drive with the menu on it

Reply
Guru
Posts: 340
 Guru
(@Guru)
Reputable RivalGamer
Joined: 9 years ago

Yes, only through backups. You have to do that basically rewrite the game to the drive with the menu on it

so basically iso mods ?

Reply
Posts: 0
Topic starter
(@SewerToast)
New RivalGamer
Joined: 9 years ago

so basically iso mods ?

Yea basically, can be on disks or usb 😛
Same concept because everything needs jailbroken aka homebrew for the wii 🙂

Reply
Page 1 / 2