I didn't know that trick, cool!
Adding Maximum Ammunition ?
#298 posted by Terminal on 2013/08/12 21:53:17
Maybe A Little Too Terse
#299 posted by Preach on 2013/08/13 06:39:00
Could you clarify, are you looking for a hack which fills all the player's ammunition type (easy to accomplish with backpack_touch), or are you trying to increase the maximum ammo the player can carry (almost certainly impossible)?
Apologies, Yes The Latter.I Wanted A Kind Of Increase Carrying Ammo
#300 posted by Terminal on 2013/08/13 06:57:22
More Ammo
#301 posted by Preach on 2013/08/13 12:33:40
You'll want to write a short mod to do that then, it's outside what hacks will do for you. Also, be warned that not all engines can display ammo counts above 255 properly, which means the scope for expanding nail ammo is limited.
Gameplay Changing Thoughts
can you dynamically change the gravity values?
or set a trigger to change a mobs .target value?
I think one of the expansion packs has a way to do this but it doesn't work in coop
Gravity
#304 posted by Preach on 2013/08/20 12:42:13
You pretty much can't change the gravity with stock quake - there's a way to change it exactly once with a hack if you don't mind that you can't have an exit in your map. It's very common in mods though.
Not sure exactly what you're asking in that second question - you literally want to change the string stored in the target field? It might be better to do what you want with logic gates triggered by the monster instead.
#305 posted by Spike on 2013/08/21 06:32:27
global sv_gravity cvar, if you have a trigger or some such to issue localcmds.
or .gravity field, if you have a trigger to apply that field to entities within its boundaries.
I've no idea how to utilise either of those without a mod to do it for you.
in some engines (ie: ones that always register custom fields, ie: fte+dp), you can override .gravity on a per-entity basis by just setting the gravity field. Of course, as this doesn't apply to players, projectiles, or movetype_step (unless you somehow manage to get them airborne), all it can really be used for is to confuse the fiend+dog+spawn attack code. Which might be amusing.
What Are Some Of The Properties That Can Be Given In The "use"
#306 posted by Terminal on 2014/01/23 22:31:18
Quake Wiki Is Not Working For Me.
#307 posted by Breezeep_ on 2014/01/24 23:29:44
the article text won't show up.
Fuck Me, Sorry
#308 posted by Spirit on 2014/01/25 00:45:46
stupid mediawiki can't handle the latest version of some library which I forgot to pin when I updated earlier. will be fixed tomorrow.
Very Well Then, Spirit.
#309 posted by Breezeep_ on 2014/01/25 01:59:22
Don't screw it up again...
Follow The Leader
#310 posted by - on 2014/03/12 12:24:05
Earlier this morning, onetruepurple mentioned an idea for monsters following the player while he had the Ring of Invisibility. I didn't think it possible, but he mentioned that it was done in E4M1.
So I decompiled the map and discovered a trick that I didn't know about and think it's cool enough to share.
It's very simple, if you make a monster target a path_corner, and that path_corner has no further targets, Quake decides that that monster's next movetarget should be entity 1... which just happens to be player 1.
Here's a .bsp and .map showing this effect... don't shoot!
http://quaketastic.com/files/misc/followtest.zip
Also
#311 posted by - on 2014/03/12 12:33:11
I have no idea WHY that works.
self.goalentity = self.movetarget = find (world, targetname, other.target);
Is the relevant bit here, where self is the monster, and other is the path_corner... but why it decides on entity 1 when other.target is empty... it is a mystery?
I Guess
#312 posted by - on 2014/03/12 12:37:58
Find() must just return 1 if some of the values it's passed aren't valid?
Path_corner
#313 posted by ijed on 2014/03/12 12:57:57
I wanted monsters to reach the end of their path and just stay there, and so left the target field blank.
But the same happened - they turned and followed the player, ruining the gameplay I was going for.
This is because their movetogoal becomes "" and the player is the last entity added to the server, with that exact name, aka string_null.
I fixed it by giving the path_corners where I wanted monsters to stop a broken target.
Props to Preach for pointing this out.
What If
#314 posted by mfx on 2014/03/12 13:09:36
wait is set to -1 on path_corners?
Doesn�t this stop the pathing?
Nope
#315 posted by ijed on 2014/03/12 13:58:49
It does odd things instead, depending if its func_train or a monster_whatever.
Just for RRP guys;
The path code in RRP is more advanced as well; I ported the advanced pathing from extras r4 so there are more control entities for trains, they can be reversed, paused and so on. Wait -1 will teleport a train from one point to another and can be set per path_corner. Additionally, giving a path_corner an event key will trigger whatever targetname it's pointed at, when the train reaches that path_corner.
And He Did!
11:11:00 | <+Daz> gomap scampsp2! But not idbase kthx
11:11:20 | <+Daz> ikbase!
11:11:25 | <@onetruepurple> and not fucking dapakbase
5/5 bretty good, could use more Tarbabies though
Re: 311
#317 posted by necros on 2014/03/12 18:02:07
The reason is because other.target = "".
Find() always starts at the first entity in the list (1, the player).
It checks if the entity's targetname == "" which it does (because players don't use targetnames), so it returns the player.
Interesting...
#318 posted by metlslime on 2014/03/12 18:05:16
if you gave the player a non-empty targetname then the monster would find a different entity to walk towards...
Neato
#319 posted by - on 2014/03/12 21:07:27
Thanks for clarifying the reason
Oh Man
#320 posted by Preach on 2014/09/15 22:56:01
It's been like 6 months since we had a hack. Here's a hack for...Quoth?
http://tomeofpreach.wordpress.com/2014/09/15/quoth-required-message/
Now you can create entities which appear in your map when run under ID1, but not in Quoth. There's one simple application of this, plus the opportunity to go overboard with it instead!
Fantastic!
I was just wondering today how something like this would work. This should be mandatory knowledge for all future Quoth mappers. Thanks, Preach!
|