Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

guzmanm

Members
  • Posts

    1037
  • Joined

  • Last visited

    Never

Posts posted by guzmanm

  1. Well, if you're using a webbrowser control, you can use this code to open a website with it:

    ```
    MyWebBrowser.Navigate("http://www.yourwebsite.com")
    ```
  2. I'm confused. Are you saying you want to open URLs in the web browser control?

    If so, you can do this by letting the user input a link into a textbox and using the following code:

    ```
    MyWebBrowser.Navigate(TextBox1.Text)

    ```
    Replacing names accordingly, of course.

    More information: [http://www.vbtutor.net/index.php/visual-basic-2010-lesson-19/](http://www.vbtutor.net/index.php/visual-basic-2010-lesson-19/)
  3. > Just as I expected, you don't even have anything to prevent SQLi, be happy I didn't drop your Tables.
    >
    > ```
    >
    > mysql_query("INSERT INTO Status(Username,Post) VALUES('$username','$post')");
    > ```
    > Line unprotected.

    lelleleleleel u haxor

    Nice job criticizing and stuff, tho. It's obviously noticeable how knowledgeable you're about this topic :> respect+

    Btw, website is gone bai bai.
  4.  Lellelelelelel.

    > -[1.1]How to brainstorm
    >
    > If you have ever brainstormed in school or at work, this will be easy, if not, brainstorming is simply writing down everything that comes to mind, you might even be sitting there, writing down works you brainstorm, and suddenly you feel hungry, so you write down food, and from there you write hamburger, and then you would feel you need a glass of coke with that, and some fries, and suddenly, you can with your brainstorm, create your games story and other ideas for it, such as a hamburger trying to save the **glass of come from the evil fries.**

    I'm not sure if there's an error there, but I just wanted to point that out… 'Cause I really don't get what does it means. :P

    > -[1.2]What resources you need
    >
    > If 2D cuts it for you, there's a lot of engines to choose from that all does a decent job for being (for the most part)free, and open source(A few exclusions), for example, if you want a 2D sidescroller game, I know there's an edited Eclipse engine that has that installed, you just have to search for it. There's a lot of different ones, if the current one provided on this site is good enough for you(Currently EO 4.2.1), then go for it, but if you feel something isn't right, you should consider an open source alternative, to enable edits to it. If you can change your engine to work the way you want, you can fullfill **your idea you had earlier**.

    Again, not sure. Just pointing it out.

    > [2.0]Sketching a game
    >
    > If you followed the first step, which I hope you did, you should have a general idea of how the story of the game goes, and how it will be played out, this is where you write down what features you will be needing to ill out that story, such as fishing, mining, crafting, fighting, raiding, PvP, things to do beside following the story. You also fill in minor details about your story here, names, locations, dates, how, and why. You should draw a world map of your world, a personal one to help you create an idea of the story you are writing, but you might want to create a more detailed one later in case you want someone else to create **the world together or for you.**

    Yet again.

    > -[2.1]Main features
    >
    > Think of the main features of the game, what does it include**s**, **w**hat makes the game? Crafting, Battles, Party system, PvP, pets, Swimming, just to name a few, these are what makes you**r** game, this is what will fill out and become your tools for your game. It's good that you do not make to**o** many features, there's an important thing to know, and that is that the more things there is to a game, the more likely there is that it will be bad, to**o** many features clutters the game, but to**o** little creates no gameplay, it's a hard task to keep a balance, but it is your job as the main producer/developer/whatever to uphold that balance.

    Few errors here and there.

    > -[2.2]Minor features
    >
    > Things that players generally do not notice unless they know the actual base engine, such as rebindable keybindings with dragable spells and items onto those skillbars, or AoE abilities, things that not always **are** obvious, are minor features. They're usually quality of life things, such as being able to skip a cutscene, if you have these, or emoticons if you want that. They're generally things you come up with over time, so it's not important to have a million of these already.

    The over use of commas is somewhat annoying, some are needed here and there, some are not.

    My opinion? So far, so good. For a second I felt as if I was reading a game programming book! :o Basically, sounds like it will be a very helpful guide in the future. Keep it up.
  5. Sounds amazing. You could also add in some instruments to make it even more jolly. It might have it flaws and what not, but I was not able to spot any. Great work, either ways~
  6. > Thanks for the info. I'm not really a pro at vb6, could you tell me the 'refresh rate'(I know it's wrong) of the Loop ?

    Glad to help!

    If you're familiar with games, I'm pretty sure you've heard the term Frame rate or FPS before. If you have not, you can check it out: [here.](http://en.wikipedia.org/wiki/Frame_rate)

    Usually, a game loop is run 30 or 60 times every second, but with 2D games, 30 is about enough (although 60 would look even better). The loops completed per second is what we know as frames per second.

    > Are you obligated to use the Ticks thing ?

    No, but is by far the best method I know to date on VB6\. I used to use Second(Now) and Sleep, but it isn't as good as GetTickCount().
  7. Well-programmed games tend to use game loops, which is the fastest and most accurate way to tell the game what to do in every loop. Unlike loops, timers are less accurate and less effective when it comes to game programming.

    Using timers is just a vague attempt at replicating game loops. In less-demanding game like ours(Yours and mine), the use of timers instead of a game loop doesn't really affects performance what-so-ever, but apparently the judge was expecting a very complex tree of code(yet effective) for a easy and straight-forward game. Fair enough.

    Here's an article in wikipedia about game loops:

    > The central component of any game, from a programming standpoint, is the game loop. The game loop allows the game to run smoothly regardless of a user's input or lack thereof.
    >
    > Most traditional software programs respond to user input and do nothing without it. For example, a word processor formats words and text as a user types. If the user doesn't type anything, the word processor does nothing. Some functions may take a long time to complete, but all are initiated by a user telling the program to do something.
    >
    > Games, on the other hand, must continue to operate regardless of a user's input. The game loop allows this. A highly simplified game loop, in pseudocode, might look something like this:
    >
    > while( user doesn't exit )
    >
    > check for user input
    >
    > run AI
    >
    > move enemies
    >
    > resolve collisions
    >
    > draw graphics
    >
    > play sounds
    >
    > end while
    >
    > The game loop may be refined and modified as game development progresses, but most games are based on this basic idea.
    >
    > Game loops differ depending on the platform they are developed for. For example, games written for DOS and most consoles can dominate and exploit available processing resources without restraint. However, game for a modern PC operating system such as Microsoft Windows must operate within the constraints of the process scheduler. Some modern games run multiple threads so that, for example, the computation of character AI can be decoupled from the generation of smooth motion within the game. This has the disadvantage of (slightly) increased overhead, but the game may run more smoothly and efficiently on hyper-threading or multicore processors and on multiprocessor platforms. With the computer industry's focus on CPUs with more cores that can execute more threads, this is becoming increasingly important. Consoles like the Xbox 360 and PlayStation 3 already have more than one core per processor, and execute more than one thread per core.

    Code nesting refers to the organization of your code.

    Spaghetti code (Or just very unorganized):

    ```

    10 i = 0

    20 i = i + 1

    30 PRINT i; " squared = "; i * i

    40 IF i >= 10 THEN GOTO 60

    50 GOTO 20

    60 PRINT "Program Completed."

    70 END

    ```

    Structured code:

    ```

    10 FOR i = 1 TO 10

    20 PRINT i; " squared = "; i * i

    30 NEXT i

    40 PRINT "Program Completed."

    50 END

    ```
  8. > I found out about this contest just two days before the originally said closing date, and I find it now that its been pushed back? ![:(](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/sad.png) I could have entered if I knew I had more time.

    If you put me in 3rd place, I'll put you in a graveyard. ![:angry:](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/angry.png)

    Okay, bad joke, xd.

    > If it's in VB6 (?), throw it up.

    I think he hasn't even started coding it, so…
  9. > It was Devox, but just a name change. ![:P](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/tongue.png)
    >
    > We couldn't get in contact with ya for graphics.

    Sorry for that. When I worked with John, I never felt we were doing progress. Never. I always threw some art at him, he commented on it and I continued working on more or fixing previous work. Never saw some progress code-wise, thought. Didn't saw my graphics being used as well. Actually, I didn't even saw placeholder art. Might have heard him presuming how great Amori was going to be, but nothing more. That kind of let me down, you know?
  10. > Who's miguel?

    That would be me, good sir.

    > Good friend. Did graphics for Devox Studios when we had that up.

    Yeah ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/smile.png). I saw John and Landon under the name of Cracked Pixels not so long ago. Not sure what was that, thought.
  11. > I already stated I'm not judging them unless they were uploaded on Eclipse's filehost.
    >
    > Two people uploaded them to filehosts where I have to wait, and one was uploaded to one where I needed to register.

    Could have mentioned that before.

    Here, I bothered to place all the entries in one single folder:

    [Contest Entries as of Jan 12, 2013](http://www.mediafire.com/?x7ibx0u9d3xta5t)

    Why I didn't used Eclipse's File Host? 'Cause for some reason, when it finished uploading the file, it ended up with a "File type is not supported" error. I'm guessing that the file's size is a little bit larger than what's allowed.

    > What's the problem with uploading into other filehost servers ? O.o
    >
    > Here's the link…
    >
    > [http://www.freemmorp…95eec972eb0.rar](http://www.freemmorpgmaker.com/files/imagehost/pics/9b17d6f93382a7bae41c795eec972eb0.rar)

    Some filehosts force you to wait or register to download a file. These kind of filehosts are simple annoying…

    But, I noticed you used mediafire... Not sure why he didn't reviewed your entry... Could have missed it by accident.
×
×
  • Create New...