Page 1 of 1

Pulserifle shoot rockets mutator ...search request!!

Posted: Thu Jan 13, 2011 10:04 am
by papercoffee
Search request !!!

I know there was a mutator what changes the Pulsrifle to a Rocket rifle ...I lost this peace of insanity and want it back. (and maybe I modify the mutator to something more insane)
do someone know this mutator and can me point to the right direction where I can download it?
:help:

Re: Pulserifle shoot rockets mutator ...search request!!

Posted: Thu Jan 13, 2011 6:50 pm
by robin13
papercoffee wrote:Search request !!!

I know there was a mutator what changes the Pulsrifle to a Rocket rifle ...I lost this peace of insanity and want it back. (and maybe I modify the mutator to something more insane)
do someone know this mutator and can me point to the right direction where I can download it?
:help:
durrr,you could make your own. how about get the pulserifle script,modify the projectile. (basicaly how you modify the ripper to shoot rockets,basic scripting. Really really basic.) and rockets suck,use redeemer missles for it. or razorblades. (with a tight hallway its a massacre.)

Re: Pulserifle shoot rockets mutator ...search request!!

Posted: Thu Jan 13, 2011 7:03 pm
by Bloeb
You could change the projectile-class for the pulsegun. It's one of the few weapons where this actually works.

Code: Select all

function bool AlwaysKeep(Actor Other)
{
	if(Other.IsA('PulseGun'))
		Other.ProjectileClass = Class'Botpack.RocketMk2';

	if ( NextMutator != None ) return ( NextMutator.AlwaysKeep(Other) );

	return false;
}

Re: Pulserifle shoot rockets mutator ...search request!!

Posted: Thu Jan 13, 2011 9:31 pm
by papercoffee
I don't know how to make something like this ...so what do I have to do with that script??

Re: Pulserifle shoot rockets mutator ...search request!!

Posted: Fri Jan 14, 2011 12:37 am
by Bloeb
You can use the code to compile your own mutator.

I've compiled a simple mutator which replaces the PulseGun with a PulseGun that shoots Rockets.
PulseRockets.zip
UT PulseRockets Mutator
(1.04 KiB) Downloaded 284 times

Re: Pulserifle shoot rockets mutator ...search request!!

Posted: Fri Jan 14, 2011 12:02 pm
by papercoffee
Woah ....thank you, I DL it later @ home. Then I check the Mutator and the original PulseGun script ...maybe I see how is it done.

Re: Pulserifle shoot rockets mutator ...search request!!

Posted: Sun Jan 16, 2011 5:04 am
by papercoffee
I have checked the mutator it self.
You says 4 post ago "It's one of the few weapons where this actually works." which weapons are the others?
And why is it only with them possible?

Re: Pulserifle shoot rockets mutator ...search request!!

Posted: Sun Jan 16, 2011 11:07 am
by robin13
papercoffee wrote:I have checked the mutator it self.
You says 4 post ago "It's one of the few weapons where this actually works." which weapons are the others?
And why is it only with them possible?
Ripper,pulserifle,rocket launcher,flak alternate ammo,and all other guns who dont use instant hit ammo. (you cant give minigun/pistol/sniper another ammo class because they dont have one,they are instant hit thus you dont see any projectile flying from your weapon.) now that i think of it,in unreal 1 it was possible to change automag projectile. i think it has something to do with Binstanthit: True,in weapon properties. (there's a option something like that,if you change it to false your able to change the projectile of almost any gun. but i havent used it for a while so i could be wrong.)

in short,all weapons without Binstanthit: true are able to change projectile. (correct me if im wrong.)

Re: Pulserifle shoot rockets mutator ...search request!!

Posted: Sun Jan 16, 2011 1:38 pm
by JackGriffin
You can still add projectile code to them. Consider the sniper rifle, you see the instant hit bullet yet it also spawns a class called MTracer to show the bullet path. Any weapon can use any projectile with a minimum of code work.

Re: Pulserifle shoot rockets mutator ...search request!!

Posted: Sun Jan 16, 2011 4:41 pm
by Bloeb
papercoffee wrote:I have checked the mutator it self.
You says 4 post ago "It's one of the few weapons where this actually works." which weapons are the others?
And why is it only with them possible?
It's only possible with the weapons that actually use ProjectileClass and AltProjectileClass properties. You could change the weapon-code, but that's not what my mutator does. I don't remember exactly which weapons, but you can test that yourself.
robin13 wrote:
papercoffee wrote:I have checked the mutator it self.
You says 4 post ago "It's one of the few weapons where this actually works." which weapons are the others?
And why is it only with them possible?
Ripper,pulserifle,rocket launcher,flak alternate ammo,and all other guns who dont use instant hit ammo. (you cant give minigun/pistol/sniper another ammo class because they dont have one,they are instant hit thus you dont see any projectile flying from your weapon.) now that i think of it,in unreal 1 it was possible to change automag projectile. i think it has something to do with Binstanthit: True,in weapon properties. (there's a option something like that,if you change it to false your able to change the projectile of almost any gun. but i havent used it for a while so i could be wrong.)

in short,all weapons without Binstanthit: true are able to change projectile. (correct me if im wrong.)
You're wrong, for most weapons simply changing the ProjectileClass or AltProjectileClass won't work. They're fixed within the weapon-code. Offcourse it's stilll possible to subclass the weapons and change the code to spawn different projectiles, but that's not what my mutator does.

Re: Pulserifle shoot rockets mutator ...search request!!

Posted: Sun Jan 16, 2011 4:57 pm
by JackGriffin
It's still a simple matter to edit this yourself though. All weapons, even instant hit, have the same base fire/alt fire coding. Swapping projectile code is pretty simple stuff.

@papercoffee: If you don't find what you want, let me know and I'll whip you whatever you wanted up.

Re: Pulserifle shoot rockets mutator ...search request!!

Posted: Tue Jan 18, 2011 5:18 pm
by papercoffee
The PulseRocket Rifle is pretty neat ...a little bit overpowered but fun to play.
ok I try a weapon by my self now ...hm something like a ripper-shockrifle combo ... :mrgreen: where the alternate fire of the SR is the main fire of the ripper. :loool:

Re: Pulserifle shoot rockets mutator ...search request!!

Posted: Tue Aug 22, 2023 10:54 pm
by Jeganello
I liked that mutator too. Adds hilarious tweak to the whole gameplay.
The only thing that annoys me: the alt-fire. Same as the original. As long as I play with bots, they use altfire too often and it destroys the idea of the mutator.
After these many years, I would like to ask you to modify the mutator, so the primary and secondary gunfire would be the same - rocket projectiles.

Re: Pulserifle shoot rockets mutator ...search request!!

Posted: Tue Aug 22, 2023 11:24 pm
by papercoffee
Jeganello wrote: Tue Aug 22, 2023 10:54 pm...
Last post was Jan 18, 2011

Please avoid necrobumping of long dead threads without a good reason.
You can ask your question in a new thread and reference to this old thread.
Thank you.

EDIT---------------------------------------------------------
After a short discussion I decided to reopen this thread.
Jeganello's questions are valid.
The Bots indeed don't like to use the primary shot when in midrange.
Has someone a solution?
=UNCLOSED=