Mapping help

reap3

L1: Registered
Nov 25, 2010
7
0
Hi, i'm trying to make an all "fun" map for the server I play on and I am running into a few snags.

Such as:

Spawning and placing bots in certain positions doing certain things.

Finding this one model i've been looking for, it's a shipping crate like the boats use, I wanna say i have seen it in granary but I don't really know.

Controlling the number of times the Intel can be capped.

Making my caps to where anyone can cap them such as in a domination map so i've heard.

I went through here a while back looking for prefabs/textures that would seem useful in my map and found this rocket spawner prefab, I want to use that in my map but i can't understand just how to get it working and I wanna know more about how it works.

I have already put a really long time into this map and I would hate to put it aside because I don't know enough to move forward with it.
 

corpsinhere

L1: Registered
Mar 21, 2010
15
1
Finding this one model i've been looking for
and
Making my caps to where anyone can cap them
For both of these questions I point you to: A Boojum Snark's Ultimate Mapping Resource Pack
It has great examples of most game-types; it also has many many models all laid out in one map for easy browsing.

Controlling the number of times the Intel can be capped.
While there might be some tricky way to do this - the ctf win conditions are usually set on the server, not in the map.
 

Seba

DR. BIG FUCKER, PHD
aa
Jun 9, 2009
2,364
2,728
Corpsinhere is right: server CTF cap settings override map settings.

You can spawn player models with prop_dynamic, setting their models to playermodels, and setting whichever animation you want; the latter can be changed by I/O controls. Getting the bots to work is a bit more tricky, if not impossible at all.

The rocket spawner is simple, as it is basically a moving prop with a trigger_hurt attached:

how did I do that?
-spawn a tf_projectile_rocket, however this does not have speed, nor a team, so it hangs in the air and doesnt hurt anybody.
-Create trigger_push wich pushes pushebles, wich a rocket happens to be, at the speed of a rocket
-create a trigger_hurt and parent it to the rocket
-kill, kill, explode
 
Feb 14, 2008
1,051
931
Finding this one model i've been looking for, it's a shipping crate like the boats use, I wanna say i have seen it in granary but I don't really know.

It's better if you avoid it. That model is vastly overused, particularly by newer mappers.
 

reap3

L1: Registered
Nov 25, 2010
7
0
Corpsinhere is right: server CTF cap settings override map settings.

You can spawn player models with prop_dynamic, setting their models to playermodels, and setting whichever animation you want; the latter can be changed by I/O controls. Getting the bots to work is a bit more tricky, if not impossible at all.

The rocket spawner is simple, as it is basically a moving prop with a trigger_hurt attached:

I don't exactly get what exactly what I/O to use to work with it. My idea was to have an area where someone as pyro can hit the green switch for easy and it shoots one rocket out that they can use with tennis or whatever, red being the harder mode with a few coming at once or a few in a row.

Thanks to everyone else i will use your advice and especially thanks for the ctf and that model advice it takes a huge load off my idea needs.
 

Seba

DR. BIG FUCKER, PHD
aa
Jun 9, 2009
2,364
2,728
Setting up different difficulties is easy as pie. Just have a way to set off the rockets (whether it be a button, func_breakable with infinite health, whatever), and then have that activate either one rocket, or a bunch of them. If you use multiple sets of rockets and multiple activators then you can easily have a whole ton of difficulties.
 

reap3

L1: Registered
Nov 25, 2010
7
0
Setting up different difficulties is easy as pie. Just have a way to set off the rockets (whether it be a button, func_breakable with infinite health, whatever), and then have that activate either one rocket, or a bunch of them. If you use multiple sets of rockets and multiple activators then you can easily have a whole ton of difficulties.

Sorry I ment more of what to use like in the lines of Output: Fire or something, thanks for the multiple rocket sources idea for different difficulty.

So is it Func_push + Prop_dynamic + Parented trigger_hurt? I am mostly new to using Entitys except a few I use all the time.