Ramikad
Members-
Posts
1,316 -
Joined
-
Last visited
Content Type
Profiles
News Articles
Tutorials
Forums
Downloads
Everything posted by Ramikad
-
Check this out about Force Destruction: http://jkhub.org/topic/3637-from-concussion-to-destruction-help/ Well then, I'll post an "old" power: Force Throw: The Dark Jedi picks a target and Force throws any object affected by the power at him. Higher levels would affect other enemies as well to be thrown at the target. I think that a modified Force Push could do the trick, since Force Push can already push misc_model_breakable and they are already coded to move toward a specific target, though that code is broken.
-
You should put up a request for a lovely Drugon model
-
Invincible NPC´S on Single Player?
Ramikad replied to invadersmustdie's topic in Jedi Knight General Discussions
If it works similarly to how Jedi Academy works, you could make a script like this with BehavEd: //(BHVD) affect ( "luke_inv", /*@AFFECT_TYPE*/ FLUSH ) { set ( /*@SET_TYPES*/ "SET_INVINCIBLE", "TRUE" ); set ( /*@SET_TYPES*/ "SET_NO_FALLTODEATH", "TRUE" ); } Save it as luke_inv and compile it. Put the resulting script (luke_inv.IBI) into scripts and make it a .pk3. Then, once in-game, type in console npc spawn luke luke_inv, and then runscript luke_inv. The Luke Skywalker you spawned will then be completely invincible (I think... I haven't tried with the vaporizing spinning thing). -
Scripting textures/shaders to turn off or on
Ramikad replied to IrocJeff's topic in Coding and Scripts
Simply USE flash, I think. That's how lights are turned on and off, or on and a different lightstyle. Try and see if it works. Then the various WAIT instructions to set the timing. -
-
Scripting textures/shaders to turn off or on
Ramikad replied to IrocJeff's topic in Coding and Scripts
It should be possible, because you trigger the turning on and off of any light by using the light itself. You can WAIT those times, then USE it, then USE it again after another WAIT to set the timing. -
I'm fine with that. I can't imagine a new Jedi Knight game in this age to be similar (gameplay wise) to Jedi Outcast and Jedi Academy - that is, NO Force Abusing, NO lighting-fast swings, NO cutscene-like duels, NO uninspired characters. Sure, I'd welcome a better engine, but I'm not sure if that's worth the price.
-
All of the above. I'd add that Areaportals can only be used in conjunction with any STRUCTURAL brush. DETAIL brushes won't work with areaportals. To make a very basic example, you want to "seal" a room with structural brushes (walls, ceiling, floor, doors), and make crates and decorative stuff detail brushes. Portals however don't stop at Areaportals: there are also Hint Portals, that can be used very well in corridors that curve (again, with structural brushes). Here's a tutorial about them: http://map-forge.net/wiki/doku.php?id=tutorials:hintportals_data:hintportals1 And last but not least, the obscure Antiportals. I haven't gotten quite far with them, but as far as I understand, they create "holes" that prevent the rendering of anything that's beyond them if you look at them straight, but they do NOT add up to .bsp space. All in all I'm not even sure you need to hide them in a structural brush, or if detail brushes work fine. My knowledge about it is limited VIS would stand for "Visibility", I guess. There are a few values that affect it: distancecull will set the max distance after which objects and brushes start disappearing. And there's blocksize or chopsize, that... I don't know what they actually do. As a final note, as Pande once mentioned, a good VIS compile leads to a better Light compile.
-
Wasn't the limit 4096?
-
Isn't it easier (if it's possible) to just use a shader that rotates the clock hands at the right speed?
-
This seems like the best option. Try it.
-
I'm going to pick Medium. Though it may be not as effective as a well-used Strong, it's my favourite because it's the most immediate style.
-
Woah.
-
Be mindful of the "blocky" aspect. A carved out temple shouldn't necessarily be blocky, rather "artificial".
-
It's called BOTH_BUTTON2. BOTH_BUTTONHOLD causes the targeted Player or NPC to play the pressing button animation and hold it down. In case you're interested, if you load a Ghoul2 model in ModView you can check out any animation they have, selecting them from Sequences and then Play. http://jkhub.org/files/file/90-modview/
-
Knight of the Force Total Conversion
Ramikad replied to Petzi's topic in Jedi Knight General Discussions
As far as I know KotF is installed in the LucasArts folder. -
Bad playermodel (stormtrooper) for SP cutscenes...
Ramikad replied to Dusty's topic in Jedi Knight Tech Support
Open up the console (shift + ~) and type screenshot. Alternatively, I think you can type developer 1 or devmode 1 (not sure which one) and press F12 to take a screenshot, but perhaps that only works with the main menu. -
It's not dark. It's black. A slightly more friendly way of keeping it dark but still barely-visible is to set up a _minlight value in the worldspawn, that causes every surface to have a bare minimum of light.
-
- 7 comments
-
- Star Wars Related
- Male
-
(and 2 more)
Tagged with:
-
At this point I'd suggest you change the mapname key of target_level_change to a base map, to see if it may be responsible in some way.
-
As far as I know, you're not missing anything. How exactly doesn't that work? Does any error pops up, or simply nothing happens?
-
- 7 comments
-
- Star Wars Related
- Male
-
(and 2 more)
Tagged with:
-
Lovely. Now make it flyable Just kidding (partially). As for scripts, you could check out these tutorials here: http://jkhub.org/tutorials/article/148-icarus-scripting/ http://jkhub.org/topic/5149-lets-map-singleplayer/ You should easily assimilate the basics. Good luck
-
You could put a cool shiny shader on that scales; for example, the one used for mp/s_metalC.
-
The basic idea behind this is essentially "exploiting" a feature of Jedi Academy, which is the possibility of having multiple blades, even originating from the same tag. Adding more blades of different colors gives the impression of a single blade of a different color. Not sure if the damage multiplies without decreasing the saberdamage, though. I made a few tests in the past to try and replicate Maw's strange orangeish-red colored lightsaber with this technique.