Keep it up.
Your work on your SMC projects are amazing. The new additions that come are like a Christmas present every time. I understand feedback is what makes all the efforts worth while like you explained to me before about some of the help and tutorials you gave me. It's good to take pride in what you can create and make happen within a game and you have my support in any way I can give it and my feedback to you is DAMN FINE WORK and without the SMC the game just wouldn't be the same at this point. So all I can say to anyone else out there that downloads and uses this work is to just take a brief moment to give a shout out at the thoughts of Seven's work. I notice that there are quite a few people browsing around that are not members so join up and throw some feedback around if you download or come here often.
Announcement
Collapse
No announcement yet.
Small mod compilation development
Collapse
X
-
Originally posted by Cobalt View PostIt really needs to be changed to : LMC
Leave a comment:
-
Originally posted by Mindf!3ldzX View PostThis isn't goodbye though, right? =\
No, who can simply walk away from Quake forever ?
I think I will follow SpikeŽs suggestion and spent some time on a different project. And I already found it (see bottom of this post). It will surely give me lots of new ideas/influences for Quake and the smc...
Thank you.
Originally posted by jakub1 View Postif "continue development of smc" means nehahra or travail compatible versions then absolutely YES!! :-)
-
jakub
It all depends on the available sources
Regarding the uncomparable Nehahra:
Thanks to AlexQuaker and Spike, we are finally able to compile Nehahra source with fteqcc !!
Regarding the impressive Travail:
Thanks to Asaki we have its source as well.
So, all that is left to have is *some* time to bring some features into these mods. You must say with which one we shall begin. I implemented some of the smc features into the mods: Abyss of Pandemonium, Beyond Belief, Soul of evil 1 + 2, Drake, dmsp2 and some others. So it is pretty doable.
But first of all, lets get the Reiver done, as most people (incl. myself) are waiting for it.
======================
At the moment, I am enjoying a very special game: Legend of Grimrock series.
And if this game is NOT influenced by Mr. H. P. Lovecraft as well, then tell me which one is ?!
Look at these 2 screens:
The best ambience I have seen in a game so far:
And they even have shamblers:
And zombies (but with some armor and weapons) LOL:
And you can easily play it on your favorite tablet if you want (a lot better than Quake):
Almost Human, your team is doing almost magic
Leave a comment:
-
if "continue development of smc" means nehahra or travail compatible versions then absolutely YES!! :-)
-
jakub
Leave a comment:
-
Hello,
Thank you for trying to encourage me to rewrite the mod and make it coop-able.
Unfortunately I dont even have enough time to implement all the new ideas/todoŽs on the list, so I am afraid that the rewriting has to wait for some time.
But it seems that there are a couple of people in this forum with really lots of time, so they are welcome to do it The ugly source is included and is waiting impatiently to confuse others, lol.
Reading above posts, it seems already helping a lot when disabling rain (which is disabled by default) and particle flames to mabye make it behave a bit better in coop. weather and fire are the effects which are spawned consistently all the time. Other particles are only spawned when called (very rare compared to the all-timers).
Anyhow, all the "pretty effects" are useless in fast-paced-coop anyway (just like in deathmatch), so they should be disabled for performance-sake anyhow. Yes, in the end, this mod seems really to be focused on single player. That is where my heart belongs it seems.
Best wishes.
Leave a comment:
-
Originally posted by PrimalLove View PostSeven is a dumbass and should finally quit
Who voted that option???
Seven wrote it up so i voted sarcastically.
Leave a comment:
-
@PrimalLove:
volumetric lighting dust effects?
http://triptohell.info/moodles/junk/...03052828-0.png disco time!
nope, not possible.
it would be awesome if it was.
Leave a comment:
-
Originally posted by Spike View PostI do actually have a mod/framework somewhere that has the entire ssqc stuff running clientside - play quake without even running a server (and by that, I mean the internal server that runs even in single player). The problem is that I'm too lazy to actually do anything with it, hurrah.
or allow a player to do something while spectating a game, etc...
Leave a comment:
-
Seven is a dumbass and should finally quit
Who voted that option???
Leave a comment:
-
@Spike
I will gladly take over your project. I was currently working to move all weapons to CSQC for experimentation purposes. Such a framework would greatly speed up my process and understanding. If you find such things let me know via PM and I would gladly discuss a collaboration or further your progress. Thanks!
@Seven
As Spike mentioned, many of your additions can be moved to client-side and would make your mod playable in COOP. Currently this is basically an impossibility to play it with any consistency. Most of the of the things that are creating problems from a network sync perspective in your mod is the effects. It's simply overwhelming the server to send that much data to the clients. Even one client connected will see a dramatic de-sync issue. V-Weps would need to be moved Client-side. Rain, as Spike mentioned, pretty much all of the custom particle effects for all items/weapons. If this is done the mod would certainly be very playable in coop and allow greater control of client customization of effects, etc. that they will experience on their end without bogging down the server with updates to clients that, lets face it, quake's network code simply cannot handle. I do not think most of this would be too difficult to port over to csqc at all. Most of it is the cosmetic stuff that is really making it unplayable. Custom flame effects, particle effect updates, rain, etc. Locally this is much less of an issue but sending this stuff even over LAN connections just isn't feasible.
Of course, I know your mod was never meant for online play, but its a pretty cool challenge that would not only improve your mod from a server/client netplay perspective but also a terrific chance to learn CSQC and all of the really amazing things you can do with it, assuming that is of interest to you. Either way I hope you continue development. I am a big fan of the dust effects.
Which reminds me, is volumetric lighting possible in DP or FTE? I have been able to use fog to "simulate" this effect some what but I haven't found any documentation or anything in dpextensions.qc that would produce such an effect. Pointlight or getlight? Cobalt showed me some interesting things one can do with getlight but not sure it would be applicable for volumetric lighting. Combined that type of lighting with the dust effects and you would really have a creepy environment.Last edited by PrimalLove; 10-13-2014, 12:51 PM.
Leave a comment:
-
you can (and should) do various effects clientside, like rain for instance.
then you can:
a) turn it off/on without having to get the server admin to change the setting for you.
b) not pay for it in extra bandwidth.
c) not be quite so limited with timing or network precision.
I do actually have a mod/framework somewhere that has the entire ssqc stuff running clientside - play quake without even running a server (and by that, I mean the internal server that runs even in single player). The problem is that I'm too lazy to actually do anything with it, hurrah.
Leave a comment:
-
@Seven
HUD only? I dunno about that. Theoretically you could add all weapon functions to csqc. The biggest obstacle to this is the fact that csqc doesn't understand movetype. So how would you send the rocket in a direction? Well, it does understand .velocity field. So using this you can "hack" it so that it will move the projectile as expected using frametime and velocity like this:
Code:local vector c; self.nextthink = time; [COLOR="Lime"]// This keeps the movement smooth! [/COLOR] c = self.origin + self.velocity*frametime; setorigin(self, c);
.SendEntity makes all of this possible. Same methods could be utilized for skeletal models for much more interesting movement possibilities. Lots of possibilities with CSQC tho admittedly the engines are by far the biggest limitation on CSQC's future uses.
Leave a comment:
-
Hello Cobalt,
IŽd rather not call it "L"ousy "M"od "C"ompilation, even though it is.
Hello Mindz,
I like the "ring the bell" idea of that restaurant.
As far as I know, we dont have these in Germany. But as you know, nerds usually do not go out to have fun.
Hello hgdagon,
Yes, even if it is a poor show
Hello Nahuel,
I remember Spike saying (or at least that was my understanding), that DP is capable of using csqc more or less only for HUD stuff and menues (compared to FTE). And as you remember, we worked on that csqc hud together, that I still use and I am perfectly happy with it. And regarding the menue, Spike once send me his "custom-menue-for-beginners" csqc-set, but I think I should not even start to hussle with it, as the smc cvars are simply too many to squeeze them into the in-game menue. All the explenations would also be missing (which are comments in todays smc_config.cfg). And a pre-config menue system is not what I like, as I am a "custom-settings" type of guy, hehe. Fortunately till today I could realize the things/ideas with good old classic qc.
But never say never, right ?
Thank you again everyone for your kind words.
Leave a comment:
-
I don't use mods, but I find them interesting. They are a big part of this community, which, I may remind you, attracted even The Surgeon's attention. I say keep them coming.
Leave a comment:
Leave a comment: