Computer-Turret's avatar

Computer-Turret

CT
44 Watchers216 Deviations
30.6K
Pageviews
See All
MKmakaron
ZalgoSoulReaper
Foxy-Soul
FantasyYume
ThirdAwakening
YutosOrangeLounge
capybaraluver
Antun01
wraithit
Laydii
Sonic-killers
Ninjapear
madspartan013
FindChaos
X-Cross
diogoshx
beanmiester
Jay-Han
RocStar009
isibis7
Amphibi4n
frozenhaddock
SamKalensky
KoalaFun
MikeyMike01
wonderwhy-ER
akwamenti
  • July 7, 1985
  • Canada
  • Deviant for 17 years
  • He / Him
Badges
Super Llama: Llamas are awesome! (44)
My Bio
Favourite genre of music: Rock/Alternative Rock/Metal
Favourite photographer: Vagrant
Operating System: Windows Vista
MP3 player of choice: SanDisk e280 8 GB
Personal Quote: But it's only the weak. They lack the passion to prevail. But not us, only the weak.

Favourite Movies
n/a
Favourite Gaming Platform
PlayStation (2,3)
Tools of the Trade
Flash Game Programmer (AS 1,2,3), Java, PhotoShop, CSS, HTML, PHP, MySQL
Other Interests
Flash,PhotoShop,Diving,Computers

Goodbye DA?

0 min read
Well not really but I wont be submitting anything new here most likely. Been working on my site, making it more into an electronic portfolio allowing me to easily add new things to do it much like DA allows. Dynamically! I'm also on twitter now... http://twitter.com/ShrikeGames if you want to follow me in my progress. On top of all this I will now be making at least one thing every week! Every Friday I will submit something new from Flash onto my website http://www.ShrikeGames.com so do check it out and follow me on twitter. I'll still check out DA, no worries about that but new content will go to my site. I'm thinking an AS3 RPG tutorial
Join the community to add your comment. Already a deviant? Log In
Java is so much like Flash that I had a 100% in Computer Programming class going into the exam (done exam haven't gotten mark back yet). Java seems rather pointless though so I've returned to Flash AS3! So I was playing around with trying to come up with my own character to focus a game around (claw shot engine lol, buggy load of crap) but then remembered SpaceMan Mook (reminds me of SpaceMan Spiff from Calvin and Hobbes lol) and decided that I simply had not done him justice. Even though I have an English exam tomorrow and a calculus exam on Friday I'm working on SpaceMan Mook >.> Plans for a lot of different enemies already in my head and
Join the community to add your comment. Already a deviant? Log In
It's been over 2 months since I've made a journal entry but I've been doing a lot of things. Flash has kind of been put on hold as I learn HTML (lol stupidly easy) and css (still easy but makes HTML much more useful). I'll be applying some of it to my site ShrikeGames (http://shrikegames.com/) Will also be learning Java at some point which could turn to be interesting. I was contemplating doing a brick breaker game again because the one I made one however many years back was so good except for hittest flaw that ruined the entire thing making it unshowable. I've come a long way from there and think it will work out wonderfully this time aroun
Join the community to add your comment. Already a deviant? Log In

Profile Comments 120

Join the community to add your comment. Already a deviant? Log In
It sure would nice nice if we could actually remove the constant spam from bots...
Dude, you're one of the most epic people I've ever seen on dA.
cool flash you made
Hey, I know you havent submitted anything recently but you have some really good flash material and tuts. I was wondering if you knew how to do a command like walking up to something and talking to it? By like pressiing A or something.
Thanks in advance.
There are a bunch of ways to do it. You can make sure the hero/player is within a certain distance of the object AND press "A" for something to happen (IE: show some text describing the object, or a panel opening chat options with an NPC, it's all up to you).

To check if you are within the set distance you could use hittest or simply compare the X,Y coords of both.
EX: In your event listener for a key press (if using AS2/3 or just your onPress or whatever ever AS1 uses, it's old and I forget exactly)

/*make sure hero's x and y values are between the objects x and y values plus or minus 50 pixels, can change value to anything. Must also be pressing the A key.*/
if(hero.x>object.x-50 & hero.x<object.x+50 && hero.y>object.y-50 && hero.y<object.y+50 && e.keyCode==64){
/*just an example of displaying a description (showDescription is a dynamic textbox on the stage) returned from a getDescription method in the object's class, you'd obv not do this if you aren't familiar with object orient programming but the idea is the same*/
showDescription.text=object.getDescription();
}

I could make an example to demonstrate further if needed.
Wow, you sure know your stuff! An example would be awesome but if youre to busy or whatever ill live without one. :)
Thanks!