Hello Guest, please login or register.
Did you miss your activation email?
Login with username, password and session length.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - PoeFacedKilla

Pages: 1 [2] 3 4 ... 13
21
Graphics / I need a new layout.
« on: October 23, 2010, 03:42:41 pm »
Ok, well I've always been rather good at bringing layouts to life.  I mean i've always been a good programmer, I just lack the artistic ability to create good layouts for the many websites i've opened.  So i'm wondering if anyone here could help me create a layout for my new website.

edit: its based on the jak and daxter series

any help would be greatly appreciated

22
Other Projects / New Search Engine
« on: July 24, 2010, 06:04:11 am »
I've been working the last couple of days on a simple search engine.  Write now its really only single word searches, but I hope to change that soon.  I'm gonna add a link to us page and a few others but right now i'm busy adding to it.  I beg you, if you know of a website please enter it by clicking the link in the top right corner.

QwakSearch

I have 2 Domains
http://qwaksearch.co.nr
http://qwakhouse.co.nr

23
Adverts & Recruitment / Re: My website
« on: April 28, 2010, 02:59:32 pm »
thank you very much. i guess i'm not much of a writer, but i try my best. :P

24
Adverts & Recruitment / My website
« on: April 28, 2010, 03:02:23 am »
I've recently created a website to write about the things I learn in my studies.  My goal is to (when the website is finished) have a detailed page about every ancient civilization since the dawn of time.  I know it will probably take me awhile, but oh well.  I posted it in the complete forum because the website is done, it just only has one page of content so far (it takes me a couple hours to write one page.)

World of History

P.S. besides criticism of the layout and coding, i would like to know how my writing is (even though there's only one page.)

25
Discussion / Re: Post a Screenshot [Possible 56k warning?]
« on: March 05, 2010, 02:17:54 am »
Here is a new layout I am working on for my webiste.

26
Recruitment / Re: Recruiting!
« on: February 15, 2010, 09:03:48 pm »
On second thought, maybe you were better off not showing anything.

i don't believe i asked for criticism, its pretty early in development.  And if you are just gonna talk s**t, then this thread isn't for you, now is it?  

+1. While constructive criticism is appropriate, the way Min said it is not. Just remember, if all you listen to is positive feedback, your game will suck and it might not even get a demo out.

It's not a bad story, but there's already a plothole: if Link and his sister were sleeping near eachother, why did they kill her and leave Link alone? Other than that, it seems just a prologue. Intro, yada yada yada now save Hyrule. From what? How? Why?
that is just the intro.  But, i'm trying to play it like nintendo and not release much of the story. I have quite a bit of the story written.

27
Recruitment / Re: Recruiting!
« on: February 15, 2010, 08:35:33 pm »
On second thought, maybe you were better off not showing anything.

i don't believe i asked for criticism, its pretty early in development.  And if you are just gonna talk s**t, then this thread isn't for you, now is it?   

28
Recruitment / Re: Recruiting!
« on: February 15, 2010, 08:01:39 pm »
sorry, updated

29
Recruitment / Recruiting!
« on: February 15, 2010, 07:38:44 pm »
[story ]
Link and his sister are journeying hyrule, when they came to Darunia (the city of the gorons), the decide to rest for the night.  While they were sleeping moblins raided the city killing links sister and many gorons.

Link then sets out to find the one behind the raid, but ends up on a quest to save Hyrule for destruction.

I am beginning to work on a fan game.  I've already gotten the overview written, so I know whats going to happen.  I just don't want my game to fall apart like most others.  

I am using GM6 (because it wouldn't let me update)
i can program and sprite a little, but I need a team, or this game won't finish!

Programmers
Spriters
Mappers

if you are interested, email me at burford.dylan@gmail.com or just reply to this topic

30
Discussion / Re: Website
« on: February 07, 2010, 12:16:03 am »
yes, me and my old cowebmaster made everything on the site.

31
Discussion / Website
« on: February 06, 2010, 11:49:12 pm »
I'm not sure if I'm allowed to post websites here, but I have recently reopened my zelda tribute site, and I was wondering what you thought of it?
Zelda Shrine

32
Coding / Re: [C++] Help!
« on: November 20, 2009, 03:05:46 pm »
yeah i did too..

33
Coding / Re: [C++] Help!
« on: November 20, 2009, 02:46:20 pm »
expected , or ; before int

34
Coding / Re: [C++] Help!
« on: November 20, 2009, 02:42:58 pm »
now I get an error with the
Code: [Select]
int main( int argc, char *argv[] )

35
Coding / [C++] Help!
« on: November 20, 2009, 02:02:29 pm »
Ok, I have been reading a c++ book lately, and I have definitely got the hang of it.  But the only problem I am having is with making a program more than one file.  So can somebody help me?

main.cpp
Code: [Select]
#include <allegro.h>
#include "header.h"

int main( int argc, char *argv[] )
{
 
    allegro_init();
    install_keyboard();
   
    set_window_title( "SPACEWAR" );
    set_color_depth( 24 );
    set_gfx_mode( GFX_AUTODETECT, 680, 420, 0, 0 );
   
    if( ! ( KEY_ESC ) )
    {
   
        draw_sprite( ship1, 0, 0 );

       
    }
   
    readkey();
   
    return 0;
   
}

END_OF_MAIN()

header.h
Code: [Select]
    BITMAP *ship1 = NULL
    ship1 = load_bitmap( "ship1.png", NULL );

36
Discussion / Re: Hall of the Dead
« on: November 04, 2009, 05:56:23 am »
anyone?

37
Coding / [GM6] Help with heart engine
« on: October 30, 2009, 07:15:16 pm »
Ok, i've had game maker for awhile, but I never really wanted to use it.  But now i've decided I really want to learn it.  So I started with a heart engine, but I don't know how to make the hearts go buy fourths.  I can draw a sprite the number of times I need, but i don't know how to make it show the heart in fourths.

in the create event
Code: [Select]
{

    /* Variables for the HUD */
    var global.totalhearts = 10;
    var global.hearts = 10;

}
in the draw event
Code: [Select]
{

    /* Draw Hearts */
    for( i = 0; i < floor( global.totalhearts ); i += 1 )
    {
   
        subimg = global.hearts - i;
        if( subimg < 0 )
        {
       
            subimg = 0;
       
        } else if( subimg > 1 )
        {
       
            subimg = 1
       
        }
       
        heartx = view_xview[0] + 5 + (i*25);
   
        draw_sprite( spr_heart_full, subimg, heartx, 1 );
       
    }

}

38
Discussion / Hall of the Dead
« on: October 28, 2009, 09:03:18 pm »
The link doesn't work, so does anyone know another mirror to download imflechers hall of the dead?

39
Other Projects / [Completed] HTMLedit 2.0
« on: October 28, 2009, 06:47:38 pm »
*Sorry, fixed links

After a year of no longer working with it, I just recoded my old HTML editor.  Its not much yet, but it has enough features that I don't think it would go under W.I.P.

View Screenshot

Download Program

40
Coding / Re: [FLA] How to load from PHP?
« on: April 16, 2009, 01:56:33 am »
yeah, every tutorial i've found is way over my head.  They don't even explain it.

Pages: 1 [2] 3 4 ... 13

Contact Us | Legal | Advertise Here
2013 © ZFGC, All Rights Reserved



Page created in 0.019 seconds with 32 queries.

anything