For direct access use https://forums.oldunreal.com
It's been quite a while since oldunreal had an overhaul, but we are moving to another server which require some updates and changes. The biggest change is the migration of our old reliable YaBB forum to phpBB. This system expects you to login with your username and old password known from YaBB.
If you experience any problems there is also the usual "password forgotten" function. Don't forget to clear your browser cache!
If you have any further concerns feel free to contact me: Smirftsch@oldunreal.com

Need Help Making Mods

Unreal Mod related boards can be found here. Missing one? Let me know.
Ariaa
Posts: 1
Joined: Sun Aug 16, 2026 12:35 am

Need Help Making Mods

Post by Ariaa »

How would I go about developing a mutator that harms the player if they stop moving? I have never touched a programming language in my life and reaaallly want this to be my first mod.
User avatar
Reborn
OldUnreal Member
Posts: 65
Joined: Thu Mar 16, 2017 6:55 am

Re: Need Help Making Mods

Post by Reborn »

Code: Select all

function PostBeginPlay()
{
Super.PostBeginPlay();
SetTimer(1,True);
}

function Timer()
{
 local Pawn P;

 for ( P=Level.PawnList; P!=None; P=P.NextPawn )
 {
  if (PlayerPawn(P) != None && Vsize(P.Velocity) < 5)
  {
   P.TakeDamage(5, None, P.Location, vect(0,0,0), 'Suicided');
  }
 }
}
User avatar
Hyper
OldUnreal Member
Posts: 3577
Joined: Fri Oct 11, 2002 5:41 pm

Re: Need Help Making Mods

Post by Hyper »

Imagine trying to sleep. :D
Alter your reality...forever.

http://www.hypercoop.tk
unreal://hypercoop.tk

Return to “Unreal Mods”