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.

Topics - PoeFacedKilla

Pages: [1] 2 3 4
1
Other Projects / Looking for website feedback
« on: July 01, 2014, 03:16:17 pm »
i've been writing a website for awhile now, mostly just the backend php stuff but now that I finally have a stable release I wanna know everything thats wrong with it so that I know where to begin fixing. Please any critique on design or implementation or programming reply here, there, or email me.

The point of the website is to be a self creating forum, people's discussions create the forums not some admin so there is only threads the community wishes to discuss

All help and feedback greatly appreciated.

http://indyboard.co

2
Zelda Projects / The Original Zelda Shrine (v1.0 Final Beta)
« on: May 18, 2014, 09:57:40 pm »

The Original Zelda Shrine
Current Release (1.0 BETA "Final")


---

In 1999, I began a news group called ZeldaFans383.  It grew rather rapidly and I was forced to move to tripod.com, there I began to use their site builder to make my first website.  While surfing the net one day in '01, I came across a website by a Swedish man named Link to the Past Shrine.  I sent him an email requesting affiliation and he sent me back a simple and polite no.

This was because my website was made by a site builder, and he looked down on this.  He turned my website down, despite getting as many hits as his and sent me a link to w3schools.com; 3 years later I refound this website I my zelda383.com became one their closest affiliates.  We began to correspond and over the next few years through the magic of PHP4 Zelda Shrine was born.  Zelda Shrine became one of the largest zelda fan website on the net; i remember at one time getting 100 unique hits an hour.

We build an image gallery, a forum, and a system designed to allow for the care and adoption of subrosians where you can feed them, give them tattoos, and change their color.  In 2006, Carl graduated from college and moved on.  I was only 17 at this time and just a year and a half later, after I rewrote the website with an even newer layout and completely new systems my server crashed and at that time I lacked the knowledge to rebuild the website.

Now days, 7 years later;  I have wrote many websites and moved to lower level linux programming and so I have quite a few servers and I came across a couple weeks ago an archive of the website from the the week Carl left.  I have been rewriting these systems and a have the image gallery complete, the subrosian system working and am working on a forum rewrite.  All old content (up to twilight princess) is up, and I am just trying to modernize the website now.

I've gone with what we called the "Final" layout design for this V1.0 (despite the fact that it is technically the 11th version of the website and their was one after it that I no longer have the source to) so that is what it will be called, I will be redesigning the layout over half a year or so and eventually reach a v2.0.  I'm going for a large repository of zelda information backed by a contributing community.  And the custom CMS I am now standardizing to a piece of software i'm calling zshrineCMS and it may one day be open source.

---

The Original Zelda Shrine - v1.0 Final (BETA) | ZeldaShrine.com

v1.0 Final BETA:

Purpose:
   Get old website ready for re-release as modern website.  Update PHP4 to PHP5 and bring all code up to modern standards.

1. Bring HTML/CSS up to latest HTML4 [60%]
2. Rewrite news system [80%]
4. Rewrite image gallery
5. Update user system
6. Layout Updates

v1.1 Final To Do List:
Purpose:
   Redo user and content systems to allow members to contribute to the website and allow room for growth with a more updated and DICKBUTT-style layout.

1. Forum Rewrite
2. Content System Overhall
3. Development of RSS Feed System
4. Rewrite of User System
5. Layout Updates

3
Coding / Small PHP bug with big error.
« on: February 27, 2014, 02:31:42 am »
Ok so i've got to websites running side by side and am trying to build a master login but its giving me a blank screen on one site (errors turned on) but works perfectly on the other.

Here are the two files that are all that is on one site that errors out, but when put atop the code of another works perfectly:

indy.init.php
Code: [Select]
<?php

session_start(); 
date_default_timezone_set("America/Chicago");
   require(
'.../includes/connect.php');

$res mysql_query("SELECT * FROM `user_logged` WHERE `ip` = '".$_SERVER['REMOTE_ADDR']."' LIMIT 1");
$que mysql_fetch_array($res);


if( ( !( isset( $_COOKIE['id'] ) ) ) && ( mysql_num_rows$res ) < ) )
{

$user_logged 'N';
$user 1;
setcookie("id"""time()-3600);

} else if( ( !( isset( $_COOKIE['id'] ) ) ) && ( mysql_num_rows$res ) > ) )
{

   setcookie("id"$que['id'], time()+3600);
   header("Location: /index.php");
   exit;

} else if( isset( $_COOKIE['id'] ) && ( mysql_num_rows$res ) > ) )
{

$user_logged $_COOKIE['id'];
$result[0] = mysql_query("SELECT * FROM `indy_users` WHERE `id` = '" $_COOKIE['id'] . "' LIMIT 1");
$row[0] = mysql_fetch_array$result[0] );
$user = array(

"name" => $row[0]['name'],
"email" => $row[0]['email'],
"class" => $row[0]['class']

);

} else if( isset( $_COOKIE['id'] ) && ( mysql_num_rows$res ) < ) && ( $que['logout'] == FALSE ) ) // Logout Bug, Fixed
{

   $user_logged 'N';
$user 1;
setcookie("id"""time()-3600);

} else if( isset( $_COOKIE['id'] ) && ( mysql_num_rows$res ) < ) && ( $que['logout'] == TRUE ) )
{

   mysql_query("INSERT INTO `user_logged` (`id` ,`ip` ,`user_id`) VALUES (NULL , '".$_SERVER['REMOTE_ADDR']."', '".$row['id']."')");
   header("Location: /index.php");
   exit;

}

