Monster Statue
#8315 posted by JPL on 2009/02/21 18:53:51
Is it possible with Quoth to have monster statues, that will wake-up on trigger event ?
Lighting Question
#8316 posted by mechtech on 2009/02/21 19:38:25
#1 I use WC 1.6 it supports a color picker. The format is Quake2 0-1,0-1,0-1 for RGB. What is considered the standard 0-1 or 0-255 for RGB.
#2 What modern tools support the 0-1 format? (not Hmap2).
#3 Must obey the use of _color so as not to screw with Quoth's light entities.
Jpl
#8317 posted by necros on 2009/02/21 19:45:59
i'm thinking this: func_wall with model key set to the monster and appropriate frame (like you set up for a monster corpse).
then a trigger that kills the func_wall model and spawns in the correct monster.
maybe some debris spawners for effect and a func_togglewall on top of the func_wall to make it 'solid'.
Necros
#8318 posted by JPL on 2009/02/21 20:46:21
OK, thanks, I'll try it.
I thought it was something available with Quoth. It may be good idea to add such feature BTW ;)
What Do Dale Earnhardt And Pink Floyd Have In Common?
#8319 posted by Preach on 2009/02/21 21:14:49
You will probably run into a problem with the func_wall, "SOLID_BSP with a non BSP model". You can use mapobject_custom to similar effect, although you'll have the non-solid problem.
Oh Sorry
#8320 posted by necros on 2009/02/21 21:53:22
yeah, my bad. for my original post, i should have said func_illusionary instead, since func_wall doesn't work, but i totally forgot you added in the custom mapobj entity, preach. :)
But
#8321 posted by madfox on 2009/02/21 23:03:24
both fly a plane
#8322 posted by JneeraZ on 2009/02/22 19:22:40
Dale Earnhardt : "I'd hit it like a wall!"
Necros
#8323 posted by JPL on 2009/02/22 19:58:50
No problem ;) I'll test the method ASAP :D
Close...
#8324 posted by Preach on 2009/02/22 22:52:21
The real punchline is For both, their final hit was "The Wall"
LOL
#8325 posted by HeadThump on 2009/02/23 03:21:39
#8322 posted by Willem [24.199.192.130] on 2009/02/22 19:22:40
Dale Earnhardt : "I'd hit it like a wall!"
As for Dale Jr. I have seen him walk out of a bar with pair of fugly skanks on his arms. He'll hit on anything.
No Log Exists
#8326 posted by KamiKaze on 2009/02/28 02:28:49
When I run WC 3.33, it says the following for everything in the textures directory:
Error creating HLWAD: c:\program files\worldcraft\textures\id_base.hlwad ... details ...No log exists.
This is not such a big deal since I already have the Quake/Hipnotic/Raven etc textures converted and working. But if I want to convert new textures, it won't work.
Any ideas?
Hmm
#8327 posted by DaZ on 2009/02/28 12:33:30
Try using a program that can convert wc 1.6 wads to wc 3.3 wad files, wadconv.exe is a good one, but I dont know any links sadly. I think texmex can do this too, but I dont have a link for that either, sorry! :(
Links
#8328 posted by madfox on 2009/02/28 21:08:16
TexMex
#8329 posted by JPL on 2009/02/28 21:17:48
Hexen Ii Styled Text Dialogue Boxes
#8330 posted by enki on 2009/03/01 18:47:52
Hay guys,
I'm trying to do something pretty simple here for a series of Quake SP maps... and don't know the right way about going about this. If anyone remembers the dialogue boxes when you looked at a stele or obelisk etc. in Hexen II, it would bring up essentially a box with text describing it etc. and I'm trying to get the same thing in Quake without extensive coding and/or shooting pains in or around the anus. Normal triggers don't seem to work right w/ this due to the text remaining on the screen only for a set client-side amount of time :/
Any thoughts on getting multiple lines of text or a paragraph to stay on the screen longer, then resume gameplay?
I Think You'll Have To Code It In
#8331 posted by RickyT33 on 2009/03/01 19:00:36
Inside3d.com is the place to go, although there are some coders which are geniouses who may yet reply here......
This Is Func_read Or Somethin' Related
#8332 posted by spy on 2009/03/01 19:19:16
you should ask tronyn about it (it was done in soe iirc)
#8333 posted by necros on 2009/03/01 19:58:06
centerprint (entity e, string s);
is the function you want. it prints the string to the entity specified. the amount of time the center print stays on screen is controlled by an engine variable (scr_centertime, i think) which you can change in the console.
so you would need to circumvent that because you can't assume scr_centertime will be a constant.
what you can do is simply keep calling the function over and over at regular intervals (let's say ever 0.1 seconds) while you are looking at whatever needs a dialog box.
then, when the player looks away, stop and send a centerprint with "" to clear the screen immediatly.
KamiKaze
#8334 posted by ijed on 2009/03/02 13:05:01
There should be a batfile called 'convtex' or something either in your WC3.3 textures folder or its root folder.
It worth noting that it converts all the texture wads, but if it fails on one for any reason then it stops converting - remove that one wad and the rest will convert ok.
If you've upgraded to Hammer then as far as I remember there's some other fuckup that stops you loading new textures in.
Necros
#8335 posted by enki on 2009/03/04 18:25:21
Thanks, this is probably the route i'm going to take due to ease of use and: tbh after looking at H2 source, the method there is a bit too out of wack for what I need..
After playing NSOE, I see that's pretty much the way I'd like it to work, so if the end result is the same / similar then all will be well.
I'll fidget w/ it.
Color Light
#8336 posted by KamiKaze on 2009/03/05 04:28:21
What do people use to achieve this? I've been googling and can't really find anything that tells you how to do it.
I read the .txt file for fitzquake and it said it supports colored lighting with .lit files. But google turned up nothing for .lit files.
KamiKaze
#8337 posted by JPL on 2009/03/05 08:54:00
.lit file is generated during map lightning process. Depending on your light tool, it is supported, or not. Generally you just have to add a -colored and/or a -lit option to your command line.
You also need to add a _color field per light entity. _colored are using r g b fields in [0:1] range (i.e equivalent to 0 to 255).
Colored Light
#8338 posted by grahf on 2009/03/05 09:06:13
Tyrlight supports colored light, exactly in the method JPL described. The readme should give more info.
http://www.disenchant.net/utils.html
Question
#8339 posted by spy on 2009/03/06 07:26:25
guys, what's the best/average _sunlight, _sunlight2/3 value? l tried with 220/100 value but its look like minlight has been used. or there is no best value :)
|