Jump to content

Asgarath83

Members
  • Posts

    2,023
  • Joined

  • Last visited

Everything posted by Asgarath83

  1. you need that on SP, or MP? i know only SP coding. Force Push: that's easy. is possible do that without much trouble without coding... i seen that on force unleashed mod. 1 create an notepad file and save as "save all" as *.CFG format. name it autoexec.CFG 2 slap it on the PK3 of your mod folder, or inside a mod folder that work with a batch file, or into base, if you want that affect globally the game. inside CFG file wrote that line: seta g_knockback "4000" 3 save and enjoy, Super Force Jump: sorry bro, that REQUIRE coding. >.< cause all functions of JKA related to force powers and weapons are f****ing hardcoded and missing a lib like SAB files for customize or add new weapons and force power ... damn, why raven not did a damned LIB also for weapons and force powers? so frustrating... -.-
    AHAH! Oh man! that's is really a deadly weapon! ? A cleaned stormie is an happy stormie! 8D
    WOW!!! GREAT MAN! You golden!!! I want to make a project on jka when heroes switch between dimensions and that's is exactly as i need as base for build the "hyperspace realm plane" a plane that allow to switch between maps and planets throught portals! thanks man! Really!!! :D
    So that's is the gonk's race howeworld? Nice idea! 8D :D
  2. That's amazing!! Keep it up! I hope a day it will be complete and you will share that magic ? shoot combats can be much more better with that.
    Creepy and scarry, but nice! Awesome nordic models :)
  3. Gtk radiant. you should use the custom version that use mjt, can you avoid a ton of job, cause it allow to build maps with autocollision of MD3 static meshes, so you can avoid to spare time draw by hand the colliders of static models. :)
  4. there a re a lot of tutorial about coding here on JKHUB. you need to use visual studio for build your solution, eezstreet tutorials can help you to start. you can try to add new weapons or force powers o customize visual effects of bullets or force powers or add new damage weakness o resistances to classes into g_combat. i started on that way. there are some oldest tutorial of mine that explain you how to add a new weapon or a new force power step by step. But,honestly, coding is the last step you need, before code you should fully understanding how work jka gameplay and modding. i suggest you to learn at least the basic about how to add NPC and SABERS, how to rig a character or make a saber, how to make a basic map. with coding you can edit the gameplay, but is very complicated and require a good knowledge of gameplay and of engine. edit things without know what are you doing can have unpredictable effects.
  5. Honestly i do not know. nice idea an external interface with c sharp for edit the code, also if SP code is into c++ and MP into c and i not know how can be hard to allow to the 3 different languagues to interact each others. i am not so code skilled to help you, but is interessing. you should jump into discord chat channels of the forum and ask the question inside the code and script chat.
  6. the more easy way for do that, should be edit the code for add a new weapon and program the new weapon for be a duplicated of lightsaber, that call the same identical code functions of the original WP_SABER for work. something like a WP_SABER2. You can follow my old tutorial about add a new weapon on Single player. Remember that your saber need to use the same fire function of lightsaber if you want it work properly. but that is an experiment that can have some risk. lightsaber is a very specific weapons with some unique features. i am not sure if all the lightsaber code functionality for swings and damage is all called by the fire function of the lightsaber weapon. there is also another trouble. WP_SABER is binded to an external SAB library. and that should be apply also to the new weapon. you need to link to the lib of SAB files ALSO the new saber weapon you will create. if not, you will have a serious amount of trouble cause you cannot customize the new saber weapon and also it will not work fine.
  7. yes, i noticed the difference of health of enemies during my plays on game. i was not sure about the math but that explain a lot of thing. but i guess the solution should be simple. IF there are not other chunks of code that occurs on that: look at this: ent->client->NPC_class != CLASS_REBORN && ent->client->NPC_class != CLASS_SHADOWTROOPER NPC_class != CLASS_REBORN and != CLASS_SHADOWTROOPER basically: == mean equal, != equal different! So that stuff NOT apply to REBORN and SHADOWTROOPER classes (maybe there is some other kind of modification on that classes? or they simply are not affected?) that code apply to ALL classes EXCEPT Reborn and Shadowtrooper. if you want it affect reborn and shadowtrooper you should edit code for do something like NPC_class == CLASS_REBORN NPC_class == CLASS_SHADOWTROOPER so, chunk of code have the other effect: the edit will affect ONLy that the classes. If you want that ALL NPCs will be affected from that you need to edit the code line on that way: "else if ( ent-->NPC->stats.health ) // was health supplied in NPC.cfg? opened brank then if ( ent->client->NPC_class ) /* != CLASS_REBORN && CLASS_SHADOWTROOPER */ Explanation: /* */ commented out the text inside in, so it will not more affect the game. and you can preserve however the code lines in case of issues, so you can quickly restore if something go wrong. if ( ent client-> NPC_class ) is generic, basically it mean that it affect ALL NPCs without discriminations ) in that way it will work for every characters instead only of "all classes except REBORN and SHADOWTROOPER" like original code tells. good luck! if there are not other parts of code that act as health modifiers of NPCs it should work. ? else if ( ent->NPC->stats.health ) // Was health supplied in NPC.cfg? { if ( ent->client->NPC_class != CLASS_REBORN && ent->client->NPC_class != CLASS_SHADOWTROOPER //&& ent->client->NPC_class != CLASS_TAVION //&& ent->client->NPC_class != CLASS_DESANN && ent->client->NPC_class != CLASS_JEDI )
    Nice example of the versatility of the tecnique of model frankensteining-kitbashing! :)
  8. basically these chunk of code: for not NPC- player: cap the max health to 100 . (ah ty was a lot of time that i was searching this damned chunk of code -.- ) NPC: Health of NPC on game is the result of this operation: HP point of NPC files or stat health of NPC + BONUS. BONUS = NPC health / 4 * Difficulty level of game add HP to NPCs: so if NPC have 40 HP, and game difficult is 2: obtain bonus +20HP
  9. @AshuraDX Impressive! and the minecart model get also properly collison? player can be pushed by it?
    Thanks for credits, RJA! i hope that every player can enjoy that and the new weapons and AI code work properly for all. i hope NPCs now will be less dumb and more imprevedible. :)
    Net Radiant allows also to avoid to become crazy to manually drive the colliders brushes for the MD3 models of your maps! if you provide the correct shaders setting, you can put the shoots colliders and the physic colliders as meshes inside the MD3 files too. q3map2 of this netradiant, when build the map autogenerate automatically the collision for these shaders!!! : D that's revolutionary! (who have q3me of ashura can also use his suite for easy create these clip meshes into 3d max before export the MD3 files ) i hope that someone will write a tutorial for that ASAP.
  10. melee fights of NPC is hardcoded too , like weapons, force powers, sigh ... by default for what i know it works only for "kyle_boss" NPC, i remember that i did a little code work for a guy a lot of months ago, when i added a class called "SITH_BOXER" and in changed the code for use kata by that class and not only by kyle_boss NPC. -.- i really would to know why developer coders of raven were so restrictive about NPC AI modding, force powers and weapons. only sabers are Nice, cause SAB libraries. -_- add libraries for customize weapons, force powers and NPCs should not been to difficult for experts coders of lucas arts... PS: also for news: also saber resistance of hazardtrooper and rancor is hardcoded. for coding you need to know c and c++ and to have visual studio for rebuild the edited game executable. and Openjk source code. not easy, if you not understand the language.
  11. force power only melee is hardcoded (like a ton of damned things that make absolutely hard to deep code ) for works only with cultist_ and emperor_ NPCs, sorry guys.
    Oh my god! ALSO HERE????? ? SCARRY SCARRY SCARRY! i recomend to use it with kyle katarn covid 2020 skin mode with facial mask.
    WHAT... THE HELL... AHAHAHAHAHAAHAHAHAHAHAHA!! man, you win all! : D thanks for the laughts! is too funny! ?
    error 404. download link are broken >.<
  12. Honestly i not like much challenges and trumphs of moderns games. they really boring and disappoint me. my best loved gameplay is something when you unlocks powers doing quests and getting rewards, and quests can be tricky. not only fight! do dungons, thinks! solve puzzle! all these things are disappererd. JKA instead offer that. a skilled modder can turn JKA in some kind of action rpg with quest reward system, both on SP and MP, so for the flexibility and easy way of modding and for the great possibiliets that offers, for me JKA honestly is more op that the most modern games. i not played destiny, but i played skyrim. too much dispersive. open world is fine, but honestly a game with thousands of hours of pointless and repetitive game is not much useful and istructive. saint row 2 was nice, one of the best open world setting i seen, cause for "activities" with surreal and hilarous situations. : D saint row 3 , 4 and gat out of all... again the progression, levelling system. the unlockable skills by simple levelling up, the rendundance gameplay, challenge and trumphy and a plot stories that honestly is worse compared to saint row 2... i also like the old arcade system way as lok games. when you kill a boss, you obtain a skill that allow you to explore new territories and go forward to tales. also that is a nice and interessing approach, that i found much better of modern games. so yeah, honestly, i like more old games that recents.
  13. Sorry, i did a lot of confusion with my message XD the new jKHUB template sometime is bugging me very well. Well, if you know basic modding stuff, you're okay, if you have troubles or problem to solve, you need just to ask, here is full of talenced guys that can help you. :)
×
×
  • Create New...