function getUserData($arg1,$arg2)
{

$result[0] = mysql_query("SELECT * FROM `indy_users` WHERE `id` = '" $arg1 "' LIMIT 1");
$row[0] = mysql_fetch_array$result[0] );
return $row[0][$arg2];

}

// Make Sure Their is No God Damned Cache Storing my !@#$%
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");

?>


Check.login.php
Code: [Select]
<div id="user_log" align="left">
<?php

if( $user_logged == 'N')
{

print "<form action=\"http://board.indyprogramming.co/user.login.php\" method=\"post\">\n";

print "Username: <input type=\"text\" name=\"name\" /> \n";

print "Password: <input type=\"password\" name=\"pass\" /> \n";

print "<input type=\"submit\" value=\"Go!\" />\n";

print " .:. <a href=\"main.register.php\">Register</a></form>\n";

} else
{

print $user['name'] . "\n";

print " .:. <a href=\"http://".$_SERVER['HTTP_HOST']."/main.logout.php\">Logout</a>\n";


}

?>

</div>
No errors at all, so i'm guessing a theory error but i'm so tired right now I can't see it.  I figured i'd post it up and hope someone can help.

Oh and on the error site the only page is like this:
Code: [Select]

<?php

   
include ".../connect.php";
   include 
".../indy.init.php";
   include 
".../check.login.php";

?>



?>

[/code]

4
Recruitment / Trying to Put Together an Open Source Dev Team
« on: February 14, 2014, 11:50:12 pm »
Ok, so first i have to start by saying this: its been awhile ZFGC...

I came to this site as a child and from it and its users replying to my (often simple) programming questions i went from a small time html developer to a paid programmer; thanks  ;)

Now to the point, I am looking to start a team to develop open source software at the moment the current project is this -> http://litebbs.indyprogramming.co

Its still about 1/3 through development but with a styler and maybe another programmer it could be done in a week;  The thing is im just really in to open source and i want to put my knowledge to use designing stuff for people to use but its hard for one man in this world.

if your interested, the development forum is just going up (its not done, but its stable) http://www.indyprogramming.co
im looking for anyone wanting to gain programming experience or just criticize us that do.

5
Coding / C++ Help
« on: January 21, 2014, 09:03:25 am »
Ok, So I've got a simple txt game im building and what it does is rotate turns between two players (one being the computer) and they can either choose to deliver -25 points or take -10 if the computer (randomly decides) is using its shield.  Simple enough, but every time it compiles perfect yet no matter what I enter (1 or 2) it always takes 10 from the opponent and leaves me with full health.

Code: [Select]
#include <iostream>
#include <cstdlib>
#include <ctime>

int main()
{

srand(static_cast<unsigned int>(time(0)));
short int my_health = 100;
short int enemy_health = 50;
short int action;
short int turn = 1;
short int shield = 0;
short int enemy_shield = 0;
short int random_number = rand();
short int play;

while( ( my_health > 0 ) && ( enemy_health > 0 ) )
{

if( turn == 1 )
{
turn = 2;
} else
{
turn = 1;
}

switch( turn )
{

case 1:
std::cout << "1. Attack | 2. Defend; Enter: " << std::endl;
std::cin >> action;
switch( action )
{

case 1:

if( enemy_shield == 1)
{
enemy_health -= 10;
enemy_shield = 0;
} else
{
enemy_health -= 25;
}
break;

case 2:

shield = 1;
break;

default:

break;

}
system("CLS");
std::cout << "My Health: " << my_health << " " << "\t\t | \t\t Enemy Health: " << enemy_health << std::endl;

case 2:
play = (random_number % 2 ) + 1;
switch( play )
{

case 1:
if( shield == 1 )
{
my_health -= 10;
shield = 0;
} else
{
my_health -= 25;
}
system("CLS");
std::cout << "My Health: " << my_health << " " << "\t\t | \t\t Enemy Health: " << enemy_health << std::endl;

break;

case 2:
enemy_shield = 1;
system("CLS");
std::cout << "My Health: " << my_health << " " << "\t\t | \t\t Enemy Health: " << enemy_health << std::endl;
break;

default:
system("CLS");
std::cout << "My Health: " << my_health << " " << "\t\t | \t\t Enemy Health: " << enemy_health << std::endl;
break;

}


}

}

return 0;

}

