• 0

    posted a message on Colleges

    @Molsterr: Go

    I'll check it out thanks. I have more then enough time, if I didn't do college I'd probably just be teaching myself C ++

    Posted in: General Chat
  • 0

    posted a message on Colleges

    Are there any other colleges like Full Sail University(By that I mean, programs with high quality Computer Animation, Game Art, Graphic Design, etc,) in the U.S? I'm finishing up HS this year and really need to find a college, Full Sail is my main goal, but if financial aid can't cover 95% of my finances for it, I am screwed with no college(very poor, poor as in, under $10,000 yearly). :(

    Do any of you know any?

    Posted in: General Chat
  • 0

    posted a message on Drawing (Pictures Thread)

    I'm working on a picture...hopefully it'll be better then my last ones. I'll try and post it soon

    Posted in: Artist Tavern
  • 0

    posted a message on what makes you edit

    @aczchef: Go

    Triggers. Programming excites me. I really don't know much about Galaxy or C +Plus. I asked if someone could make up a TD style trigger for waves. I am like...soaking the information in...I look at an array and it excites me and makes me want to go into java and make something random..

    Posted in: Off-Topic
  • 0

    posted a message on life lesson?

    @Reaper872: Go

    I'm with you man. I try not to hang out with those people just because they are very...depressing and really kill your imagination, etc. Speaking of bullies I don't think its really because there hurt that they bully people but they like attention, and when they're not getting attention, there going to rage at someone and get the hive(Starcraft reference ftw!) stirred up so they get that attention. I'm not denying that they aren't hurt, everyone is to an extent, but it really has a lot more then just being hurt.

    P.S: If you need help perfecting a build in SC2 msg me. I'll help ya.

    Posted in: Off-Topic
  • 0

    posted a message on I just wanted to say...

    Thank you to all of you here at sc2mapster! Very thankful that you guys take time out of your day to answer our newb questions, not many people have time for that...nor do the people who do get thanked enough...

    So thank you!

    Posted in: General Chat
  • 0

    posted a message on Music Composition!

    I don't know if you'd be interested in trying this:

    Posted in: Off-Topic
  • 0

    posted a message on Music Composition!

    Just request something guys, his remixes are amazing. Especially his Tetris Remix along with the Mountain King one. Really good stuff. 5 stars here!

    Posted in: Off-Topic
  • 0

    posted a message on @Mephs angry post in the custom map forum

    Smashcraft is a ton of fun, besides the different heroes I think it lacks replay-ability to an extent, it has some, but it seems like its just missing one little thing...I'm not saying its a bad map, its really fun, but it just needs more replay-ability.

    Concerning the thread, I really like what he said, Blizzard has not really shown any care to us map makers. :(

    Posted in: General Chat
  • 0

    posted a message on Element TD Seeking Video Producer
    Quote from maverck: Go

    @OneTwoSC: Go

    i can claim ownership of multiple catastrophic sized headaches to attest to this fact.

    From watching the video I can claim ownership of multiple catastrophic sized headaches to attest to this fact. Everything I knew nearly exploded at once...The horror! The horror! Make it stop!

    Posted in: Team Recruitment
  • 0

    posted a message on I was kinda bored....so I made this.

    notice I used, "kinda bored." I made this thread a couple days ago...

    http://forums.sc2mapster.com/development/artist-tavern/18292-drawing-pictures-thread/#p19

    I know it's not a super active forum, but there are some great pictures in there that you should check out. xD

    Posted in: Off-Topic
  • 0

    posted a message on sc2mapster online Beta 1: Chat it up

    I wouldn't mind one, sounds interesting enough!

    sent

    Posted in: General Chat
  • 0

    posted a message on Objects in Java, making them work.

    so doing private int newSeconds is wrong? I should be doing:

    protected
      unsigned int newSeconds; 
      unsigned int maxFileSize;
    

    Yeah, that's really off my question, but I just noticed it in the code you wrote.

    Edit: Never mind, I just noticed you wrote that in C ++

    Posted in: General Chat
  • 0

    posted a message on Be apart of sc2mapster online!

    @Molsterr: Go

    Quote:

    "FUMMMMBLLLEEEMOREEEE!"

    - BlueXephos

    Favorite quote ever. You'll guys understand if you watch BlueXephos(Youtube) video series entitled, "The Shadow of Israphel."

    It's like a Minecraft RPG Commentary type.

    Posted in: Off-Topic
  • 0

    posted a message on Objects in Java, making them work.

    I have a couple more questions if anyone is willing. Object Oriented Programming(OOP) makes my head hurt. >.>

    First, I am kind of confused on what class variables are.

    I know they would look something like this:

     static int virusCount = 0;
    

    My first question is, what does static mean? I've been reading in this book and so far it tells me to create something called static int virusCount but does not tell me what static actually means and why I need to put this here. My second question is what does a class Variable do for the program and what is its uses? That may sound a bit redundant, hopefully you are able to understand that second question. >..<

    To add onto that, my book reads: "When you create an object, it has its own version of all variables that are part of the object's class. Each object created from the Virus class of objects has its own version of the newSeconds, maxFileSize and author variables. If you modified one of these variables in an object, it would not affect the same variable in another Virus object."

    If what I understand this correctly, that means that any variables you make in an object, are only for that object and nothing else? Or can they be used for other objects too? Or am I taking this completely the wrong way?

    My second one is probably an easier question to answer. At least from what I can tell and know of objects, but my knowledge is not sufficient enough to answer this myself, sadly. Let me just make a small program here to explain what I mean.

    public class virus {
    public int newSeconds = 86;
    public string  author = "Sam Snett";
    private int maxFileSize = 30000;
        }
    
    }
    

    Now if I wanted to make new object where would I do it? Would I do something like this?

    /*
    *  Basically what I am trying to do is create a program that will set all my files last modified to a number above 60. 
    */
    public void virusInfection() {
    Virus device = new Virus();
    device.newSeconds = 92; 
    }
    

    So in shorter terms, I am trying to create a new object and give it a value, but I don't really know the 'proper' way to create a object in terms of code structuring. I've also made this small program just to kind of familiarize the reader so they understand more of what I am trying to convey then just throwing out 3 lines of code that will probably be a bit harder to understand.

    That's all the questions I have for now...I mean there is more, but I will ask them some other time, maybe, if I don't find it out myself eventually. :)

    Posted in: General Chat
  • To post a comment, please or register a new account.