Jump to content

Toggle this categoryToggle Message Visibility   Welcome to our Community, Guest!

Get involved and become a part of our growing community. It's absolutely free! Register an account and join us today. Already a member? Sign in!

* * - - - 3 votes

[owc_quarry] Quarry


165 replies to this topic

#81 Jgoodroad

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 294 posts

Posted 21 November 2010 - 06:54 PM

I need to know how to turn combine gates on and off, I need to know how to do a "destroy the generator" and "Hack the console" Objectives, and I need to know how to make a random objective spawner. (where it randomly selects a series of objectives, and other outputs...like a combine gate being on/off, for multiple paths)

#82 braddollar

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 252 posts

Posted 21 November 2010 - 07:14 PM

View PostJgoodroad, on 21 November 2010 - 06:54 PM, said:

I need to know how to turn combine gates on and off

Change the alpha on the brush with an input, or kill the brush. Change the skin on the model fence. This is assuming you're using the same kind of "gates" you see on citadel or breach.

View PostJgoodroad, on 21 November 2010 - 06:54 PM, said:

I need to know how to do a "destroy the generator"

func_button set to activate on damage. combined with some math_counter and some logic_relay. then some env_explosion triggered by them.


View PostJgoodroad, on 21 November 2010 - 06:54 PM, said:

I need to know how to do a ... "Hack the console"

basically a trigger_multiple set to add to a math_counter every x seconds until it hits what you want.

View PostJgoodroad, on 21 November 2010 - 06:54 PM, said:

I need to know how to make a random objective spawner. (where it randomly selects a series of objectives, and other outputs...like a combine gate being on/off, for multiple paths)

logic_case combined with logic_auto, or logic_auto_ow.

#83 SamC

    CC Contributor for OW

  • Community Contributors
  • Pip
  • 25 posts

Posted 21 November 2010 - 07:28 PM

Just wanted to say that spreading fire sequence is sweet! And I can throw the sequences I created into a vmf if you want, although there might be some inefficiencies or better ways to do it. But Brad's descriptions will get you going in the right direction.

#84 Jgoodroad

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 294 posts

Posted 21 November 2010 - 10:45 PM

A vmf would help...

#85 braddollar

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 252 posts

Posted 21 November 2010 - 11:20 PM

View PostJgoodroad, on 21 November 2010 - 10:45 PM, said:

A vmf would help...

No offense but it should be pretty simple to figure it out with the information I gave. That said, if you're really curious and can't get it from that you could just decompile the maps and take a look at how they've done them

#86 Auxor

    Barnacle

  • Members
  • PipPipPip
  • 121 posts
  • LocationLondon, UK

Posted 22 November 2010 - 02:28 AM

Combine gates are simply a playerclip volume next to a func_illusionary or whatever its called.

And i'm baffled by the objectives as well, the entity system is difficult to understand as a whole.

#87 braddollar

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 252 posts

Posted 22 November 2010 - 04:32 AM

View PostAuxor, on 22 November 2010 - 02:28 AM, said:

Combine gates are simply a playerclip volume next to a func_illusionary or whatever its called.

And i'm baffled by the objectives as well, the entity system is difficult to understand as a whole.

These should help you get started. You can find a a lot more information about these things by simply using google.

http://www.interlope...Life_2/Entities

http://developer.val...uts_and_Outputs

Not specifically for Overwatch, but the vast majority of the entities are the same or similar
http://ratzps.com/ho...id=38&Itemid=62

#88 WAXT

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 319 posts
  • LocationAustralia

Posted 22 November 2010 - 06:52 PM

View PostAuxor, on 22 November 2010 - 02:28 AM, said:

Combine gates are simply a playerclip volume next to a func_illusionary or whatever its called.
Again, there is a PREFAB for this. You don't need to make the gates, they're already there!

#89 Jgoodroad

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 294 posts

Posted 22 November 2010 - 10:31 PM

View Postbraddollar, on 22 November 2010 - 04:32 AM, said:

These should help you get started. You can find a a lot more information about these things by simply using google.

http://www.interlope...Life_2/Entities

http://developer.val...uts_and_Outputs

Not specifically for Overwatch, but the vast majority of the entities are the same or similar
http://ratzps.com/ho...id=38&Itemid=62

I think your forgetting that the objectives in OW are different, They have indicators and area displays.

I feel it goes beyond the standard entity work, the one thing I would NOT want to do is fashion my own half-arsed objective only to realize I did not do it correctly.

If your links to tutorials I have already read had been usefull I think I wouldn't have this problem.

#90 braddollar

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 252 posts

Posted 22 November 2010 - 10:48 PM

View PostJgoodroad, on 22 November 2010 - 10:31 PM, said:

I think your forgetting that the objectives in OW are different, They have indicators and area displays.

