Kaidon Jorn

Modders
  • Content Count

    633
  • Joined

  • Last visited

  • Days Won

    57

Everything posted by Kaidon Jorn

  1. visas_sbr.thumb.jpg.f4cf8c0ce718a755f7e5fef7c0421408.jpg

    1. Sith Holocron

      Sith Holocron

      @LordMerek, it seems KJ is making his mods compatible with @Crazy34's new lightsaber model.  (Note how the saber lights up the room?)  Although if I've misread the picture, hopefully @Kaidon Jorn will correct me.

    2. Kaidon Jorn

      Kaidon Jorn

      Yeah, I converted all the SLM sabers and my default saber replacements to have Crazy34's new blade models and ambient lighting.

      That scene never looked so cool, no?

    3. Kaidon Jorn

      Kaidon Jorn

      The only thing that needs doing for default replacement sabers is to map, skin and rig a new yellow double bladed saber that I made from an older SotOR saber. 

      Then that will be ready to release. Now if I could find the time and patience.

    4. Show next comments  33 more
  2. Could someone decompile these two scripts for me? They were for 604DAN and the second has coordinates I want to fix up and use. k_fab_enter.ncs a_xtracrystals.ncs I am most grateful.
  3. Got a question... k_def_disturb01 in a creature's OnDisturbed field,... I know the script is blank and "not currently used", but what was it for? Is it like a OnInventoryDistubed on a placeable? I want to have a droid drop a saber part, then fire a journal entry script. So is the only way to do this for a creature is have the OnDeath script give you the part and add the journal entry?
  4. Yup. it cut to black suddenly on the fadeout. #holdmuhbeer Hey how does SetFadeUntilScript work?
  5. Aight I got a'notherun. How would i go about setting the fadeout? If this was to all happen on one dlg node? DelayCommand or just set the delay in SetGlobalFadeout? void main() { object oBaoDur = GetObjectByTag("BaoDur", 0); object oRWeapItem = GetItemInSlot(4, oBaoDur); SetGlobalFadeIn(2.0, 4.0, 0.0, 0.0, 0.0); AssignCommand(oBaoDur, ActionPauseConversation()); DelayCommand(0.2, AssignCommand(oBaoDur, ActionJumpToLocation(Location(Vector(60.74615, 34.29696, 1.8), 120.0)))); DelayCommand(0.4, AssignCommand(oBaoDur, ActionUnequipItem(oRWeapItem, 1))); DelayCommand(0.6, AssignCommand(oBaoDur, ActionPlayAnimation(35, 1.0, 12.2))); DelayCommand(12.6, AssignCommand(oBaoDur, ActionResumeConversation())); SetGlobalFadeOut(x.x, x.x, 0.0, 0.0, 0.0); }
  6. No no, it's genius. I'm not complaining at all, just a lil' in awe. Plus I'm a bit drunk with my cat on my lap listening to Khruangbin.
  7. Hold on. I sat here reading that for damn 20 minutes. Thats it. Nailed it. Thanks a bunch dude. Never would have figured that out on my own.
  8. Oooh. Discord? Not on it. Ok let me try this and report back. Thanks for helping so much. Ok, well it only made one saber but he didn't equip it on that script. What about doing more of a... if (GetItemPossessedBy(oPC)) == ("sbla_lghtsbr_130") { AssignCommand(oAtton, ActionEquipItem(oSaber, 4, 1); } else if (GetItemPossessedBy(oPC)) == (sbla_lghtsbr_131") { AssignCommand(oAtton, ActionEquipItem(oSaber, 4, 1); } etc etc type of deal? Like a conditional? I should mention this only happens in 003EBO, and a one time script for the companions initial saber building dialogs.
  9. Awesome. So the one you already made would work fine? I was thinking earlier not to use (GetIsObjectValid) because that would look everywhere, like even in Override, and make a new one after you got the original one from a_give_item. But I don't know if that's a plausible explanation. So I just need to put that last line in for 139 and compile it? Shouldn't I take out the DestroyObject command?
  10. Yes I did. But I don't think it should be applied here, just a simple (listen to me ) "check which saber color you made and insert THAT into Atton's hand. Yes it probably was decompiled with DeNCS way back when, and as a matter of fact, it's just a rewritten "c_have_any_co_cr". I should have posted the dialog part. So this script would be called "a_atton_sbr", and the saber was made with "a_give_item". But since y'all are a bunch of friggin geniuses, I bet you nailed it on the first try Thanks y'all.
  11. Alright, I need help. I've been on these stupid scripts for three days now, and I can not, for the life of me, figure out why it's creating a copy of the original lightsaber that's fired in Atton's dialog with "a_give_item". void main() { object oPC = GetFirstPC(); object oAtton = GetObjectByTag("Atton", 0); if (GetIsObjectValid(GetItemPossessedBy(oPC, "sbla_lghtsbr_130"))) { AssignCommand(oAtton, ActionEquipItem(GetObjectByTag("sbla_lghtsbr_130", 0), 4, 0)); DestroyObject(GetObjectByTag("sbla_lghtsbr_130", 1), 0.0); } else { if (GetIsObjectValid(GetItemPossessedBy(oPC, "sbla_lghtsbr_131"))) { AssignCommand(oAtton, ActionEquipItem(GetObjectByTag("sbla_lghtsbr_131", 0), 4, 0)); DestroyObject(GetObjectByTag("sbla_lghtsbr_131", 1), 0.0); } else { if (GetIsObjectValid(GetItemPossessedBy(oPC, "sbla_lghtsbr_132"))) { AssignCommand(oAtton, ActionEquipItem(GetObjectByTag("sbla_lghtsbr_132", 0), 4, 0)); DestroyObject(GetObjectByTag("sbla_lghtsbr_132", 1), 0.0); } else { if (GetIsObjectValid(GetItemPossessedBy(oPC, "sbla_lghtsbr_133"))) { AssignCommand(oAtton, ActionEquipItem(GetObjectByTag("sbla_lghtsbr_133", 0), 4, 0)); DestroyObject(GetObjectByTag("sbla_lghtsbr_133", 1), 0.0); } else { if (GetIsObjectValid(GetItemPossessedBy(oPC, "sbla_lghtsbr_134"))) { AssignCommand(oAtton, ActionEquipItem(GetObjectByTag("sbla_lghtsbr_134", 0), 4, 0)); DestroyObject(GetObjectByTag("sbla_lghtsbr_134", 1), 0.0); } else { if (GetIsObjectValid(GetItemPossessedBy(oPC, "sbla_lghtsbr_135"))) { AssignCommand(oAtton, ActionEquipItem(GetObjectByTag("sbla_lghtsbr_135", 0), 4, 0)); DestroyObject(GetObjectByTag("sbla_lghtsbr_135", 1), 0.0); } else { if (GetIsObjectValid(GetItemPossessedBy(oPC, "sbla_lghtsbr_136"))) { AssignCommand(oAtton, ActionEquipItem(GetObjectByTag("sbla_lghtsbr_136", 0), 4, 0)); DestroyObject(GetObjectByTag("sbla_lghtsbr_136", 1), 0.0); } else { if (GetIsObjectValid(GetItemPossessedBy(oPC, "sbla_lghtsbr_137"))) { AssignCommand(oAtton, ActionEquipItem(GetObjectByTag("sbla_lghtsbr_137", 0), 4, 0)); DestroyObject(GetObjectByTag("sbla_lghtsbr_137", 1), 0.0); } else { if (GetIsObjectValid(GetItemPossessedBy(oPC, "sbla_lghtsbr_138"))) { AssignCommand(oAtton, ActionEquipItem(GetObjectByTag("sbla_lghtsbr_138", 0), 4, 0)); DestroyObject(GetObjectByTag("sbla_lghtsbr_138", 1), 0.0); } else { if (GetIsObjectValid(GetItemPossessedBy(oPC, "sbla_lghtsbr_139"))) { AssignCommand(oAtton, ActionEquipItem(GetObjectByTag("sbla_lghtsbr_139", 0), 4, 0)); DestroyObject(GetObjectByTag("sbla_lghtsbr_139", 1), 0.0); } } } } } } } } } } DelayCommand(8.0, SetLightsaberPowered(oAtton, 1, 0, 1)); } I have the DestroyObject() command in there right now to destroy the copy that's not in his hand at the end of the dialog, hence the (sbla_lghtsbr_13*, 1). If anyone has a better idea on how to equip whichever Atton saber you made in the dialog and not have another one copied into your inventory, that'd be great. Thanks in advance!
  12. Errr....could someone decompile this? a_bao_parts.ncs I could never get DeNCS to work on my computer after Windows 10 came out. I have it, but it won't work, and I am changing my bao-dur armor quest up a bit at the moment. Would really appreciate it.
  13. Not at the moment, gimme a minute and I'll have SLM and DHRM up and running with the new blade models, hilt models, and ambient lighting out in a couple weeks....
  14. Excellent work. Can't stress enough how much these new blade models have made me giddy with excitement! Really makes me want SLM to be the best it possibly can! Cheers!
  15. Nevermind, i found it. Alrighty, here you go. I changed the wording of it just a tiny bit. workbnch.dlg
  16. Yep! I also would really like to use two of his textures for two character saber models. Sion's and Infernal Warrior's.. What do you say @Sithspecter?
  17. Heh. One of the most satisfying things I've ever seen in this game. Oooohh, that glow!
  18. I am actually switching Bao-Dur’s ElectroMesh Armor to be a reskin of Jamoah Hogras armor which will just be Bao-Dur’s Liberator/Oppressors armor...i lost the template for the electromesh armor reskin from back then. Haven’t gotten to it yet but it’d match (well, lightside anyway) his SLM Liberator lightsaber 😜 Dont know how any of that will fit in with your idea but just to let you know😉 SLM is going to take up all my time for a bit
  19. So in case anyone was wondering, I AM working on a new SLM. SLM 2020 Been working with and learning from Crazy34 on these new blade models with ambient lighting or glow. Which means new blade cores and planes that look spectacular, that sit gloriously atop my SLM and Default Replacement hilt models. Already replaced some hilt models in SLM and would like to get GMax again to be able to model brand new hilts that don't have all those damn vertical vader grips. In fact I plan to remove a lot of those. In addition I've already expanded the workbench dialog to be able to break down or "disassemble" every single type of lightsaber in the game so you can get the crystals back out of the lightsaber and build whatever hilt you want from SLM. Oh, it'll be awhile...I only just was able to get the single saber portion of the default hilts done with the new blades.... More to come. -KJ