Jump to content


lmzanchi

Member Since 22 Apr 2006
Offline Last Active Nov 28 2009 08:45 PM

Posts I've Made

In Topic: Overhyped Games

14 June 2009 - 06:56 PM

Resident Evil 5 is really overrated in my opinion. It really just wasnt fun and I just didnt like it.

EDIT: Forgot to mention that I liked some of the other Resident Evils

In Topic: Collision Line Problem

22 June 2007 - 03:24 AM

Now it sasys in an error box: unknonw variable x and unkonwn varibale y!!! ?!?!


Can someone help? i have no idea why its doin that

In Topic: Collision Line Problem

22 June 2007 - 03:18 AM

Obj_red is the block that obj_character jumps on like a platform game. It is like a wall and if obj_red is inbetween scanner and character character is alive.If the scanner can clearly 'see' the character(obj_red is NOT inbetween the two) character dies. :D

In Topic: Collision Line Problem

22 June 2007 - 03:11 AM

in obj_character in step:
if global.deadscanner=1 then
{
instance_create(x,y,obj_playerdie3)
instance_destroy()
}
in obj_scanner step:
if collision_line(x,y,x+room_width-x,y+room_height-y,obj_red,false,true)then
{
global.deadscanner=1
}
else
{
global.deadscanner=0
}
obj_red is just the block(itsa platform game)

In Topic: Collision Line Problem

22 June 2007 - 03:03 AM

hmm. I didnt work. I think the problem is that it checks for red, but not if red is in way of character. Also, how would i mkae it where it sets the var to 1 if character is not behind red?