Kaidon Jorn

Modders
  • Content Count

    628
  • Joined

  • Last visited

  • Days Won

    57

Everything posted by Kaidon Jorn

  1. Yup. it cut to black suddenly on the fadeout. #holdmuhbeer Hey how does SetFadeUntilScript work?
  2. 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); }
  3. 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.
  4. 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.
  5. 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.
  6. 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?
  7. 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.
  8. 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!
  9. 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.
  10. 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....
  11. 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!
  12. Nevermind, i found it. Alrighty, here you go. I changed the wording of it just a tiny bit. workbnch.dlg
  13. 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?
  14. Heh. One of the most satisfying things I've ever seen in this game. Oooohh, that glow!
  15. 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
  16. 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
  17. Oh thank GOD. Hey yeah I just got your message. Totally don't mind the "work" if I have time, but I also don't really understand how to use MDLEdit fully yet. I'm-a-learnin' though! I will keep trying it with the heads up in your message. Thanks!
  18. So I've been trying forever to remember how to switch models on any given lightsaber and I know I'm doing this correctly but there is a problem... I'm trying to switch a model that Crazy34 sent me that has his new 3D blade core model and ambient lighting effect with another hilt model of mine ( blue default replacement hilt ). I get this... So I am assuming it can't be done with all the extra textures and such that are in his model. If i put the new binary mdl in my override it'll crash. Also i just noticed that MDLOps dosen't go through the whole reading faces/vertices thing it used to, that may well be my computer about to die one me. I'm about to give up and say it cant be done. I'm stuck with the few saber models he rigged with his new glowy ambient lighting model. No idea what to do except try to find GMax to download so i can try to rig it up the OLD way.
  19. No I didn't mention them to anyone, I just figured that everybody probably already knew about them. I literally just went poking around Bao-Dur's GBL folder and started listening to every single sound clip. I came across those and realized they weren't used and started coming up with how I was going to use them.
  20. There's definitely a lot more that could be done for Bao-Dur. Gonna ponder these ideas for a bit.
  21. Hey well guess what? My pc just crashed and wont come on anymore. I’m guessing power supply but don’t know for sure. Was actually testing something in TSL and it just shut off. dead. capoot. Guess im done for awhile.

    1. AmanoJyaku

      AmanoJyaku

      Feeling your pain. I have to RMA my laptop because it crashes when the battery goes below 40%. Guess that's better than it exploding...

    2. Kaidon Jorn

      Kaidon Jorn

      Welp, i’ll see today if i’m right. I can’t imagine it’s something worse.

      my computer is my whole life practically so if i go completely broke now at least I’ll still have a computer to tool around with

    3. Kaidon Jorn

      Kaidon Jorn

      Back up and running, was the power supply as suspected. But now its (windows) been running really slow and I uninstalled alot of stuff and am trying to consolidate and optimize.

      May end up reinstalling windows and everything else.