donkey kong country GZDOOM (released the first alpha-page 1)
Re: donkey kong country with zdoom engine
Doomero allways makes the strangest wads:D
- DOOMERO-21
- Posts: 1423
- Joined: Wed Jan 02, 2008 10:02 pm
- Location: Chile
Re: donkey kong country with zdoom engine
strangest XD, well i think is my style.
Re: donkey kong country with zdoom engine
Yeah:D Fun wads actually.DOOMERO-21 wrote:strangest XD, well i think is my style.
- DOOMERO-21
- Posts: 1423
- Joined: Wed Jan 02, 2008 10:02 pm
- Location: Chile
Re: donkey kong country with zdoom engine
http://www.youtube.com/watch?v=hMpLYOu154g
new progress, the end of level with the special end of donkey kong and diddy =)
new progress, the end of level with the special end of donkey kong and diddy =)
- qwerqsar
- Posts: 236
- Joined: Sat Jun 02, 2007 10:06 am
- Location: The beautiful Anahuac (A mexican kind of Midgard)
- Contact:
Re: donkey kong country with zdoom engine
Nice! I like how the proyect is coming along 
Just two things:
Is there going to be a navigation map like in the original games?
And maybe you should put a way to tell the player that they have the other Kong in "reserve" (plus the tagteaming would be nice).
Keep on working, I definetly want to see a demo! (or, in due time, the full version...
)

Just two things:
Is there going to be a navigation map like in the original games?
And maybe you should put a way to tell the player that they have the other Kong in "reserve" (plus the tagteaming would be nice).
Keep on working, I definetly want to see a demo! (or, in due time, the full version...

- DOOMERO-21
- Posts: 1423
- Joined: Wed Jan 02, 2008 10:02 pm
- Location: Chile
Re: donkey kong country with zdoom engine
well about navigation map is factible, just i need to add the hub, becuase is much better add the general map into the first level...but yeah is possible....about the striker, yes, i will add the "DK" as sign of you have other character avaible and about the demo, almost i need to make other levels, i was thinking forest map (doomfiend map) and the waterworld.qwerqsar wrote:Nice! I like how the proyect is coming along
Just two things:
Is there going to be a navigation map like in the original games?
And maybe you should put a way to tell the player that they have the other Kong in "reserve" (plus the tagteaming would be nice).
Keep on working, I definetly want to see a demo! (or, in due time, the full version...)
- DOOMERO-21
- Posts: 1423
- Joined: Wed Jan 02, 2008 10:02 pm
- Location: Chile
Re: donkey kong country GZDOOM (release the first alpha)
i added the link for the alpha, have some bugs but i really need to know if the gameplay is good or bad, well actualy is very diferent...you can explore the scripts or the decorate if you want....... are free.... =)
Re: donkey kong country GZDOOM (released the first alpha-pag
really nice, i've expressed my likeness for it on YT enough.
I tried the demo, its brilliant, I just can't figure out how to jump, please help.
I tried the demo, its brilliant, I just can't figure out how to jump, please help.
- DOOMERO-21
- Posts: 1423
- Joined: Wed Jan 02, 2008 10:02 pm
- Location: Chile
Re: donkey kong country GZDOOM (released the first alpha-pag
the jump button is altfire i mean secundary fire.....Godzilla wrote:really nice, i've expressed my likeness for it on YT enough.
I tried the demo, its brilliant, I just can't figure out how to jump, please help.
- TheDarkArchon
- Posts: 7656
- Joined: Sat Aug 07, 2004 5:14 am
- Location: Some cold place
Re: donkey kong country GZDOOM (released the first alpha-pag
Please, please, please, PLEASE consider using [wiki]GetPlayerInput[/wiki] for the controls. The current controls are incredibly clunky and movement is unresponsive.
- DOOMERO-21
- Posts: 1423
- Joined: Wed Jan 02, 2008 10:02 pm
- Location: Chile
Re: donkey kong country GZDOOM (released the first alpha-pag
well i used those codes see the scripts:TheDarkArchon wrote:Please, please, please, PLEASE consider using [wiki]GetPlayerInput[/wiki] for the controls. The current controls are incredibly clunky and movement is unresponsive.
int buttons;
while (enabled==true)
{
if(activate==true)
if (control==false) break;
If (GetPlayerInput(-1,INPUT_BUTTONS) & BT_RIGHT)
{
right=true;
if (on_floor==true && walking==false)
{
if (walking==false)
{
SetActorState(PlayerID,"run",FALSE);
}
walking=true;
ko=false;
}
and other thing, is not like playing a fps game, the gameplay is diferent....
jump is bt_altattack (secundary fire, try to confifure with the button "mouse right"
roll/pick up the barrel is bt_attack (primary fire, configure for the button "mouse left")
forward is bt_right (is turn right, recomended for the button "D")
back is bt_left (is turn left, use the button "A")
down is bt_down (is back, use the button "S")
run is bt_right + bt_attack or bt_left + bt_attack
i use this configuration for play.....
- DoomRater
- Posts: 8270
- Joined: Wed Jul 28, 2004 8:21 am
- Preferred Pronouns: He/Him
- Location: WATR HQ
- Contact:
Re: donkey kong country GZDOOM (released the first alpha-pag
Get ready to preach in 5... 4... 3... 2... 1...TheDarkArchon wrote:Please, please, please, PLEASE consider using [wiki]GetPlayerInput[/wiki] for the controls. The current controls are incredibly clunky and movement is unresponsive.
- DOOMERO-21
- Posts: 1423
- Joined: Wed Jan 02, 2008 10:02 pm
- Location: Chile
Re: donkey kong country GZDOOM (released the first alpha-pag
DoomRater wrote:Get ready to preach in 5... 4... 3... 2... 1...TheDarkArchon wrote:Please, please, please, PLEASE consider using [wiki]GetPlayerInput[/wiki] for the controls. The current controls are incredibly clunky and movement is unresponsive.
well i know i a few uncomfortable use that configuration but it is a matter of adapting....
- DoomRater
- Posts: 8270
- Joined: Wed Jul 28, 2004 8:21 am
- Preferred Pronouns: He/Him
- Location: WATR HQ
- Contact:
Re: donkey kong country GZDOOM (released the first alpha-pag
No it is a matter of the coders adapting to better techniques. No reason to continue using oldbie hacks because that's the way we've always done it.
- DOOMERO-21
- Posts: 1423
- Joined: Wed Jan 02, 2008 10:02 pm
- Location: Chile
Re: donkey kong country GZDOOM (released the first alpha-pag
yes is true that too, i really like if found somebugs (excepting the bug from the newest gzdoom in the beginning, try with gzdoom 1.3.17).....DoomRater wrote:No it is a matter of the coders adapting to better techniques. No reason to continue using oldbie hacks because that's the way we've always done it.