Jump to content

Circa

Administrator
  • Posts

    6,503
  • Joined

Everything posted by Circa

  1. PM me with anything you have that we don't, and I'll gladly upload them!
  2. Hm, I think it was because it was a non-https link. I fixed that, try now. It works for me.
  3. It is linked in the tutorial.
  4. Botroutes are for bots only and only work in MP. NPCs are not the same as bots. So no, this won't work for NPCs. Your question is related to scripting and should be posted in a new thread in the modding assistance forum.
  5. @AradorasXeon looks like the screenshots were lost awhile back, not sure if you are able to restore those by chance?
  6. Author: Darth Arth REQUIREMENTS: Installed GTKRadiant/NetRadiant Basic familiarity with making a simple map ARRANGEMENTS Adding NPC's to you map There are two ways of adding NPCs to your map: 1. You can use the predefined NPC-entities from the context menu in radiant (right mousebutton in 2D view > NPC > NPC-name ) 2. You can use the NPC_spawner entity, which gives you the possibility to add your own NPCs to the map. (right mousebutton in 2D view > NPC > NPC_spawner ) If there is no NPC_spawner in your NPC entity list, you are using an old Radiant version or the wrong “sp_entities.def” file. You need GTK radiant version 2.1.12 or above. If you currently cannot or do not want to upgrade your Radiant (you really should though) or your sp_entities.def file, you can add the following definition to the file: /*QUAKED NPC_spawner (1 0 0) (-16 -16 -24) (16 16 40) x x x x DROPTOFLOOR CINEMATIC NOTSOLID STARTINSOLID SHY SAFE DROPTOFLOOR - NPC can be in air, but will spawn on the closest floor surface below it CINEMATIC - Will spawn with no default AI (BS_CINEMATIC) NOTSOLID - Starts not solid STARTINSOLID - Don't try to fix if spawn in solid SHY - Spawner is shy SAFE - Won't spawn if an entity is within 64 units NPC_type - name of NPC (in npcs.cfg) to spawn in targetname - name this NPC goes by for targetting target - NPC will fire this when it spawns it's last NPC (should this be when the last NPC it spawned dies?) target2 - Fired by stasis spawners when they try to spawn while their spawner model is broken target3 - Fired by spawner if they try to spawn and are blocked and have a wait < 0 (removes them) If targeted, will only spawn a NPC when triggered count - how many NPCs to spawn (only if targetted) default = 1 delay - how long to wait to spawn after used wait - if trying to spawn and blocked, how many seconds to wait before trying again (default = 0.5, < 0 = never try again and fire target2) NPC_targetname - NPC's targetname AND script_targetname NPC_target - NPC's target to fire when killed NPC_target2 - NPC's target to fire when knocked out NPC_target4 - NPC's target to fire when killed by friendly fire NPC_type - type of NPC ("Borg" (default), "Xian", etc) health - starting health (default = 100) "noBasicSounds" - set to 1 to prevent loading and usage of basic sounds (pain, death, etc) "noCombatSounds" - set to 1 to prevent loading and usage of combat sounds (anger, victory, etc.) "noExtraSounds" - set to 1 to prevent loading and usage of "extra" sounds (chasing the enemy - detecting them, flanking them... also jedi combat sounds) spawnscript - default script to run once spawned (none by default) usescript - default script to run when used (none by default) awakescript - default script to run once awoken (none by default) angerscript - default script to run once angered (none by default) painscript - default script to run when hit (none by default) fleescript - default script to run when hit and below 50% health (none by default) deathscript - default script to run when killed (none by default) These strings can be used to activate behaviors instead of scripts - these are checked first and so no scripts should be names with these names: default - 0: whatever idle - 1: Stand around, do abolutely nothing roam - 2: Roam around, collect stuff walk - 3: Crouch-Walk toward their goals run - 4: Run toward their goals standshoot - 5: Stay in one spot and shoot- duck when neccesary standguard - 6: Wait around for an enemy patrol - 7: Follow a path, looking for enemies huntkill - 8: Track down enemies and kill them evade - 9: Run from enemies evadeshoot - 10: Run from enemies, shoot them if they hit you runshoot - 11: Run to your goal and shoot enemy when possible defend - 12: Defend an entity or spot? snipe - 13: Stay hidden, shoot enemy only when have perfect shot and back turned combat - 14: Attack, evade, use cover, move about, etc. Full combat AI - id NPC code medic - 15: Go for lowest health buddy, hide and heal him. takecover - 16: Find nearest cover from enemies getammo - 17: Go get some ammo advancefight - 18: Go somewhere and fight along the way face - 19: turn until facing desired angles wait - 20: do nothing formation - 21: Maintain a formation crouch - 22: Crouch-walk toward their goals delay - after spawned or triggered, how many seconds to wait to spawn the NPC */ What NPC will be spawned is defined with the KEY “NPC_type” in the entity properties. You can use the predefined NPC names or use your own selfmade NPCs. NPC Examples Predefined NPC: KEY NPC_type VALUE reborn Your own NPC: KEY NPC_type VALUE jedi_yoda Adding the first attack wave When adding NPC attack waves to your map it is very important that the NPCs will not spawn when the map is loaded. You have to add a “targetname” KEY to the NPCs which prevents them form spawning automatically when the map starts. The targetname KEY means this entity must be “triggered” or “used” (by other entity or script) to be spawned/activated. Since we want waves consisting of more than one enemy we need to count the killed NPCs so we can trigger the next wave once all of them are dead. Counting can be done using a target_counter. For our testmap we need a simple room like the one created in the tutorial your first map. Now we add 3 NPC_spawner. These are our first attackers (first wave). Select all 3 NPCs and press [N] for the entity properties window. Add the following KEYS: KEY NPC_type VALUE reborn KEY targetname VALUE wave0 KEY NPC_target VALUE wave1count Description: NPC_type = name of the NPC to be spawned (predefined or your own custom NPC's name) targetname = name for the NPC's in this “attack wave”. You can use this name for activating/spawning the entities by script, trigger, counter, etc. NPC_target = defines which target will be triggered when the NPC is killed. For this tutorial we are using this for incrementing the wave counter (target_counter) For spawning the first wave of attackers we will use a “target_relay” which is connected to the info_player_start entity. We could just directly connect the info_player_start to the NPCs but this way we get to learn about the target_relay, which can be very useful. Press right mouse button in the 2D view and choose target > target_relay Select the entity, press [N] and add following KEYS: KEY targetname VALUE startwave0 KEY target VALUE wave0 Now we have to connect our play start with this target_relay. Press [ESC] key for sure that nothing is selected. Select the “info_player_start”, press [N] and add these KEYS: KEY target VALUE startwave0 This connects our player start entity to the target_relay, which will activate the first attackers wave. Now we must add the first counter (target_counter) which will count the beaten NPCs. Add the target_counter to the map, press [N] and add the folowing KEYS: KEY targetname VALUE wave1count KEY target VALUE wave1 KEY count VALUE 3 Description: targetname = name for the counter. You need this for triggering the counter when the NPC is killed. target = defines which target will be activated once the “count” value is reached. count = Once this value is reached, the counter will fire his dafined “target”. If the value is “3”, this means the counter must be triggered 3 times before firing his target. In our case the counter is triggered after each beaten NPC. once all 3 NPCs are dead, the counter will trigger its target, the next attackers wave. The next attack wave Now we can add our next attackers wave. Add 3 more NPC_spawner, select them, press [N] and add the following KEYS: KEY NPC_type VALUE rebornacrobat KEY targetname VALUE wave1 KEY NPC_target VALUE wave2count Now we need a new counter for our second attackers wave. Add a new target_counter, press [N] and add following KEYS: KEY targetname VALUE wave2count KEY target VALUE wave2 KEY count VALUE 3 The third attackers wave Well, we have to repeat the steps for each ave we want to add. Add 3 more NPC_spawner, select them, press [N] and add the following KEYS: KEY NPC_type VALUE rebornforceuser KEY targetname VALUE wave2 KEY NPC_target VALUE wave3count Now we need the third counter for our third attackers wave. Add a new “target_counter, press [N] and add following KEYS: KEY targetname VALUE wave3count KEY target VALUE wave3 KEY count VALUE 3 The last attackers wave Let us add the last 3 NPC's to the map. Add 3 more NPC_spawner, select them, press [N] and add the following KEYS: KEY NPC_type VALUE rebornboss KEY targetname VALUE wave3 We do not need any NPC_target KEY for the NPC'S nor a target_counter entity here, because there will be no more attack waves in this testmap. If you'd like to add more attackers waves, you just have to reapeat all the steps again and again. Be sure all the “target” > “targetname” relations are created correctly, or your next NPC wave will not work correctly! Finishing the testmap Well, we have our attackers waves created. It's up to you if you want to add more attacker waves to your testmap. This kind of NPC attacker waves is mostly used in a “Ladder” type of maps or in single player maps where the author has bigger fighting episodes created for the player. (Note that multiple spawning waves of enemies are usually bad leveldesign though.) Save the test map as “waves.map” in your base/maps folder, compile it and let's test it Have fun! DOWNLOAD THE TUTORIAL MAP ( .map - file included) JK2 version waves_jk2.zip JKJA version waves_jkja.zip The jk2 reborn NPCs don't work properly in Jedi Academy. You need this FIX file. Unpack the ZIP and put the pk3 file in your Jedi Academy GameData/base folder. jkja_reborns_fix.zip
  7. I used this tutorial for my Christmas map, although it was for MP, it should work for SP too I assume. Wonko is right, NPC_Target activates on death so no need for an additional script. http://map-forge.net/wiki/doku.php?id=tutorials:npcwaves_data:npcwaves Of course this isn't multiple waves in your case, but it shows you how to use the counter function so a script runs when all NPCs are dead that are linked to the counter, even if its just 2.
  8. Version 1.1

    112 downloads

    This is an entity mod of the singleplayer map T2_DPRED (the one with Rax keeping you a prisoner without your saber) The goal of this mod is to make it a more usable map in multiplayer, complete with new spawns, teleporters for getting around, NPC spawners, and more. This is part of a series that I hope to complete every SP map this way. If you are wondering why do this, the benefit to entity mods is you don't need the actual PK3 in your base folder to play on the map with these changes. That means it is just another map that you can add to your rotation without sacrificing new players or worrying that players won't have a map your server is running. Orange consoles around the map are NPC spawners. They will spawn a specific NPC, some are cultist, reborn, stormtrooper, hazard troopers, etc. Red glowing energy spots are teleporters. Since not all doors could be removed easily, this is the best way to get around the whole map, getting to special areas outside of the main courtyard. Some of those rooms are good for dueling or having privacy while the rest of the players are having an FFA in the courtyard. Also fun to play hide and seek! In the main courtyard where the ATST comes out of in the SP mission, there is now a medical area with bacta tanks that heal you to full health when you press USE on them. There are also a few droids there to make it a bit more lively. -===================- -!|!- CHANGELOG -!|!- -===================- 1.0 - Initial release 1.1 - Added more bacta tanks to main area - Added droid NPCs - Fixed a couple teleports - Fixed bmodel coordinates -================- -!|!- NOTE -!|!- -================- There is a benefit to having this PK3 in your client base folder. Since the map has a big Dantooine vibe, I included the Dantooine music from KOTOR. This only works if you have it in the base folder of your client, not just the server. Otherwise normal OT music is used. -======================- -!|!- KNOWN BUGS -!|!- -======================- Some teleport buttons (the red glowing force) may require you to face at a certain angle that isn't always natural. This is just a downside to using bmodels for triggers. Spawned NPCs sometimes are too stupid to notice you even if you're close. This isn't an issue with the map, just MP NPC AI code being bad. -========================- -!|!- INSTALLATION -!|!- -========================- This is a server-side mod, so put the PK3 in your server's base folder. If you want to use it locally, put the pk3 in the base folder of your Jedi Academy GameData directory (Jedi Academy/Gamedata/base)
  9. This looks like a masterpiece of a map my friend. Really looking forward to adding it to the collection! Makes me want to start role playing in JKA again.
  10. Simple yet very well done, nice job!
  11. Hm. I'm not sure what's going on. I just tried the mod using the steam version installed on the same drive letter with the included batch file and it launched just fine. Maybe try it with OpenJK and change the .bat file in Notepad to say "openjk_sp" instead of "jasp"
  12. A quick Google search reveals that error is a Steam error, due to the game not installed in the right folder. No folder should have been moved or changed when you install mods like this, so you may need to reinstall your game. Also, the 1.01 patch is unnecessary for the Steam version, as it is already patched to 1.01 when you download the game.
  13. Richard Madden? Looks good!
  14. These maps are so good. "Mediocre" is definitely inaccurate for this thread title! You should be proud. Can't wait to see this new one released!
  15. Is the mod you're talking about this one? https://community.pcgamingwiki.com/files/file/1190-mati-hootis-assorted-fixes-for-jedi-academy/ Looks like all menu changes. The red saber option should already be an option with JAEnhanced with the RGB option. Projected shadows is just cg_shadows 3 in the console. Subtitles for all voiceovers is already in the JAenhanced menu. The menu music can easily be changed. If you'd like that menu music I can change that for you for JAEnhanced or you can do it yourself. Open zZz_jaenhanced.pk3 and go to the ui folder, then main.menu, open with Notepad. Control + F to search for music. Change the below line. exec "music music/yavin2_old/yavtemp_explore" ; Replace it with this: exec "music music/mp/MP_action4" ;
  16. The gameplay looks extremely good. Being able to go from surface to space is something everyone has wanted in a Star Wars game since gaming was a thing. So cool. Much more excited for this game now after seeing that gameplay.
  17. Not sure if any of the rest of you got in on the Limited Run editions of KOTOR but the Master Editions finally got sent out this week. If you didn't, I made a simple unboxing video to show what is inside! Definitely check it out. The master edition is full of cool stuff, and I'm super happy with it. Best parts of it are the hard cover strategy guide, full of tons of info about nearly every aspect of the game (I'm curious if anyone here knows if any strategy guide from the past was used for it?), the security spike USB drive, the saber replicas, and the Ebon Hawk pin. Check it out!
  18. Circa

    BSP Entity Edit

    That is really cool, I might have to take it for a spin soon for one of my projects.
  19. A couple months ago, Imgur, the most popular anonymous image upload service, announced that all anonymously posted images would be deleted, and all uploads going forward would require an account. As many of you know, thousands of images posted on these forums were hosted on Imgur anonymously. It has been the standard for posting images for years. Hearing that news had us concerned, not that losing all of those images in the forum was a dire situation, but that it would leave many of the threads that show progress of mods from the last decade completely useless. All Imgur images previously posted are now locally hosted Thanks to @AshuraDX going above and beyond, he did his database voodoo and retrieved every single Imgur link on the forum, including tutorials and news articles, and re-hosted them on our server, keeping the original file names in tact. For example if you posted a link like this: https://i.imgur.com/n9YsBml.jpg It is now this: https://jkhub.org/images/n9YsBml.jpg We also came up with a quick solution for albums. A simple page showing the images, while keeping the individual links in tact. https://jkhub.org/albums/VRFiDx2 Keep in mind, they didn't give much of an advanced warning before they began deleting anonymous images, so there may be a small number out there that weren't saved. Also, this is mostly a one time thing that we will do. We may look again in the future, but going forward, we recommend not using Imgur at all to host your images here, or really anywhere even if you have an account. They have shown they are not profitable enough to be sustainable, so it is most likely a matter of time before they go full paid subscription to host images, like ImageShack or Photobucket did. So how do I post images then? Local image hosting is now enabled for all users. You should now see an option to drag and drop or choose an image to upload at the bottom of your text box as shown below. We have a generous max upload size in place for now, but ask to not abuse that. Most images shared are an average of 1MB. If yours is a lot bigger than that, run it through ImageOptim or something if you want. Why didn't you allow image uploads in the forum before? In short, server storage is expensive. We tried to keep the size of JKHub as small as possible. We host all mod files in a separate CDN which keeps costs lower, and we could in theory do the same for locally hosted images, but our CDN service is not supported natively by the forum software. When forum activity was booming, it made the most sense. Now that activity is much lower these days, having it enabled should be okay. What about the Files section images? We already host all images in the Files section, and we have gone out of our way to save and manually upload any images submitted via Imgur or other hosts, to avoid this very problem from ever happening. Though, it was always more likely for the author to delete the images before an entire service was shut down, after seeing what happened to ImageShack and Photobucket, we didn't want to risk a key part of hosting mods to ever get lost, and now we were proven to be right about that. So those have always been hosted locally on our server since day one. Bot attacks In other news, we got hit with a significant bot attack a couple weeks ago. If you had email notifications for forums on, your inbox probably shed a tear. We have upped registration security a bit, and have set all new account posts to be manually approved by staff. 100% of the bot posts were new accounts that posted instantly. We can at the very least save you guys from seeing them when they happen now. We appreciate you That's all for now, though we do have some things planned for later this year and beyond that you'll hear about when it is time. Thanks for sticking with us, and remember we provide all of this for free and ad-free for you. Money is tight for a lot of people right now, including us, but if you do have the ability to donate even a small amount to help keep us around, it is greatly appreciated. UPDATE 2024-Mar-29 Discord has started blocking externally linked images now too. Please avoid using Discord image links. Just upload directly like explained above. View full article
  20. A couple months ago, Imgur, the most popular anonymous image upload service, announced that all anonymously posted images would be deleted, and all uploads going forward would require an account. As many of you know, thousands of images posted on these forums were hosted on Imgur anonymously. It has been the standard for posting images for years. Hearing that news had us concerned, not that losing all of those images in the forum was a dire situation, but that it would leave many of the threads that show progress of mods from the last decade completely useless. All Imgur images previously posted are now locally hosted Thanks to @AshuraDX going above and beyond, he did his database voodoo and retrieved every single Imgur link on the forum, including tutorials and news articles, and re-hosted them on our server, keeping the original file names in tact. For example if you posted a link like this: https://i.imgur.com/n9YsBml.jpg It is now this: https://jkhub.org/images/n9YsBml.jpg We also came up with a quick solution for albums. A simple page showing the images, while keeping the individual links in tact. https://jkhub.org/albums/VRFiDx2 Keep in mind, they didn't give much of an advanced warning before they began deleting anonymous images, so there may be a small number out there that weren't saved. Also, this is mostly a one time thing that we will do. We may look again in the future, but going forward, we recommend not using Imgur at all to host your images here, or really anywhere even if you have an account. They have shown they are not profitable enough to be sustainable, so it is most likely a matter of time before they go full paid subscription to host images, like ImageShack or Photobucket did. So how do I post images then? Local image hosting is now enabled for all users. You should now see an option to drag and drop or choose an image to upload at the bottom of your text box as shown below. We have a generous max upload size in place for now, but ask to not abuse that. Most images shared are an average of 1MB. If yours is a lot bigger than that, run it through ImageOptim or something if you want. Why didn't you allow image uploads in the forum before? In short, server storage is expensive. We tried to keep the size of JKHub as small as possible. We host all mod files in a separate CDN which keeps costs lower, and we could in theory do the same for locally hosted images, but our CDN service is not supported natively by the forum software. When forum activity was booming, it made the most sense. Now that activity is much lower these days, having it enabled should be okay. What about the Files section images? We already host all images in the Files section, and we have gone out of our way to save and manually upload any images submitted via Imgur or other hosts, to avoid this very problem from ever happening. Though, it was always more likely for the author to delete the images before an entire service was shut down, after seeing what happened to ImageShack and Photobucket, we didn't want to risk a key part of hosting mods to ever get lost, and now we were proven to be right about that. So those have always been hosted locally on our server since day one. Bot attacks In other news, we got hit with a significant bot attack a couple weeks ago. If you had email notifications for forums on, your inbox probably shed a tear. We have upped registration security a bit, and have set all new account posts to be manually approved by staff. 100% of the bot posts were new accounts that posted instantly. We can at the very least save you guys from seeing them when they happen now. We appreciate you That's all for now, though we do have some things planned for later this year and beyond that you'll hear about when it is time. Thanks for sticking with us, and remember we provide all of this for free and ad-free for you. Money is tight for a lot of people right now, including us, but if you do have the ability to donate even a small amount to help keep us around, it is greatly appreciated. UPDATE 2024-Mar-29 Discord has started blocking externally linked images now too. Please avoid using Discord image links. Just upload directly like explained above.
  21. It is a little complicated if you're new to modding in general, but it is quite rewarding once you figure it out. It's much easier nowadays with Blender than it used to be with 3DS Max or other older programs that required you to completely re-weight everything. I can move this to the requests section if you'd prefer, to see if someone more familiar with Blender would do it for you. For someone familiar enough it would probably take a matter of minutes. I may even take a stab at it if I have some time later. Also @Starwalker1192 this appears to be the model you are wanting. You could probably just restore the original textures for Kyle's head and IB's body and it should work unless they changed more than it looks. https://jkhub.org/files/file/2480-dark-forces-ii-kyle-katarn-with-jacket/
  22. Ha! Amazing. I do plan on fixing it at some point, I just need to get back to it. Also have a few other entity mods in the works as well.
  23. I'm only aware of one room doing this (the Yavin duel room), are you certain all of the new areas are doing it?
  24. I believe that's what the NPC called player is for.
×
×
  • Create New...