Questions & requests...

  • Two Factor Authentication is now available on BeyondUnreal Forums. To configure it, visit your Profile and look for the "Two Step Verification" option on the left side. We can send codes via email (may be slower) or you can set up any TOTP Authenticator app on your phone (Authy, Google Authenticator, etc) to deliver codes. It is highly recommended that you configure this to keep your account safe.

d00d

New Member
Jan 15, 2009
5
0
0
I'm an avid UT2K4 player and... hey everbody!


Now down to business:

1. Are there any UT3 player models for UT2K4?

2. Where can I get the linkgun medic mutator from UC for UT2k4?

3. Is there a mutator that allows me to change the amount of adrenaline a powerup provides?

4. Where can I get the UC announcer for UT2k4?

5. Where can I get a bot personality mutator? Like in UT99 & UC.

6. Is there a mesh fix for the HumanFemaleA.EgyptFemaleB's (Asp/Cleopatra) breasts? They look deformed :lol:

7. Is there a fix for the assaultrifle's alt model in UT2k4? The thirdperson model looks like the standard assaultrifle, even if the alt is selected.

8. There seems to be a problem with the NightMale taunts in UT2k4...
Some taunt sounds are the MercMale's. I tried reinstalling, but no luck.

Much appreciated!
 

DeusIX

Engineer
Mar 22, 2009
168
1
16
Winland
I'm an avid UT2K4 player and... hey everbody!
2. Where can I get the linkgun medic mutator from UC for UT2k4?
4. Where can I get the UC announcer for UT2k4?
5. Where can I get a bot personality mutator? Like in UT99 & UC.
6. Is there a mesh fix for the HumanFemaleA.EgyptFemaleB's (Asp/Cleopatra) breasts? They look deformed :lol:

2.
+1

4.,5.


6.
Ahaha! I remember this thread :)

Sorry that I can't really help. You probably have the UC2 models already? and U2 weapons? and speciestatsplus -mutator?
 

Wormbo

Administrator
Staff member
Jun 4, 2001
5,913
36
48
Germany
www.koehler-homepage.de
3. Is there a mutator that allows me to change the amount of adrenaline a powerup provides?
Compile and have fun:
Code:
class MutAdrenConfig extends Mutator config;

var config int AdrenAmount;

function bool CheckReplacement(Actor Other, out byte bSuperRelevant)
{
  if (AdrenalinePickup(Other) != None)
    AdrenalinePickup(Other).AdrenalineAmount = AdrenAmount;
  return Super.CheckReplacement(Other, bSuperRelevant);
}

static function FillPlayInfo(PlayInfo PlayInfo)
{
  Super.FillPlayInfo(PlayInfo);
  
  PlayInfo.AddSetting(default.RulesGroup, "AdrenAmount", default.FriendlyName, 0, 0, "Text", "3;1:100");
}

static event string GetDescriptionText(string PropName)
{
  if (PropName ~= "AdrenAmount")
    return default.Description;
  
  return Super.GetDescriptionText(PropName);
}


defaultproperties
{
  FriendlyName="Adrenaline Amount"
  Description="Changes the amount of adrenaline players get from adrenaline pickups."
  AdrenAmount=2
}
(I made up that code right in the BUF edit box, so no idea whether it works.)
 

DeusIX

Engineer
Mar 22, 2009
168
1
16
Winland
Ummm, I didn't really get what you just said...

Also where's that 6. thread?

+1 means that I agree with you and want this too.
+½ means that I semi-agree with you and want more info before +1. :) I just made this up.

That thread is somewhere... but you wont find any help from it. It was just someone who observed the same thing with Asps breasts :), glorified cups, etc. in conclusion Ophelia is superior.
 

d00d

New Member
Jan 15, 2009
5
0
0
Dude, mind compiling it for me?
I'm just a player and really have no idea how to do things like that...

Also Deus, the UC announcer is that female voice from unreal championship that reminds me of the 'ol UC days.

In UT99 you could make the bots behave in a certain way: normal, psycho, evade etc.
 
Last edited by a moderator: