Pressure

Search, find and discuss about Mutators!
User avatar
Gustavo6046
Godlike
Posts: 1462
Joined: Mon Jun 01, 2015 7:08 pm
Personal rank: Resident Wallaby
Location: Porto Alegre, Brazil
Contact:

Re: Pressure

Post by Gustavo6046 »

i have also a gametype I'm working. It is actually a list, and they're the Tag Games.
"Everyone is an idea man. Everybody thinks they have a revolutionary new game concept that no one else has ever thought of. Having cool ideas will rarely get you anywhere in the games industry. You have to be able to implement your ideas or provide some useful skill. Never join a project whose idea man or leader has no obvious development skills. Never join a project that only has a web designer. You have your own ideas. Focus on them carefully and in small chunks and you will be able to develop cool projects."

Weapon of Destruction
User avatar
PrinceOfFunky
Godlike
Posts: 1200
Joined: Mon Aug 31, 2015 10:31 pm

Re: Pressure

Post by PrinceOfFunky »

Gustavo6046 wrote:i have also a gametype I'm working. It is actually a list, and they're the Tag Games.
YesYes I did read them :D But I didn't understand a lot :nonono: I didn't understand your "Tag" concept :/
"Your stuff is known to be buggy and unfinished/not properly tested"
User avatar
EvilGrins
Godlike
Posts: 9668
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: Pressure

Post by EvilGrins »

This pressure weapon reminds me vaguely of a mutator made ages ago for UT, based on the old arcade game "Dig-Dug".
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
PrinceOfFunky
Godlike
Posts: 1200
Joined: Mon Aug 31, 2015 10:31 pm

Re: Pressure

Post by PrinceOfFunky »

EvilGrins wrote:This pressure weapon reminds me vaguely of a mutator made ages ago for UT, based on the old arcade game "Dig-Dug".
Oh, omg I never knew it was a.. human? o.o I played a game starting with "Dig" from MiniClip, and that guy was the same as the one from Dig Dug.
Now I understand why "Dig" :D XD
"Your stuff is known to be buggy and unfinished/not properly tested"
MrLoathsome
Inhuman
Posts: 958
Joined: Wed Mar 31, 2010 9:02 pm
Personal rank: I am quite rank.
Location: MrLoathsome fell out of the world!

Re: Pressure

Post by MrLoathsome »

Description eminds me of the FatBoy mutator I think it was called.

But a bit different.

If I recall correctly, you would get fatter when you scored kills, and get skinnier when you got killed.
blarg
User avatar
Gustavo6046
Godlike
Posts: 1462
Joined: Mon Jun 01, 2015 7:08 pm
Personal rank: Resident Wallaby
Location: Porto Alegre, Brazil
Contact:

Re: Pressure

Post by Gustavo6046 »

MrLoathsome wrote:Description eminds me of the FatBoy mutator I think it was called.

But a bit different.

If I recall correctly, you would get fatter when you scored kills, and get skinnier when you got killed.
I have it! It is a default UT99 mutator...
Please check out my WIP weapon! How to export a mesh from Blender?
"Everyone is an idea man. Everybody thinks they have a revolutionary new game concept that no one else has ever thought of. Having cool ideas will rarely get you anywhere in the games industry. You have to be able to implement your ideas or provide some useful skill. Never join a project whose idea man or leader has no obvious development skills. Never join a project that only has a web designer. You have your own ideas. Focus on them carefully and in small chunks and you will be able to develop cool projects."

Weapon of Destruction
User avatar
PrinceOfFunky
Godlike
Posts: 1200
Joined: Mon Aug 31, 2015 10:31 pm

Re: Pressure

Post by PrinceOfFunky »

Gustavo6046 wrote:
MrLoathsome wrote:Description eminds me of the FatBoy mutator I think it was called.

But a bit different.

If I recall correctly, you would get fatter when you scored kills, and get skinnier when you got killed.
I have it! It is a default UT99 mutator...
Please check out my WIP weapon! How to export a mesh from Blender?
I don't get what about it now but... ok XD
"Your stuff is known to be buggy and unfinished/not properly tested"
User avatar
PrinceOfFunky
Godlike
Posts: 1200
Joined: Mon Aug 31, 2015 10:31 pm

Re: Pressure

Post by PrinceOfFunky »

Had to study and so I made this instead:
(File deleted to save space lol)

Still with a lot of bugs since I made it just cause bored XD
(I recommend you to use it with the "Only PulseGun" muator, or however it is called)

EDIT: forgot to say it requires AdvancedMutator
Last edited by PrinceOfFunky on Mon Mar 13, 2017 11:14 am, edited 1 time in total.
"Your stuff is known to be buggy and unfinished/not properly tested"
User avatar
PrinceOfFunky
Godlike
Posts: 1200
Joined: Mon Aug 31, 2015 10:31 pm

