Unfortunately..

So I’ve lost the source for Ponify my iPhone, so I can’t really make changes to it anymore, the lag comes from the many pre-loaded gifs of each pony and animation.

At the same time, the MLP game that we’ve been planning for months is turns out to be a copy of Legends Of Equestria. So we’ll drop this project out. As of now, I’m still gonna remain an active brony (Fan) and work on may own game, hopefully put in some MLP references :3
But regardless, I’m pretty busy with O Levels which I’m gonna take next year (About 9 months from now)

ADVENTURE PONIES UPDATE

I think I fixed the fonts. Just a very minor update. I spent my time studying about other Programming Languages soo.
I’m sill not sure how bugged it is. It’s best to have people to not have this font installed.

ADVENTURE PONIES 0.0.2

There, I think I got Pinkie to work as expected (You gotta thank coding things wrongly)

Okay, the Ponies (the Pinkie Pie for this one) is not made by me but StarStep

So far, I don’t think he/she have a blog, just an account but I’ll like it when it’s available hopefully

HOW TO MOVE

Simple. Just use the Arrow Keys as the direction you wanna move and Hold the Up key. Pinkie will be bouncing away. 😀

Also, sorry for the small preview screen. It’s HTML’s fault and that it is possible to play it big on my screen. 😉

Adventure Ponies Update

Well, I could finish this in a week while I get the scoring and the actions to work as expected but nevertheless, I managed to finish all the assets or the GUI or the graphics. I’d just wanna thank StarStep (If you have some website please tell me 🙂 so that I can add it in the game credits).

Here’s another spoilage.

Inb4 reactions.

Ps, StarStep, don’t worry about this image. It’s taken yesterday before I found about the Sprites you gave me 😉

Image

Any ideas to fix this code?

#import
#import
//=>SBScreenflash
#import

%hook SBApplicationIcon
-(void)launch
{
%orig;
{

[[c%(SBScreenFlash)sharedInstance]flash];

}

{

UIAlertView *_alert = [[UIAlertView alloc] init];
[_alert setTitle:@”YOU ARE NOT A POTATO. POTATOES ONLY”];
[_alert setMessage:@”And that the SpringBoard is being hooked. One does not simply launch Applications.”];
[_alert addButtonWithTitle:@”;~;”];
[_alert show];

}

}
%end