November 19th, 2008
Well I finally upgraded wordpress. And in good news I found an artist, his name is Andy and he’s an Aussie that likes drinking, (he has to be good!). Well my current game with him is semi underwraps, but this one is so far in that I cannot become vaporware!
…I promise.
Posted in Game Making | No Comments »
August 8th, 2008
Okay, I havent been very active. First it was vacation, then lazyness, then the WoW addiction, then another vacation, but now I have thing balanced out. I have discovered the power of linux (but have yet to try it :P) Bye bye now.
Posted in Uncategorized | No Comments »
June 6th, 2008
Ok, you maybe wondering “What is with the In Action script crap?”. Well My goal is to make a complete object class of my entire life and every aspect of it. With this code i could then hopefully make something useful!
Posted in ...In Actionscript! | No Comments »
June 6th, 2008
playSong():Void {
chooseSong();
var songNotes = getNotes(songChoice);
for(i=0;i
if(Math.random()*100>_root.player.skillLevel) {
wellPlayedNotes.push(songNotes[i]);
}
}
strum (wellPlayedNotes);
}
chooseSong():String {
var song:Number=Math.round(Math.random()*(knownSongs.length()-1));
var songChoice:String=knownSongs[song];
return songChoice;
}
playGuitar():Void {
if (hasGuitar==false || hasAmp==false) {
stealGuitar(guitarWorld);
stealAmp(guitarWorld);
}
else if (hasGuitar==true && hasAmp==true) {
playSong();
}
}
player.onEnterFrame=function (){
if (canPlayGuitar==true && wantsToPlay==true)
{
playGuitar();
}
}
Posted in ...In Actionscript! | No Comments »
June 6th, 2008
I had to make this…
function liveLife():Void {
doVariousMentalTasks();
complainAboutPeople(_root.unitedStates.CurrentPresident,
_parent.Friends,_parent.Girlfriend);
eat(_parent.avalible.Food);
profit(_parent.currentJob,_root.interwebs.finishedFlashGames);
}
function stinkLikeACorpse():Void {
rot();
dontMove();
}
player.onEnterFrame = function() {
if (isPlayerAlive) {
liveLife();
} else {
stinkLikeACorpse();
}
while (true) {
beStuckInAnInfiniteLoop();
}
};
Posted in ...In Actionscript! | 1 Comment »
May 31st, 2008
Well, I’m here. My game I’m working on (AgentMAN) is getting progress. I hope to finish in a week now that school is over! I’ll post some images to preview once mission one is done. Also if any sponsors are here and interested check out Cloud_9ine on flash game license.
Posted in AgentMAN, Game Making | No Comments »