6
Coding / Help With Walking Engine in Allegro
« on: April 25, 2013, 07:33:14 pm »
Im trying to teach myself allegro, but i am already getting stuck.  i've built a simple walking engine but when i press the arrow keys it just places a copy of the bmp file next to the original one, instead of moving it.  can anyone help me?

main.cpp
Code: [Select]
#include "basics/initFunctions.h"

void init();
void deinit();

int main() {
init();

while (!key[KEY_ESC]) {
         
         
          int paused = 0;
          int x = 0; int y = 0;
          char* src = "images/link.bmp";
         
          if (key[KEY_UP]) y-=10;
          else if (key[KEY_DOWN]) y+=10;
          else if (key[KEY_RIGHT]) x+=10;
            else if (key[KEY_LEFT]) x-=10;
         

                    BITMAP *my_pic = NULL;
                    my_pic = load_bitmap(src, NULL);
            blit(my_pic, screen, 0,0,x,y,16,16);

            readkey();
            destroy_bitmap(my_pic);
     

         

     
  }

deinit();
return 0;
}
END_OF_MAIN()


initFunctions.h
Code: [Select]
// initFunctions begins/ends game

void init();
void deinit();


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

void init() {
int depth, res;
allegro_init();
depth = desktop_color_depth();
if (depth == 0) depth = 32;
set_color_depth(depth);
res = set_gfx_mode(GFX_AUTODETECT_WINDOWED, 600, 563, 0, 0);
if (res != 0) {
allegro_message(allegro_error);
exit(-1);
}

install_timer();
install_keyboard();
install_mouse();
/* add other initializations here */
}

void deinit() {
clear_keybuf();
/* add other deinitializations here */
}



7
Graphics / Feedback on Layout for my New Website
« on: September 01, 2012, 06:39:15 am »
After nearly 10 years, last year I closed my website Zelda Shrine.  This was a hard decision because i love the Zelda community and I put 10 years of coding into the site (and ten years of screenshots, walkthroughs, and just game guides in general.)

I've recently began to write a zelda book, and my drive to become a part of the community has led me to build a new site specifically for my Zelda writing (and my future zelda game which is coming along quite nice :))

Any way (sort of went on a rant there), before I begin to build my CMS and start posting my writings, i wanted to get constructive criticism on my new layout.
http://thedarkfaces.byethost18.com/

Please view my website and tear it to pieces for me, so i can improve it.
(sorry its on a free server, once i regain my fan base i will be moving to a paid or dedicated server.)

8
Recruitment / Looking for Photoshop Artist [Zelda Website]
« on: July 29, 2011, 03:22:48 am »
I am looking to redesign my old website, but the thing is i've never been that good of an artist.  So I am looking for someone to design a layout for me.  I don't need it to be to complicated, just to be a red colored layout with some zelda official art within it.  If someone could help me I would greatly appreciate it.

I'm looking to retitle it The Dark Faces of Hyrule, and I need a red/black layout.

9
Coding / [C++}
« on: March 20, 2011, 08:01:54 pm »
Ok, so i've written a small program to test my knowledge of file i/o. The source code compiles, and creates an excutable. But when I run the program, after I input the first variable a window pops up (im using vista) and says the program stopped running. Can anyone compile this and see if they get the same error, or can you tell me how to fix it?

Code: [Select]
   #include <iostream>
    #include <fstream>
    
    using namespace std;
    
    char* write_to_file( char* file_src, char* file_txt )
    {
          
          ofstream myFile;
          myFile.open( file_src );
          myFile << file_txt;
          myFile.close();
          
          }
          
    int main()
    {
        
        char* input_src; char* input_txt;
        cout << "Please Enter The File Name: ";
        cin >> input_src;
        cin.get();
        system("CLS");
        
        cout << "Enter Text to be Displayed in File: ";
        cin >> input_txt;
        cin.get();
        system("CLS");
        
        write_to_file( input_src, input_txt );
        cout << input_txt; cout << " - Written to File";
        cin.get();
        
        return 0;
        
        }

any help is greatly appreciated.

10
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

11
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

12
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.)

13
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

14
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

15
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 );

16
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 );
       
    }

}

17
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?

18
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

19
Coding / [FLA] How to load from PHP?
« on: April 15, 2009, 07:40:49 pm »
I don't know if this is where to post this.  I'm really trying to load from MySQL, but I think it has to go through PHP first.  I want to load 2 things from a mysql table.  Title, and url.  I want the title to display but it be a link to whatever is the `url` column?  Does anyone know how?

20
Other Projects / qForum
« on: April 13, 2009, 11:18:42 pm »
Well, for a little while, I've been working on a forum, in php/mysql.  But it wasn't until recently that I actually started working on it.  I call it (tentative title) qForum.  And right now, i've only got the basic stuff done.  But I hope to have a beta version soon. I've got 1 screenshot, but there will be more as they come.



there will be more screenshots as I get more into it.

Pages: [1] 2 3 4

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



Page created in 0.045 seconds with 33 queries.