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
41
Coding / C#
« on: January 09, 2007, 09:59:57 pm »
Can anyone give me some good C# tutorials?

42
Feedback / Why Has ZFGC
« on: January 08, 2007, 02:53:54 am »
Been so inactive lately?

43
Coding / BlitzMax
« on: December 26, 2006, 06:00:38 pm »
Can anyone tell me where to find BlitzMax tutorials?

44
Discussion / What Ever Happened to TRM's OOT2D?
« on: December 15, 2006, 08:21:38 pm »
What happened, he said he was gonna be away for like 6 weeks in August.

45
Other Projects / HTMLpad 2 Complete (Please Join the Forums)
« on: November 25, 2006, 08:09:50 pm »
Version 2 is finished. Please download. Goto the Forums



Download
 

46
Coding / [GM6] If Room Is Empty...
« on: October 26, 2006, 07:39:32 pm »
If i had 7 of objRupee in the room, once link collects all of them, how do I make it to where it goes to the next room.

47
LTTP & FSA / [LTTP] LTTP Link on Epona
« on: October 05, 2006, 10:40:20 pm »
Does anyone have link on epona, and then just epona?

48
Coding / Whats up with the hud?
« on: October 05, 2006, 10:31:18 pm »
Ok, i am making a hud, and i use the drag & drop draw sprite to draw the images into the HUD object, it all works perfectly, and then i added the fourth sprite to it, and now it doesn't work, even when i delete the fourth draw sprite, even when i delete the hud? What is up with it?

49
Coding / [request] save engine [gm6]
« on: October 05, 2006, 12:59:31 am »
How would make a save engine?

50
Coding / Help with faires
« on: October 04, 2006, 10:26:59 pm »
I've got a farie engine, and i set them to this:
Code: [Select]
//Put this in the step event
if distance_to_object(obj_normal_link)>20
move_towards_point(obj_normal_link.x,obj_normal_link.y,5) //This makes the fairy follow link

if distance_to_object(obj_normal_link)<20
move_towards_point(obj_normal_link.x,obj_normal_link.y,0) //This makes the fairy stop when it gets too close
But when i press the sword it changes to obj_link_with_sword but then i get an error, because there is no obj_normal_link, how could i fix this?

51
Discussion / Allegro and Dev-C++
« on: August 28, 2006, 02:22:34 am »
How to I install and run the Allegro Dev-Kit on Dev-C++?

52
Coding / A.I. Touble [gm6.1]
« on: August 24, 2006, 03:21:10 am »
I am trying to make a NPC, and when i try (using this code) it says Line 3 Create Even Symbol '{' Expected:
Code: [Select]
{
if(distance_to_object(obj_normal_link)>0) {
   if(keyboard_check(ord('A')) {
     alarm[0] =60
   } else {
     alarm[0] =0
      }
       } else {
        if(distance_to_object(obj_normal_link)<0) {
         alarm[0] =0
         }
         }


53
Coding / problem with NPCs
« on: August 23, 2006, 02:12:01 am »
I am trying to write an NPC that talks to link, and i see no reason why it shouldn't work. This is in the Collision with Link
Code: [Select]
{
if(keyboard_check(ord('A')) {
Say("Hello Link",true,true,true)
   }
}

54
Coding / Load number of hearts
« on: August 23, 2006, 01:32:47 am »
OK, i am trying to use TRMs registration engine to save basic things, but its kinda hard to sort out, like the number of hearts, this is what i use:

     
Code: [Select]
if (! file_exists('Player' + string(argument0) + '.mgb')) {
   ini_open('Player' + string(argument0) + '.mgb');
if !variable_global_exists("totalhearts") { global.totalhearts=3 }   
if !variable_global_exists("hearts") { global.hearts=string(tempHeartContainers) }
}
     

But it just closes after i try to run it.

55
Zelda Projects / The Legend of Zelda: The Rupee Rod; Story Finished
« on: August 21, 2006, 11:38:53 am »
In the land of Termina there is a legend...

Deep within the Forbidden woods of Termina Lies a portal...

A portal by which can only be reached by a great evil deed...



Engines:
Walking: |||||||||| 100%
Sword: | 10%

Overall Demo Progress
Demo One: | 1%

Latest Screen


I have finished the overall story and am working on getting all my resources together before i began main game production.

So heres a glimpse of the story:

   A "person" is tempted by a mask they found laying on the ground. They pick it up and the mask begins talking to him, telling him to wear it. He puts it on, and is consumed by the masks evil and greed, and sets out to destroy Termina, while bringing the moon back, he releases a cursed portal, that he goes through to find a new land.

   One day, while Link was walking through the woods he discovers this portal, Tatl, and Tael come and tell him of what happened, they say that the evil masked man has entered the portal, so Link, Tael, and Tatl enter the portal together...

And that pretty much how are story begins,of course there is a big in depth story behind it all but pretty much that is the basic outline. This game will be rather short, it will consist of three main levels, and a final level. All criticism is welcome.

Creds
Programmer/Mapper/Spriter - Linkthemaster
mapper/spriter - Hammer Bro. Mike
2nd Programmer - Jelleye
 
Support Banner


Beta Testers
1. Apply
2. Apply
3. Apply
Goodnight - Heart Engine
Atomicd1 - Sword Engine
Laigonaz - Day and Night Engine

56
Coding / My First Engine
« on: August 21, 2006, 08:28:30 am »
Here is my first engine, its a movement engine, it took me like 10 minutes to build, now i finally have the hang of GML YAY!!! Next i have to work on Collision with Solid Objects and Diagonal Walking.

Code: [Select]
{
/* Movement Engine if Used Give Credit to Linkthemaster */
/* Move Right */
if(keyboard_check(vk_right)) {
   direction=0;
   speed=5;
   sprite_index = link_right;
   }
   
/* Move Left */
if(keyboard_check(vk_left)) {
  direction=180;
  speed=5;
     sprite_index = link_left;
  }
 
 
 
/* Move Down */   
if(keyboard_check(vk_down)) {
  direction=270;
  speed=5;
  sprite_index = link_down;
  }
 
/* Move Up */
if(keyboard_check(vk_up)) {
  direction=90;
  speed=5;
  sprite_index = link_up;
  } 
   
if(!keyboard_check(vk_left) && !keyboard_check(vk_right) && !keyboard_check(vk_down) && !keyboard_check(vk_up)) {
  speed=0;
  }     
}

57
Coding / TRM's MMGB Registration
« on: August 21, 2006, 05:49:56 am »
Can anyone tell me a way so i can save it to a file that people can't open and edit, so that they cannot cheat?

58
Coding / Atomicd1's Sword Engine Help
« on: August 19, 2006, 06:07:39 pm »
When i try to run it, i get this:

Unknown Variable dir? Does anyone know why?

59
Coding / TRW Text Engine
« on: August 19, 2006, 05:53:54 pm »
How do i make it when a sentence is done it goes to a certain room?

60
Discussion / Linux
« on: August 06, 2006, 12:45:32 am »
I just got linux today, and i installed MSN Messenger (rpm file) now that it is installed how do i run it.

Pages: 1 2 [3] 4

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



Page created in 0.069 seconds with 33 queries.

anything