Warning: array_merge() [function.array-merge]: Argument #1 is not an array in [path]/archive/global.php(40) : eval()'d code on line 2
Custom in-map scoreboard [Archive] - TF2Maps.net Forums

PDA

View Full Version : Custom in-map scoreboard


TheFragMan
02-07-2008, 04:12 PM
There have been several threads about custom scoring gamemodes, and how to keep track of the score to determine the winner of the match. But my question is, what would be the best way to create an in-map scoreboard to put on the walls that would update when a team scores? I can't think of an easy way, but I figured some of you guys might have tried to do this already.

Narkissus
02-07-2008, 04:16 PM
In Roden's Dom_complex map there is these things on the walls by the cap points that has textures(i think?) that climp up the wall with every point added, and lines to show how far its at. thats all i can think of as to what ive seen done for that sort of thing. Look at that maybe.

Deadeye2007
02-07-2008, 04:32 PM
Only thing I could think of is making a bunch of overlay textures, tying them to a trigger, and "killing" them upon point score, while adding the next one. That would be way too complex.

Youme
02-07-2008, 04:41 PM
You can make textures with multiple frames easily now with the new engine so making a numerical texture 0-9 and then having 3 in a row next to each other with a few logic entities should do the trick
I'd set it up real quick if I knew how to make multi frame textures

roninmodern
02-07-2008, 04:48 PM
That's really interesting.

There was a map in the original UT that was 3 skyscrapers, and inside each one was a ticker that displayed who was leading.

TheFragMan
02-07-2008, 04:51 PM
Only thing I could think of is making a bunch of overlay textures, tying them to a trigger, and "killing" them upon point score, while adding the next one. That would be way too complex.

Yeah, that's the first way I thought of too, but like you said, really complex.


You can make textures with multiple frames easily now with the new engine so making a numerical texture 0-9 and then having 3 in a row next to each other with a few logic entities should do the trick
I'd set it up real quick if I knew how to make multi frame textures

That's a pretty good idea. Later tonight when I get home from work I'll try searching the internetz for how to make those. But if you find out how,or if anyone else has some input, let me know.

TheFragMan
02-07-2008, 04:53 PM
That's really interesting.

There was a map in the original UT that was 3 skyscrapers, and inside each one was a ticker that displayed who was leading.

Haha, yeah, i remember that map... Back in the good ole days of classic UT DM.

PandaN
02-08-2008, 09:14 AM
I did it recently by having two sets of all of the 0-9 numbers on a wall with a math_counter & logic auto triggering enable or disable for each number etc.

Mine was a duel map, so I made two triggers that occupied the arena area. When red stopped touching his one (OnEndTouchAll) which was from death, it added to the blue team counter, and vice versa - using a team filter of course. If you're talking about cp's you can make the CP's output when they are capped, or if its ctf the flags themselves have outputs of OnCapture etc as well :)

TheFragMan
02-08-2008, 09:52 AM
I did it recently by having two sets of all of the 0-9 numbers on a wall with a math_counter & logic auto triggering enable or disable for each number etc.

So, were the numbers overlays?

Also, even though I've gotten it to do what I want before, the math_counter still confuses me. How exactly did you set it up?