Kaidon Jorn

Modders
  • Content Count

    538
  • Joined

  • Last visited

  • Days Won

    37

Kaidon Jorn last won the day on May 10

Kaidon Jorn had the most liked content!

Community Reputation

177 Jedi Grand Master

About Kaidon Jorn

  • Rank
    Bebeh Gurrrl Cat Dad
  • Birthday 07/14/1972

Profile Information

  • Gender
    Male
  • Location
    Near Atlanta, Ga
  • Interests
    Cats, Star Wars games, modding, music, movies, good beer.

Recent Profile Visitors

52,099 profile views
  1. Kaidon Jorn

    KSR 2022

    So she starts fighting him with no lightsaber? It disappears into thin air? No idea. Does Bandon have a lightsaber or does it disappear? Might be a mod conflict. Need more info. You can only use them in a standard saber, not short or double. Need more info.
  2. Kaidon Jorn

    KSR 2022

    You just need to pick the dueling feat at level up.
  3. Were you granted the "Learn Schematic" force power when you built your lightsaber? Did you activate the schematic just like a forearm shield?
  4. Do you have a crystal? You may just need to overwrite handmaiden's dlg file with the one from SLM's patchdata folder.
  5. 😃What about a burgundy lightsaber?😄

    1. Show previous comments  1 more
    2. LDR

      LDR

      lumièresabre

    3. Kaidon Jorn

      Kaidon Jorn

      Was seriously thinking of turning the magenta saber into a dark red/burgundy, if it's possible to make look good.

       

    4. JDub96

      JDub96

      Actually, the French word for lightsaber is sabre laser. "Laser sword."

  6. So I ended up just making 7 separate scripts for the party members to get their read schematic feat when they make their sabers, just like the pc. All I have left to do is remake icons again in 256, and finish the revan reborn saber texture. Then I should be releasing it fairly soon.
  7. Scripters block ERADICATED!

    Lol

  8. I have to do that Disable Vertex Buffer Objects=1 trick too, but I don't get the crashes that everyone else reports. But then, I only use the Steam Version of the game and install the TSLRCM version from here and install it directly into the Steam KotOR 2. Don't know if that helps.
  9. Alright. How is GetScriptStringParameter(); used? Because I have no idea. Only for items or for objects? Can you call the tag of a companion in their specific dialog with it?
  10. You were right. The TLK string ref was wrong but I fixed that but it's still doing the same thing. I think it has to do with it firing while in conversation. Haaa!!! IT WORKED!! void main() { int int1 = 245; object oAtton = GetObjectByTag("atton", 0); object oBaoDur = GetObjectByTag("baodur", 0); object oDisciple = GetObjectByTag("disciple", 0); object oMira = GetObjectByTag("mira", 0); object oKreia = GetObjectByTag("kreia", 0); object oVisas = GetObjectByTag("visasmarr", 0); object oHand = GetObjectByTag("handmaiden", 0); int int2 = 136379; string string1 = "if_schematic"; if (((GetTag(OBJECT_SELF) == "atton")) && (GetIsInConversation(oAtton) == 0)) { GrantFeat(int1, oAtton); DelayCommand(1.5, DisplayMessageBox(int2, string1)); } if (((GetTag(OBJECT_SELF) == "atton")) && (GetIsInConversation(oAtton) == 1)) { DelayCommand(0.5, ExecuteScript("kj_grant_read", oAtton)); return; } if (((GetTag(OBJECT_SELF) == "baodur")) && (GetIsInConversation(oBaoDur) == 0)) { GrantFeat(int1, oBaoDur); DelayCommand(1.5, DisplayMessageBox(int2, string1)); } if (((GetTag(OBJECT_SELF) == "baodur")) && (GetIsInConversation(oBaoDur) == 1)) { DelayCommand(0.5, ExecuteScript("kj_grant_read", oBaoDur)); return; } if (((GetTag(OBJECT_SELF) == "disciple")) && (GetIsInConversation(oDisciple) == 0)) { GrantFeat(int1, oDisciple); DelayCommand(1.5, DisplayMessageBox(int2, string1)); } if (((GetTag(OBJECT_SELF) == "disciple")) && (GetIsInConversation(oDisciple) == 1)) { DelayCommand(0.5, ExecuteScript("kj_grant_read", oDisciple)); return; } if (((GetTag(OBJECT_SELF) == "mira")) && (GetIsInConversation(oMira) == 0)) { GrantFeat(int1, oMira); DelayCommand(1.5, DisplayMessageBox(int2, string1)); } if (((GetTag(OBJECT_SELF) == "mira")) && (GetIsInConversation(oMira) == 1)) { DelayCommand(0.5, ExecuteScript("kj_grant_read", oMira)); return; } if (((GetTag(OBJECT_SELF) == "kreia")) && (GetIsInConversation(oKreia) == 0)) { GrantFeat(int1, oKreia); DelayCommand(1.5, DisplayMessageBox(int2, string1)); } if (((GetTag(OBJECT_SELF) == "kreia")) && (GetIsInConversation(oKreia) == 1)) { DelayCommand(0.5, ExecuteScript("kj_grant_read", oKreia)); return; } if (((GetTag(OBJECT_SELF) == "visasmarr")) && (GetIsInConversation(oVisas) == 0)) { GrantFeat(int1, oVisas); DelayCommand(1.5, DisplayMessageBox(int2, string1)); } if (((GetTag(OBJECT_SELF) == "visasmarr")) && (GetIsInConversation(oVisas) == 1)) { DelayCommand(0.5, ExecuteScript("kj_grant_read", oVisas)); return; } if (((GetTag(OBJECT_SELF) == "handmaiden")) && (GetIsInConversation(oHand) == 0)) { GrantFeat(int1, oHand); DelayCommand(1.5, DisplayMessageBox(int2, string1)); } if (((GetTag(OBJECT_SELF) == "handmaiden")) && (GetIsInConversation(oHand) == 1)) { DelayCommand(0.5, ExecuteScript("kj_grant_read", oHand)); return; } } EDIT: Never mind it doesn't work.
  11. Mmmmmmm I don'knowww.... void main() { int int1 = 245; int int2 = 136393; string string1 = "if_schematic"; if ((GetTag(OBJECT_SELF) == "atton")) { GrantFeat(int1, OBJECT_SELF ); DelayCommand(1.5, DisplayMessageBox(int2, string1)); } if ((GetTag(OBJECT_SELF) == "baodur")) { GrantFeat(int1, OBJECT_SELF ); DelayCommand(1.5, DisplayMessageBox(int2, string1)); } if ((GetTag(OBJECT_SELF) == "disciple")) { GrantFeat(int1, OBJECT_SELF ); DelayCommand(1.5, DisplayMessageBox(int2, string1)); } if ((GetTag(OBJECT_SELF) == "mira")) { GrantFeat(int1, OBJECT_SELF ); DelayCommand(1.5, DisplayMessageBox(int2, string1)); } if ((GetTag(OBJECT_SELF) == "kreia")) { GrantFeat(int1, OBJECT_SELF ); DelayCommand(1.5, DisplayMessageBox(int2, string1)); } if ((GetTag(OBJECT_SELF) == "visasmarr")) { GrantFeat(int1, OBJECT_SELF ); DelayCommand(1.5, DisplayMessageBox(int2, string1)); } if ((GetTag(OBJECT_SELF) == "handmaiden")) { GrantFeat(int1, OBJECT_SELF ); DelayCommand(1.5, DisplayMessageBox(int2, string1)); } } Will it work? Does being in dialog matter? Will I need else's? Does my butt look big in these pants? Edit: Yeah, no. Froze my game with no UI after the dialog ended. Did i need to put breaks in after every if??