#188 posted by Torgo on 2018/10/10 22:03:53
Thanks for the help guys, I'm really against discovering the wheel again, so existing code helps a lot.
Also, I really appreciate your videos dumptruck_ds, it's actually the reason I started messing with Quake.
You Might Need...
#189 posted by Qmaster on 2018/10/10 22:14:19
Extras_r4 has some fancy particle effects, in particular it turns nails and rockets into 'particle' objects that react to forces. That mod has a cool gravity well thing that pulls nails and rockets away. Could be used to do the reverse.
http://www.quaketastic.com/files/single_player/mods/extras_r4_fixed_saves.zip
@Torgo
Thanks for saying that, makes my day!
There's a newer version of extras now that Khreathor fixed up. I'd suggest that. The source is included in uwjam. See here:
http://www.celephais.net/board/view_thread.php?id=61613
#191 posted by R00k on 2018/10/18 05:06:35
just curious why on the first post it is raining inside?
2. Video of rain: https://youtu.be/NRud8T88tDc
@R00k
#192 posted by Spike on 2018/10/18 11:23:52
maybe baker was curious as to whether the floor entity thing would cause the splash effect too (not my video, and I don't remember what state I left my examples in).
Traceline And Texture Questions
#193 posted by Torgo on 2018/10/20 01:22:46
I'm trying to check what texture is below the player when he walks, then I'll change the sound of his steps depending on the texture.
I found this function in fteextensions:
string(entity e, float s) getsurfacetexture
So I thought that I should use traceline to get an entity below the player to get its texture:
traceline (self.origin, self.origin + '0 0 -40', 0, self);
But trace_ent always returns world.
I'm almost positive I'm doing everything wrong here, that traceline only interacts with entities and not the map itself.
Any ideas?
#194 posted by Torgo on 2018/10/20 01:31:06
Yeah, I was completely wrong.
Just do this:
local float surfnum = getsurfacenearpoint(world, self.origin + '0 0 -40');
local string s = getsurfacetexture(world, surfnum);
sprint(self, s);
Missing Textures On Models
#195 posted by qazzaq on 2018/10/20 08:28:11
Textures for models used with DP do not affected in QSS. Models still grey.
How to solve an issue?
Spiked Particle Effects
i was playing through lost sepulcher months back, and i was using the ad spiked mod, and i had the particle effects working.
i downloaded the most recent version of spiked, extracted the contents to the root quake folder, ran the exe, tried out vanilaa quake, but i cannot see the partical effects.
i must admit, i'm out of the loop here, so any advice would be appreciated!
Qss Effects
#197 posted by Spike on 2018/11/23 07:29:56
the particle stuff in qss were added for use by mods or maps, rather than forcing it on all users (retaining the quakespasm feel by default).
ad uses them, vanilla does not.
if you want to use custom effects, either use the r_particledesc cvar to tell the engine where to load the particle effects from, or do the equivalent via the particleeffectnum/pointparticles/trailparticles qc builtins, or use worldspawn keys of the form "_texpart_TEXTURENAME" "CONFIG.EFFECT" in your own map creations.
Without one of those, you'll get the same results as you would with unmodified quakespasm.
#198 posted by Kinn on 2018/11/23 11:49:26
Are you saying that the version of spiked released for AD has particles forced ON in the engine, and all other versions of spiked don't?
Kinn (you Forgot To Log Out)
#199 posted by bal on 2018/11/23 11:55:55
No, they are opt-in only, and AD has opted in basically, it calls the various particles effects in the qc etc.
As far as I know there is no version of QSS specific for AD anyways? But AD is probably one of the only mods that uses these features?
Learning Curve
ah, i'm not really at the level where i can grasp a lot of this.
i was talking to rob martens, and he mentioned what i think you mentioned first (i quote):
1.) From a copy of Arcane Dimensions, copy the particles directory and the effectinfo.txt file over to your ID1 directory.
2.) In the QSS console, enter r_particledesc "effectinfo" to enable the use of the effectinfo file instead of the classic particles.
i'll give that a go.
cheers spike.
#199
#201 posted by Kinn on 2018/11/23 12:24:56
Ah I'm confused because i thought the question sounded like "AD run with the spiked exe released for AD has particles, but if you replace with newer version of spiked exe no particles appear".
That's how I took the original situation, but if I'm totally wrong then disregard. Probably my crap reading comprehension.
#202 posted by Kinn on 2018/11/23 12:26:23
oh LMAO, sorry just read the original post #196 and he's talking about them not appearing in vanilla.
So yeah ignore me.
#203 posted by Tribal on 2018/12/21 08:28:01
I'm playing the Xmas Jam 2018 with Quakespasm-Spiked-ADMod.exe and i'm getting this error with both Scampie's and Strideh's maps:
Host_Error: Illegible Server Message 119, previous was svc_serverinfo
Anyone knows what's happening? :/
#204 posted by ericw on 2018/12/21 19:01:27
Spile will know better what that is but try updating to the latest build:
http://triptohell.info/moodles/qss/
The qss-admod was a one-off build I made with a few patches to Spike's engine when AD came out but it hasn't been bug fixed since.
@ericw
#205 posted by Tribal on 2018/12/21 23:22:43
Thank you very much, sir!! Now it's working =D
I didn't knew that you guys have been updating Quakespasm-Spiked =D
@ericw
#206 posted by Tribal on 2018/12/22 03:32:21
It's me again. Sorry for the double post...
One thing that i noticed when i was testing xmas jam with another source-ports is that the start map have snow falling from the sky in quakespasm and markV, but not in quakespasm-spiked...
i opened the start.map file in trenchbroom, and it seems the snow is made by something called "misc_particletemplate"... quakespasm-spiked doesn't understand this feature?
#207 posted by Spike on 2018/12/22 12:00:11
set pr_checkextension 0 if you want mods (like AD) to treat qss like they would quakespasm.
@Spike
#208 posted by Tribal on 2018/12/22 13:34:27
Thanks!
But when i do this i don't have those cools effects (smoke, sparks, somke, etc) from quakespasm-spiked anymore :P
i was also trying to make a *.ent file for QMaster's map "Gift of the Boxlord" (to make snow in the map) but i noticed that the *.bsp already had a line where it says:
"_texpart_sky_xsnow" "fte_weather.tex_skysnow"
but there is no snow falling, even when i write r_particledesc fte_weather or r_particledesc weather on the console :(
#209 posted by mankrip on 2019/01/14 02:56:03
How to disable the custom particle effects? I've tried all cvars I could think of, and nothing. Specifically, I'd like to disable the custom TE_GUNSHOT particles, because lots of 8-bit alpha overdraw makes the engine too slow when up close.
Also, I wonder if Spike could fix the crash when FSAA is enabled on Intel HD Graphics 3000 IGPs.
#210 posted by mankrip on 2019/01/14 03:19:58
Ok, I've just re-read the thread and will try a couple ways to disable the custom particles.
#211 posted by Spike on 2019/01/15 11:22:05
I cannot fix your intel drivers for you.
that said, I do wonder if its caused by the use of glCopyTexSubImage. Either way its not something I can test/debug/fix for you.
particle configs can get loaded a few ways:
non-default r_particledesc cvar setting
worldspawn _texpart_* keys
qc particleeffectnum() calls that include a full-stop separator.
chances are the mod is doing it explicitly, which implies you need to mod your mod to disable it.
(assuming this is AD you're using, you'd need to open effectinfo.txt and strip out the TE_ effects that are generally at the start of the file - sock used a different prefix for extended effects, and if you strip his new effects then there's no fallback and you'll see less particles there. Or you can just set pr_checkextension 0 to prevent the mod from realising that it can use those particle effects thus preventing it from forcing them to load.).
Haze.cfg Crash
#212 posted by bruh on 2019/05/13 04:44:50
When I set r_particledesc to "haze.cfg" on a map with torches it hardlocks on r10. I've booted up into start and e1m1 with this active and it has froze every time.
|