Gamestudio Links
Zorro Links
Newest Posts
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (AbrahamR, 1 invisible), 858 guests, and 6 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Hanky27, firatv, wandaluciaia, Mega_Rod, EternallyCurious
19051 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 2 1 2
Garage Quake 2 Site (advances, pics and videos) #305628
01/15/10 22:01
01/15/10 22:01
Joined: Mar 2009
Posts: 207
E
Erick_Castro Offline OP
Member
Erick_Castro  Offline OP
Member
E

Joined: Mar 2009
Posts: 207
In my site a have created a page only for show my Garage-Quake2 advances. Visit and see pics and videos of my project.
Soon you can download textures, sounds and models of Quake2 , i am working for that.

This is the link

http://www.prodigweb.com/quake/garagequake2.html


This is the video with the new advances:

http://www.youtube.com/watch?v=Erb5SiRgh8U

Re: Garage Quake 2 Site (advances, pics and videos) [Re: Erick_Castro] #305656
01/16/10 05:50
01/16/10 05:50
Joined: May 2009
Posts: 137
Ohio, U.S.A.
PigHunter Offline
Member
PigHunter  Offline
Member

Joined: May 2009
Posts: 137
Ohio, U.S.A.
Looking good. Did you make the level yourself?

Re: Garage Quake 2 Site (advances, pics and videos) [Re: PigHunter] #305665
01/16/10 10:16
01/16/10 10:16
Joined: May 2006
Posts: 148
Latvia
MTD Offline
Member
MTD  Offline
Member

Joined: May 2006
Posts: 148
Latvia
This looks good.
Will the game have multilayer game mode?

Keep up the good work. wink

Re: Garage Quake 2 Site (advances, pics and videos) [Re: MTD] #305679
01/16/10 14:10
01/16/10 14:10
Joined: Mar 2009
Posts: 207
E
Erick_Castro Offline OP
Member
Erick_Castro  Offline OP
Member
E

Joined: Mar 2009
Posts: 207
PigHunter, hello friend, yes, i am designing the level by my self. Soon i will give you in the Garage quake 2 page the WAD textures. They are converted to
256 X 256 TGA format.

Thanks.

Re: Garage Quake 2 Site (advances, pics and videos) [Re: Erick_Castro] #305680
01/16/10 14:17
01/16/10 14:17
Joined: Mar 2009
Posts: 207
E
Erick_Castro Offline OP
Member
Erick_Castro  Offline OP
Member
E

Joined: Mar 2009
Posts: 207
MTD, hello friend. You wrote "multilayer" i think you mean multiplayer... for now, only in my dreams , friend, but it is a great idea, i will start to study that posibility.

Thanks.

Re: Garage Quake 2 Site (advances, pics and videos) [Re: Erick_Castro] #305692
01/16/10 16:30
01/16/10 16:30
Joined: Dec 2008
Posts: 1,660
North America
Redeemer Offline
Serious User
Redeemer  Offline
Serious User

Joined: Dec 2008
Posts: 1,660
North America
Nice level.

BTW: how come the enemies can see you through walls?
And why does your shotgun only shoot one pellet at a time?

Last edited by Redeemer; 01/16/10 16:45.

Eats commas for breakfast.

Play Barony: Cursed Edition!
Re: Garage Quake 2 Site (advances, pics and videos) [Re: Redeemer] #305701
01/16/10 17:41
01/16/10 17:41
Joined: Mar 2009
Posts: 207
E
Erick_Castro Offline OP
Member
Erick_Castro  Offline OP
Member
E

Joined: Mar 2009
Posts: 207
Thanks, Redeemer. I only use vec_dist to detect the player distance and activate the Attack or run mode of the enemy, ignoring walls . I have to fix it using c_trace to activate the enemy only when the player is visible for him. Or mix some options using distance and visibility, etcetera.

About the second questions , for now , it is shooting only one pellet.
The answer is that i dont know, for now, how to shoot more than one pellet at a time laugh

I am beginning , and i know i have to improve it. In this momment i am concentrated in the enemies AI and fixing buggs.

thanks.

Last edited by Erick_Castro; 01/16/10 17:45.
Re: Garage Quake 2 Site (advances, pics and videos) [Re: Erick_Castro] #305707
01/16/10 18:14
01/16/10 18:14
Joined: Dec 2008
Posts: 1,660
North America
Redeemer Offline
Serious User
Redeemer  Offline
Serious User

Joined: Dec 2008
Posts: 1,660
North America
Quote:
Thanks, Redeemer. I only use vec_dist to detect the player distance and activate the Attack or run mode of the enemy, ignoring walls . I have to fix it using c_trace to activate the enemy only when the player is visible for him. Or mix some options using distance and visibility, etcetera.

I use c_scan() to check if the player can be detected. If the enemy detects the player, I then use c_trace(). If nothing is in the way, then the enemy starts attacking the player. Like this:

Code:
function enemy_event
{
  if( event_type == event_detect ) // I detected an entity with c_scan
  {
    if( your == player ) // the entity I detected is "player"
    {
      wait(1);
      c_trace( my.x, player.x, ignore_passable+ignore_me ); // trace a line to "player"
      if( your == player ) // the object hit by c_trace is the player (not a wall, other entity, etc.)
      {
        beep; // signify that I have seen the player
        my.flag1 = on; // so I don't "beep" again
      }
    }
  }
}

action enemy
{
  my.enable_detect = on; // so I can see the player
  my.event = enemy_event;

  while(my) // while I exist
  {
    if( my.flag1 == off ) // I haven't seen the player yet
    {
      c_scan( my.x, my.pan, vector( 160, 0, 2000 ), ignore_me+scan_ents ); // scan for the player
    }

    wait(1);
  }
}


This example uses C-Script, so you would have to convert it to lite-C to use it; but I think you understand wink

Quote:
About the second questions , for now , it is shooting only one pellet.
The answer is that i dont know, for now, how to shoot more than one pellet at a time

Use a "for" loop to fire more than one pellet at a time. Your weapons also shouldn't always be perfectly accurate; use random() to mess up the aiming trajectory a little bit.

Keep up the good work, this is getting pretty good laugh


Eats commas for breakfast.

Play Barony: Cursed Edition!
Re: Garage Quake 2 Site (advances, pics and videos) [Re: Redeemer] #305731
01/16/10 20:50
01/16/10 20:50
Joined: Mar 2009
Posts: 207
E
Erick_Castro Offline OP
Member
Erick_Castro  Offline OP
Member
E

Joined: Mar 2009
Posts: 207
Redeemer , your help and ideas are welcome , friend. Thanks for your code. I will to adapt it to my code.

Thnaks.

Re: Garage Quake 2 Site (advances, pics and videos) [Re: Erick_Castro] #305814
01/17/10 14:47
01/17/10 14:47
Joined: Nov 2008
Posts: 946
T
the_clown Offline
User
the_clown  Offline
User
T

Joined: Nov 2008
Posts: 946
Nice site, nice progress...
And I even understand the text on it. grin
Seems like my Spain isnt this bad afterall...
What I noticed is that the shotgun looks a bit small, maybe try to positionate it closer to the camera so it looks bigger. I know its retro style, but it could be a bit closer tough.
I tough love the level that can be seen on the pictures, looks very retro, very cool. Keep that up. grin

Page 1 of 2 1 2

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1