I feel it goes beyond the standard entity work, the one thing I would NOT want to do is fashion my own half-arsed objective only to realize I did not do it correctly.

If your links to tutorials I have already read had been usefull I think I wouldn't have this problem.

Well I did forget that Zombie Panic is not Overwatch.. wait, no I didn't. Read the tutorial next time, use your brain, and try to apply the information, rather than just dismissing it out of hand because it's not exactly for Overwatch. It provides useful information for setting up objectives. Some of the entities used in Zombie Panic are different than in Overwatch, some of them are the same. Most of what is used in Zombie Panic can also be found in Overwatch, but perhaps with a slightly different name. If you had read the tutorial you would have found that it references info_beacon which is very similar to the env_hint_ow or env_indicator_ow. It also explains how to setup a sort of area display like what you see in Overwatch. The bottom line is that it is similar enough that you can learn a lot from reading the tutorial. Read it, use your brain, and apply the lessons from that tutorial to making your own unique objectives for Overwatch.

tldr: the links are useful, and if you read them and used your brain you wouldn't have a problem.

#91 Jgoodroad

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 294 posts

Posted 22 November 2010 - 10:52 PM

I don't feel right trying to convert how to make objectives for one game with another... even if the differences are as slight as a name-change, I would find a way to fuck it up.

#92 braddollar

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 252 posts

Posted 23 November 2010 - 10:51 PM

I got bored and made an example map for you. http://dl.dropbox.co..._objectives.bsp

Download it, check it out, decompile it to see how to make the objectives contained within.

#93 AndY

    Evil Bunny

  • Coordinators
  • PipPipPipPipPipPipPip
  • 889 posts

Posted 24 November 2010 - 12:03 AM

View Postbraddollar, on 23 November 2010 - 10:51 PM, said:

I got bored and made an example map for you. http://dl.dropbox.co..._objectives.bsp

Download it, check it out, decompile it to see how to make the objectives contained within.
Wouldn't it have been better to just give him the vmf? o:

#94 Auxor

    Barnacle

  • Members
  • PipPipPip
  • 121 posts
  • LocationLondon, UK

Posted 24 November 2010 - 03:09 AM

He can always use VMEX to decompile it.

#95 The Joker

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 363 posts

Posted 24 November 2010 - 06:34 AM

View PostAndY, on 24 November 2010 - 12:03 AM, said:

Wouldn't it have been better to just give him the vmf? o:


View PostAuxor, on 24 November 2010 - 03:09 AM, said:

He can always use VMEX to decompile it.

Its an inside joke...

"Never gonna give you up, never gonna let you down!"
- Rick Rolled!@!!!!!!!!!!!!!!!!!@@

#96 Jgoodroad

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 294 posts

Posted 28 November 2010 - 01:00 AM

I am almost done with the technical bit of my mapping, soon...very soon if I don't fuck things up... I will get a playtest going.

which reminds me... when will the OW map upload section be ready?

#97 Jgoodroad

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 294 posts

Posted 28 November 2010 - 02:24 AM

Well, my last compile went especially well, many of my spawn problems have been fixed or are almost fixed... so I decided to make a quick video showing another trap I made, it looks pretty sweet from the rebels perspective, but it needs tweaking (as I am sure you can guess)



#98 Jgoodroad

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 294 posts

Posted 28 November 2010 - 07:54 PM

Just finished placing my troop spawns, and I got my gates and rappeling combine to work.

now all I need to do is

- add metrocop spawns
- add secondary armory
- add objectives (static set for now, alternating set after the contest is over, I will try to fit them in if I can, but they will not be in the playtests next weekend.)
- I think my manhack spawn needs some tweaking, I might add a second one
- change all my spawn icons to diamonds... I failed.


AND REMEMBER, although I may seem like an arse sometimes, I am open to suggestions and comments as long as they are constructive... I would not have gotten this far without the input of the community. and thanks to WAXT for reminding me about the prefab tool, and although it sometimes doesn't work for me it has helped greatly.

#99 WAXT

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 319 posts
  • LocationAustralia

Posted 28 November 2010 - 08:07 PM

No worries. What can i say, i'm here to help. :thumbsup:

Good luck with the playtests. Can has invite? :whistle:

#100 Jgoodroad

    CC Contributor for OW

  • Community Contributors
  • PipPipPipPip
  • 294 posts

Posted 28 November 2010 - 08:27 PM

View PostWAXT, on 28 November 2010 - 08:07 PM, said:

No worries. What can i say, i'm here to help. :thumbsup:

Good luck with the playtests. Can has invite? :whistle:

of course, but we will see what is what when the upload section of this site is complete, "later this week" (Andy)





11 user(s) are reading this topic

0 members, 11 guests, 0 anonymous users