Is there still a way to throw weapons whenever you want?

A secret forum for people who preorder Overgrowth!
Post Reply
sammyrye
Posts: 31
Joined: Wed Nov 23, 2011 6:19 pm

Is there still a way to throw weapons whenever you want?

Post by sammyrye » Fri Mar 30, 2012 2:18 pm

In the old alphas, I loved being able to throw the weapons whenever I wanted to. I would throw them at wooden walls to try and make them stick, or throw mid flip for maximum distance. Is there a key combination I don't know about?

User avatar
Silverfish
Posts: 1451
Joined: Sun Oct 26, 2008 8:24 pm
Location: Sweden
Contact:

Re: Is there still a way to throw weapons whenever you want?

Post by Silverfish » Sat Mar 31, 2012 4:33 am

I don't think that's possible anymore. What you used to do was just drop the weapon when you where doing a flip or something, but you can only drop the weapon if you're on the ground and crouching now.

User avatar
Macrauchenia
Posts: 281
Joined: Tue Dec 06, 2011 12:11 am
Location: Northern Colorado

Re: Is there still a way to throw weapons whenever you want?

Post by Macrauchenia » Sat Mar 31, 2012 5:48 pm

I did the same. I hope this feature is brought back somehow, it was a lot of fun. I actually had a level design that relied on tossing a weapon onto a ledge that doesn't work anymore. :(

User avatar
NoSkillz
Posts: 45
Joined: Sun Jan 29, 2012 9:58 pm

Re: Is there still a way to throw weapons whenever you want?

Post by NoSkillz » Sat Mar 31, 2012 8:45 pm

I somewhat agree. I love the way the combat works right now, and how you only attack when your character sees the opportunity to, but sometimes I just wish I could swing or throw my sword, or do a flashy kick without an opponent being there.

User avatar
StefanMajonez
Posts: 4
Joined: Mon Jun 25, 2012 3:04 pm
Location: Earth, Europe, Poland

Re: Is there still a way to throw weapons whenever you want?

Post by StefanMajonez » Thu Jun 28, 2012 12:17 pm

Bumping this, I don't want to make a new thread since this one is already made

I would really love to see throwing weapons freely come back, there could be some target throwing levels for it.

User avatar
MrOtton
Posts: 207
Joined: Thu Oct 13, 2011 11:51 am
Location: Everywhere.......almost...
Contact:

Re: Is there still a way to throw weapons whenever you want?

Post by MrOtton » Thu Jun 28, 2012 2:17 pm

StefanMajonez wrote:Bumping this, I don't want to make a new thread since this one is already made

I would really love to see throwing weapons freely come back, there could be some target throwing levels for it.
Something like the "Dead Eye" from red dead redemption would be cool!

User avatar
last
Posts: 2154
Joined: Fri Jan 07, 2011 7:02 am
Location: Estonia

Re: Is there still a way to throw weapons whenever you want?

Post by last » Thu Jun 28, 2012 3:25 pm

I think we should study a 164 and a 165 script files because before a 165 there wasn't actual weapon throwing, like it does now. After that it should be really simple to add into the game, maybe even bind a new key for it with a proper throw animation. (so it should be doable even when there are enemies around)

IAmTheCandyman
Posts: 4
Joined: Sat Jun 02, 2012 8:53 pm

Re: Is there still a way to throw weapons whenever you want?

Post by IAmTheCandyman » Sun Jul 01, 2012 2:43 pm

To address both throwing weapons and attacking without needing an enemy. I don't think it would be to hard for them to code in a button that makes you attack. So while holding down this button you can attack and throw weapons directly ahead.

User avatar
last
Posts: 2154
Joined: Fri Jan 07, 2011 7:02 am
Location: Estonia

Re: Is there still a way to throw weapons whenever you want?

Post by last » Sun Jul 01, 2012 5:31 pm

To throw a weapon at someone you need a target.I think this here is the minimum amount of code needed to throw a weapon at someone/ yourself.

Code: Select all

float target =  this_mo.getID();
					target_id=target;
					going_to_throw_item = true;
					going_to_throw_item_time = time;
Without a target ID (i think this ID is defined in a map file, You see each actor/ character has it's unique ID number in there) you make all the animations but not the weapon release.
So to test this code i used "b" key that is defined in the aschar.as file

Code: Select all

if(GetInputPressed(this_mo.controller_id, "b")){
float target =  this_mo.getID();
					
					target_id=target;
					going_to_throw_item = true;
					
					going_to_throw_item_time = time;
SwapWeaponHands();
        }
I left the SwapWeaponHands(); there because i wanted to.

have fun testing

User avatar
Macrauchenia
Posts: 281
Joined: Tue Dec 06, 2011 12:11 am
Location: Northern Colorado

Re: Is there still a way to throw weapons whenever you want?

Post by Macrauchenia » Mon Sep 17, 2012 10:44 am

I'm going to bump this thread again.

Could we possibly get an official word on if this mechanic will be added to the game again?

I never saw your reply Last, I'll try that out later today. (Although I don't know much about messing with the code at all).

Post Reply