Re: Pressure

Post by PrinceOfFunky »

I updated the file I uploaded with the previous post, I don't get how can I have this "Accessed None":
Kidding.PNG
How it it possible? :/
"Your stuff is known to be buggy and unfinished/not properly tested"
User avatar
rjmno1
Masterful
Posts: 716
Joined: Fri Aug 12, 2011 9:38 pm
Personal rank: masterfull
Location: https://sites.google.com/view/unrealtou ... oject/home
Contact:

Re: Pressure

Post by rjmno1 »

Yes i can remember it also it was downloadeble as suite or made a pressure mod from the server.
I remember i was playing this like years ago, but i realy dont know the name from the server or what was then name of the map.
It was a skin when you play dm pressure, and indeed get presurized when you switch the button.
It did look cool,and was years ago i dont remember it very good i was maby like 10 years ago .

Image
unreal tournament 99
®
Image
Image
ImageImage
https://sites.google.com/view/unrealtou ... oject/home mine home ut99 website.
https://richardmoust105.blogspot.com/20 ... ef-in.html dutch blog page about ut99 settings.
User avatar
Barbie
Godlike
Posts: 2792
Joined: Fri Sep 25, 2015 9:01 pm
Location: moved without proper hashing

Re: Pressure

Post by Barbie »

AdvancedMutator_v1.AdvancedMutator.uc:

Code: Select all

function bool registerTextValue(ActorInfo AI, ...) {
	return AI.registerTextValue(...);
}
Instead I#d use:

Code: Select all

function bool registerTextValue(ActorInfo AI,  ...) {
	if (AI != None)
		return AI.registerTextValue(...);
	else
	{
		if (bDebug)
			warn("AI==None");
		return MyErrorValue;
	}
}
"Multiple exclamation marks," he went on, shaking his head, "are a sure sign of a diseased mind." --Terry Pratchett
User avatar
rjmno1
Masterful
Posts: 716
Joined: Fri Aug 12, 2011 9:38 pm
Personal rank: masterfull
Location: https://sites.google.com/view/unrealtou ... oject/home
Contact:

Re: Pressure

Post by rjmno1 »

Barbie wrote:AdvancedMutator_v1.AdvancedMutator.uc:

Code: Select all

function bool registerTextValue(ActorInfo AI, ...) {
	return AI.registerTextValue(...);
}
Instead I#d use:

Code: Select all

function bool registerTextValue(ActorInfo AI,  ...) {
	if (AI != None)
		return AI.registerTextValue(...);
	else
	{
		if (bDebug)
			warn("AI==None");
		return MyErrorValue;
	}
}
thank you barbie but its all hebrew to me maby other people can read this. :loool:
unreal tournament 99
®
Image
Image
ImageImage
https://sites.google.com/view/unrealtou ... oject/home mine home ut99 website.
https://richardmoust105.blogspot.com/20 ... ef-in.html dutch blog page about ut99 settings.
User avatar
PrinceOfFunky
Godlike
Posts: 1200
Joined: Mon Aug 31, 2015 10:31 pm

Re: Pressure

Post by PrinceOfFunky »

Barbie wrote:AdvancedMutator_v1.AdvancedMutator.uc:

Code: Select all

function bool registerTextValue(ActorInfo AI, ...) {
	return AI.registerTextValue(...);
}
Instead I#d use:

Code: Select all

function bool registerTextValue(ActorInfo AI,  ...) {
	if (AI != None)
		return AI.registerTextValue(...);
	else
	{
		if (bDebug)
			warn("AI==None");
		return MyErrorValue;
	}
}
Well, I can't do that, the mutator is official, if I would change the code I would need to publish a new version, but thank you anyway :D For now, important is there are no bugs /o\ and that works efficently \o/.

Anyway, I made a new version of UnderPressure:
UnderPressure_TEST.rar
(5.32 KiB) Downloaded 71 times
[changelogs]
- Minor bugs fix;
- Fixed the Accessed None bug(yes it was my fault, but code concurrency confused me);
- Sounds seems to not to be replaced with the ones I put for the PulseGun;
- Flash fog and FOVAngle adjustment doesn't work so fine anymore.
- You can now depressurize your friends depending on the FriendlyFireScale(still don't know if monsters should be affected too).
- Still have to implement a damage reduction.
- Your pression level is showed instead of the AmmoAmount(may differ in next versions).
- There are problems if I enable the damage reduction standard systems.
- Your pression level(and Fatness) will decrease by time.
"Your stuff is known to be buggy and unfinished/not properly tested"
Post Reply