-
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 MasterAbout 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
-
- 36 comments
-
- 1
-
-
- lightsaber models replacement
- kotor 1
-
(and 2 more)
Tagged with:
-
- 36 comments
-
- lightsaber models replacement
- kotor 1
-
(and 2 more)
Tagged with:
-
I would uninstall that older version and use 2021.
- 99 replies
-
- schematic lightsaber mod
- kaidon jorn
- (and 5 more)
-
Do you have "a_lrn_sch.ncs" or "kj_learn_scheme.ncs" in your override folder?
- 99 replies
-
- schematic lightsaber mod
- kaidon jorn
- (and 5 more)
-
Can you give it to yourself with KSE and try it again?
- 99 replies
-
- schematic lightsaber mod
- kaidon jorn
- (and 5 more)
-
Were you granted the "Learn Schematic" force power when you built your lightsaber? Did you activate the schematic just like a forearm shield?
- 99 replies
-
- schematic lightsaber mod
- kaidon jorn
- (and 5 more)
-
kotor 2 MOD:Schematic Lightsaber Mod 2021
Kaidon Jorn replied to Kaidon Jorn's topic in Mod Releases
Do you have a crystal? You may just need to overwrite handmaiden's dlg file with the one from SLM's patchdata folder.- 17 replies
-
- lightsaber models
- lightsaber mod
- (and 3 more)
-
kotor 2 MOD:Schematic Lightsaber Mod 2021
Kaidon Jorn replied to Kaidon Jorn's topic in Mod Releases
Search all cargo containers in Serroco area- 17 replies
-
- lightsaber models
- lightsaber mod
- (and 3 more)
-
😃What about a burgundy lightsaber?😄
- Show previous comments 1 more
-
-
Was seriously thinking of turning the magenta saber into a dark red/burgundy, if it's possible to make look good.
-
-
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.
- 124 replies
-
- tslrcm 1.8.6
- tsl
-
(and 4 more)
Tagged with:
-
Kaidon Jorn started following Missing Textures on lightsabers!
-
Missing Textures on lightsabers!
Kaidon Jorn replied to Kreia4life's topic in Knights of the Old Republic General
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. -
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?
-
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.
-
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??