[Logo]
 
  [Search] Search   [Recent Topics] Recent Topics   [Members]  Member Listing   [Groups] Back to home page 
[Register] Register / 
[Login] Login 
Trying to start a server and need help!  XML
Forum Index -> UnrealScript, Coding, Mapping, and 3rd party Mods
Author Message
Burk3M



Joined: 06/11/2011 14:08:57
Messages: 3
Offline

I'm starting to try and make a ut server hosted off my computer to begin to see if i can get it where i want it.

The gametype i want to play is bombing run.

I also do not want there to be many levels so I'm starting with 26 as the max lvl

I do not know how to make it so that you get points for scoring a goal in bombing run. I have no coding knowledge

I also want to know how to edit the requirements for skills.

Eg. I want to have regeneration but I don't want people to have tons more health. So I would like to edit the costs of skills and skill points per lvl to make it balanced.

I have no idea where to start with the editing
Locrian

Rampage

Joined: 11/05/2010 16:07:35
Messages: 134
Offline

Welcome to the forums.

I'm not a coder or anything, but this thread might help you with editing requirements for skills, and/or some of your other objectives. Good luck.
Burk3M



Joined: 06/11/2011 14:08:57
Messages: 3
Offline

thanks for the link, I managed to find that shortly after posting and have sorta figured out my stats editing. For some reason when I switch the requirement for retaliation to 10 damage reduction it stays at 50 in game.
When I switch the health bonus stat lower it works fine.

The main thing I'm concerned about now is trying to give points for scoring a goal, preferably only to the scorer. I think it might be a hard thing to do.

If I am figuring this out right I would do something like

//Give experience for game objectives
function ScoreObjective(PlayerReplicationInfo Scorer, Int Score)
{
local RPGStatsInv StatsInv;

if (Score >= 0 && Scorer != None && Scorer.Owner != None)
{
StatsInv = GetStatsInvFor(Controller(Scorer.Owner));
if (StatsInv != None)
{
StatsInv.DataObject.Experience += Max(Score, 1);
RPGMut.CheckLevelUp(StatsInv.DataObject, Scorer);
}
}

Super.ScoreObjective(Scorer, Score);

so I would need to know what the score objective is called?
 
Forum Index -> UnrealScript, Coding, Mapping, and 3rd party Mods
Go to: