Note: LucasForums Archive Project
The content here was reconstructed by scraping the Wayback Machine in an effort to restore some of what was lost when LF went down. The LucasForums Archive Project claims no ownership over the content or assets that were archived on archive.org.

This project is meant for research purposes only.

Fallen Guardian's Random Modding WIP

Page: 1 of 2
 Fallen Guardian
12-19-2011, 3:14 AM
#1
Well, it's about time I started a WIP just to contain all my side-projects. Basically, my main projects, such as mods like Dantooine Tension, will have their own specific WIP thread. But when I mod little stuff I'll usually just post it here.

So this WIP will encompass Republic Mod Armor Change (http://www.lucasforums.com/showthread.php?t=206599), Jedi Council Robes (http://www.lucasforums.com/showthread.php?t=207101), and any other smallish mod I decide to make in the future.

Today, I decided to finally fix something that always bothered me whenever I investigated into the murder of Elassa on Manaan. Basically, if you check the Republic Embassy for evidence it gives you this neat little "recording" of Sunry murdering Elassa. Now, this "recording" was just text describing what was supposed to be taking place. I decided to create the scene with actual NPC's isntead of text. Sorry for the abrupt ending.

Here it is: http://www.youtube.com/watch?v=70Ne7Kf0jts&feature=youtu.be)

I've attempted to make it so Elassa doesn't turn around before Sunry shoots but for some reason it won't work. Other than that, I'm pretty happy with the scene.

What do you guys think?
 Sith Holocron
12-19-2011, 3:49 AM
#2
http://i37.photobucket.com/albums/e83/scarletguard/Knights%20of%20the%20Old%20Republic/LiveFeed.jpg)

I like the idea. It's inventive. I think if you could somehow remove the word "live" from the above video, it might work a little better.

I recall there was a mysterious man that insinuates that Sunry might not be guilty after all. Would it not be interesting to be able to discover alternate footage of this scene after meeting that mysterious man - perhaps in the Sith Base - thus enabling you to actually find Sunry innocent without lying?
 Fallen Guardian
12-19-2011, 11:21 AM
#3
The 'Live' footage was also something I noticed, I'll look into it. As for the Sith base and discovering other footage it sounds like an interesting idea. Although, since the hotel isn't in the same module as the Sith Base, I'd have to create a BIK movie for such a scene. Unless, it's an other piece of evidence for a different aspect of the murder....Now I've got some stuff to think about. I've always wondered why there wasn't any evidence in the base for Sunry even though the mysterious man told you to look there.
 Warlord664
12-19-2011, 12:06 PM
#4
Very good. Some great ideas you have there Fg.
 Fallen Guardian
12-23-2011, 8:20 PM
#5
Very good. Some great ideas you have there Fg.

Thanks.

Alright as you may have saw in my Sunry Murder Case Recording Enhancement video Elassa turned around slightly before Sunry killed her. Now according to the original text version of this recording by Bioware it says that Sunry shoots Elassa in the back. I've tried many ways to stop her from turning around and the closest I got to her not actually fully facing Sunry was what you saw in the video. Does anyone have any suggestions on how to make her stop turning around altogether?
 JCarter426
12-24-2011, 12:23 AM
#6
Ugh... this is something that annoys me so much in the game. BioWare was so lazy. Basically, to stop an NPC from turning around all the time, you need to lock their orientation. The script function is:

// 505: SetLockOrientationInDialog
// Allows the locking and unlocking of orientation changes for an object in dialog
// - oObject - Object
// - nValue - TRUE or FALSE
void SetLockOrientationInDialog(object oObject, int nValue);

So, for example, you would have something like:

SetLockOrientationInDialog(oElassa, TRUE);
And you want to fire that when she's facing where you want her to be facing (i.e. away from Sunry). You should probably turn it back to false at the end of the scene, unless the NPCs are going to be destroyed anyway.

Now, just for reference, if you ever need an NPC to actually face something once you have locked them - since this locks everything - you can manually make them face another object as follows:

AssignCommand(oObject, SetFacingPoint(GetPosition(oTarget)));

And that will be a more natural turn and face, rather than the stupid jumpy teleporting crap that's in the game. I generally lock every NPC right at the start of the conversation and then do everything manually. More work, but at least it doesn't look stupid.
 Fallen Guardian
12-24-2011, 2:50 AM
#7
No luck. She still turns around as he fires the shot, perhaps I should change her faction to one of those random ones, such as gizka?
 JCarter426
12-24-2011, 3:30 AM
#8
Oh... oh! I realize what's happening. She's turning around because he's attacking, right. Ignore everything I said before. Well, except the part about BioWare being lazy. :p

I believe you can fix this by making it a passive attack.
// 37: Attack oAttackee.
// - bPassive: If this is TRUE, attack is in passive mode.
void ActionAttack(object oAttackee, int bPassive=FALSE);

That means she won't try to defend herself - hence the turning around. So just change it from false to true and that should do it.
 Fallen Guardian
12-24-2011, 3:58 AM
#9
Alright. So I attempted to insert your line of code into the part of my script where I had Sunry shooting Elassa, however, it would not compile. So, I made a few changes until it compiled and now she still turns around. What did I do wrong?

#include "k_inc_generic"
void main()
{
object oDoor=GetObjectByTag("man26ac_door01");

object oNPC = GetObjectByTag("smre_elassa");

object oNPC1 = GetObjectByTag("smre_sunry");

object oBlaster = CreateItemOnObject("g_w_blstrpstl020",oNPC1);

object oTarget = GetNearestObjectByTag("smre_elassa", OBJECT_SELF, 1);

int bPassive=TRUE;

ActionPauseConversation();

AssignCommand(oNPC1, SetFacingPoint(GetPosition(GetObjectByTag("smre_elassa"))));

DelayCommand(1.0, AssignCommand(oNPC, ActionPlayAnimation(10, 1.0, (3.0))));

DelayCommand(1.0, AssignCommand(oNPC1, ActionPlayAnimation(9, 1.0, (2.0))));

DelayCommand(3.0, AssignCommand (oNPC1,ActionEquipItem(oBlaster, INVENTORY_SLOT_RIGHTWEAPON)));

DelayCommand(3.5, ChangeToStandardFaction(oNPC1, 2));

DelayCommand(3.7, ApplyEffectToObject(1, EffectAssuredHit(), oNPC1, 5.0));

DelayCommand(4.3, AssignCommand(oNPC1, ActionAttack(oNPC, bPassive=TRUE)));

DelayCommand(6.0, ExecuteScript("smre_fadeout", OBJECT_SELF));

DelayCommand(7.0, DestroyObject(oNPC));

DelayCommand(7.0, DestroyObject(oNPC1));

DelayCommand(11.0, ExecuteScript("smre_fadein", OBJECT_SELF));


ActionResumeConversation();
}
 JCarter426
12-24-2011, 4:24 AM
#10
Ah that's just the source code. It should look more like this:

ActionAttack(oNPC, TRUE);

or


ActionAttack(oNPC, 1);

Either works.
 Fallen Guardian
12-24-2011, 1:04 PM
#11
Hmm, she still turns around. Perhaps there's an error in my script?


#include "k_inc_generic"
void main()
{
object oDoor=GetObjectByTag("man26ac_door01");

object oNPC = GetObjectByTag("smre_elassa");

object oNPC1 = GetObjectByTag("smre_sunry");

object oBlaster = CreateItemOnObject("g_w_blstrpstl020",oNPC1);

object oTarget = GetNearestObjectByTag("smre_elassa", OBJECT_SELF, 1);

ActionPauseConversation();

AssignCommand(oNPC1, SetFacingPoint(GetPosition(GetObjectByTag("smre_elassa"))));

DelayCommand(1.0, AssignCommand(oNPC, ActionPlayAnimation(10, 1.0, (3.0))));

DelayCommand(1.0, AssignCommand(oNPC1, ActionPlayAnimation(9, 1.0, (2.0))));

DelayCommand(3.0, AssignCommand (oNPC1,ActionEquipItem(oBlaster, INVENTORY_SLOT_RIGHTWEAPON)));

DelayCommand(3.5, ChangeToStandardFaction(oNPC1, 2));

DelayCommand(3.7, ApplyEffectToObject(1, EffectAssuredHit(), oNPC1, 5.0));

DelayCommand(4.3, AssignCommand(oNPC1, ActionAttack(oNPC, 1)));

DelayCommand(6.0, ExecuteScript("smre_fadeout", OBJECT_SELF));

DelayCommand(7.0, DestroyObject(oNPC));

DelayCommand(7.0, DestroyObject(oNPC1));

DelayCommand(11.0, ExecuteScript("smre_fadein", OBJECT_SELF));


ActionResumeConversation();
}
 JCarter426
12-24-2011, 1:26 PM
#12
None that I can see... two things I can think of.

1. It's possible she's turning around because she's becoming aware of an enemy and is getting ready to attack it. If that's the case, she's turning around before he even attacks, so it doesn't matter if it's a passive attack. Throwing her awareness into the gutter might make her blind enough to not notice him, or you could just not change Sunry's faction; it's possible for allies to shoot each other if they're scripted to do so, regardless of their factions.

2. As a last resort, I'd suggest having him fire in her general direction and not directly at her by placing an object such that she is between them.
 Fallen Guardian
01-11-2012, 12:27 AM
#13
Alright, I haven't really made any progress on the Sunry mod, but I have gone about doing something else.

Basically, in TSL, there was one cutscene which its jerkiness always got to me.

When you meet Carth on Telos.

I've gone about trying to fix some of the issues I saw, as well as trying to get a better view of what the developers wanted, based off of the dialogue file's developer commentary.

Now there are still some things I need to fix, mainly when the exile walks out and there is this weird glitchy camera twitch, but this shows some of what I've done. Honestly, some of the stuff I've done didn't turn out quite like I'd hoped. For example, when

Carth says there are worse things to lose in the galaxy,

The turning around was done rather awkwardly, and I thing I should be able to remedy that.

In this scene there are a number of mods that are not mine. This is due to the fact I was testing this in my playing override.

The mods are:

Dark Harbinger reskin of PMHC04
Silveredge9's Admiral Onasi Uniform
And Stoffe's Jedi Master Robe Collar Fix + Skin

To name some of the changes....

I edited the fadein when the PC first enters Carth's room to make it longer, so you couldn't see the obvious jump of Grenn, the Republic Soldier, and the PC being warped into the room.

Edited some of the times Carth faced the window to better suit some of Obsidian's notations, such as when he is talking about Revan leaving everyone behind because there were places people he cared about could not go.

There are a couple other changes as well, I'm just too lazy to list them. :p

http://www.youtube.com/watch?feature=player_embedded&v=_s5xzFEe9vE)

What do you guys think?
 Fallen Guardian
05-05-2012, 9:29 PM
#14
Yeah, a lot of months since I posted, but mostly because I've been working on Dantooine Tension and other stuff. Anyway, thanks to a great site that provides free textures (http://cgtextures.com/), I've been able to remedy a problem that has started to bother me as of late. Basically, the gaffi stick's texture looked... awful. So, here's what I've done to rectify the problem.

New Texture Alone:
http://www.lucasforums.com/picture.php?albumid=814&pictureid=9095)

Comparison:
http://www.lucasforums.com/picture.php?albumid=814&pictureid=9096)

The texture size is now actually 1024X1024, so.. yeah, it's a lot better. Anyway, what do you guys think?
 CptPriceless
05-05-2012, 10:20 PM
#15
Great!
 Fallen Guardian
05-05-2012, 11:38 PM
#16
Great!

Thanks Cpt.

Alright, here's a slight modification to the above texture, so now the sand people chieftain will have a unique gaffi.

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9097)

I've added in a little tidbit in the item description that talks about how the emblem on the blade appears to be leather that is crudely fused to the metal. It's there in order to identify it as the chieftain's gaffi.
 Zhaboka
05-06-2012, 5:25 PM
#17
That's nice! I don't think I care about the gaffi stick texture too much, but it did always bother me that the chieftain's stick was identical to the others.
 Fallen Guardian
05-07-2012, 7:07 PM
#18
That's nice! I don't think I care about the gaffi stick texture too much, but it did always bother me that the chieftain's stick was identical to the others.

Thanks! And yeah, I didn't care much about the gaffi texture either until I noticed how bad it was. Then it kept bothering me so I decided to fix it.
 Fallen Guardian
06-28-2012, 8:30 PM
#19
Okay, after I saw Darth InSidious release his Unknown World Hammerhead texture (http://www.lucasforums.com/showthread.php?t=210360) that he found in the game files, I started digging around the area textures in KotOR tool, looking for lost/unused textures.

I found this, called LTA_SCRE02:

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9196)

Now the neat thing about this texture, creepy green tinted pictures of babies aside, is that this is basically the Ebon Hawk's control panel, but a larger image (512X512, instead of 256X256) and it is much more crisp than the original Ebon Hawk panel texture. So, I got to work making it look like the Ebon Hawk control panel and about an hour later I produced something I thought did justice to the original.

Original:

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9191)

New:

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9193)

Comparison, old LTA_SCRE02 to new:

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9195)

Comparison, old Ebon Hawk texture to new:

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9194])

(I'll have screens of how it looks in-game soon, but for now, just these.)

So, what do you guys think?
 tmandoo
06-28-2012, 8:34 PM
#20
That's actually really awesome :) Also, the pictures of babies are really weird...
 CptPriceless
06-28-2012, 9:19 PM
#21
Very, very nice. :)
 Sith Holocron
06-29-2012, 3:50 AM
#22
Looks like a "must have (http://www.lucasforums.com/showpost.php?p=2814881&postcount=19)") for KOTOR.

(1) Will these textures also work in the Ebon Hawk in TSL? The ships are almost identical, aren't they? (Well, with the possible exception of the swoop not being there in one of them.)

(2) Will you be including this in later editions of the K1R mod (http://www.lucasforums.com/showthread.php?t=210307) and/or would it be a separate download? If the answer to (1) is yes, you should always have a separate download as an option.
 Zhaboka
06-29-2012, 3:59 AM
#23
NICE. I've always thought that texture was a little too low-res.
 Fallen Guardian
06-29-2012, 5:35 AM
#24
That's actually really awesome :) Also, the pictures of babies are really weird...

Thanks, and yeah. The babies kind of startled me when I clicked on the texture the first time.

Very, very nice. :)

Thanks Cpt.

Looks like a "must have (http://www.lucasforums.com/showpost.php?p=2814881&postcount=19)") for KOTOR.

(1) Will these textures also work in the Ebon Hawk in TSL? The ships are almost identical, aren't they? (Well, with the possible exception of the swoop not being there in one of them.)

(2) Will you be including this in later editions of the K1R mod (http://www.lucasforums.com/showthread.php?t=210307) and/or would it be a separate download? If the answer to (1) is yes, you should always have a separate download as an option.

1) Well, seeing as LTA_SCRE02 is only a KotOR I asset, I don't really see how it could be included in Knights 2, unless there's some awesome loophole I'm not seeing.

2) I don't think this'll ever be put in KotOR 1 restoration, it'll most definitely be a separate download.

NICE. I've always thought that texture was a little too low-res.

Yeah, me too. Thanks Z.

And as promised, here's some screenshots of it in-game as well as something else I've done.

In-game screens:

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9200)

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9199)

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9198)

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9197)

Old Galaxy Map:

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9201)

New Galaxy Map:

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9202)

Now this is just affecting the galaxy map you see in the Ebon Hawk before you select the map itself. All I really did was take the texture that you see when it's close up, which is high quality, and put that there instead, as well as an extra message. Some of the lights on the display screens around the map are changed to make them higher quality as well. Basically, I just took the textures from the close up galaxy map again. I think this way it makes the close up galaxy map much more congruent with the one just seen without clicking on it.

Anyway, if you click here (http://www.lucasforums.com/showthread.php?t=210128&highlight=Ebon+Hawk) you'll see a made a request some time ago (feels like a long time ago to me, only about a month and a half though) to have somebody fix the weird issues that show up in the Ebon Hawk in KotOR 1. I've tried just using the texture to fix it but it appears as though it's modeling/UV mapping goof, so I ask anyone who is well versed in those fields to attempt and fix the model. Please.

Also, more bad news with the Ebon Hawk. Apparently BioWare setup the skybox that shows the planet your currently on in a repeating loop, so what you see on the left is the same for the right and the center so I can't make anything high quality or it'll end up looking bad due to the re-repeating texture. So if anyone knows how to make it so I could change the skybox to not repeat in that way, it'd be much appreciated.

(In the request thread I linked to, ignore the second image, stupid tinypic deleted/moved it apparently.)

Anyway, that is all.

What do you guys think?
 Warlord664
06-29-2012, 7:21 AM
#25
Wow, those ebon hawk textures looks great! such an improvement. I noticed the planets are showing on your new galaxy map, what if we had a planet mod installed? I guess it would become outdated :xp:
 CptPriceless
06-29-2012, 9:50 AM
#26
New Galaxy Map:

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9202)


Great touch with the added text. I always thought that the map would show the last visited planet, but I never paid too much attention. Still, it works nicely - especially with high-res. Another good one man!
 Rinku
06-29-2012, 11:58 AM
#27
Great stuff FG! I'm glad someone finally upgraded that texture. Keep up the great work.
 Fallen Guardian
06-30-2012, 6:05 PM
#28
Wow, those ebon hawk textures looks great! such an improvement. I noticed the planets are showing on your new galaxy map, what if we had a planet mod installed? I guess it would become outdated :xp:

Thanks. Yeah, there's not really much I can do about that. :(

Great touch with the added text. I always thought that the map would show the last visited planet, but I never paid too much attention. Still, it works nicely - especially with high-res. Another good one man!

Thanks Cpt.

Great stuff FG! I'm glad someone finally upgraded that texture. Keep up the great work.

Thanks Rinku.


Alrighty then, and here's another new texture for you guys:


Old

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9205)

New

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9203)

Old

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9206)

New

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9204)
 CptPriceless
06-30-2012, 6:17 PM
#29
Another great job FG.
 LDR
06-30-2012, 6:38 PM
#30
Wonderful!

Why does that remind me of that glass thing in the Shadow Broker's Base?
 Rinku
06-30-2012, 6:51 PM
#31
Beautiful!! You continue to impress me FG.
 Zhaboka
06-30-2012, 6:53 PM
#32
Nice! These are quite quality. Will they be released in some sort of Ebon Hawk Improvement Pack? I wish Vurt was still around, you two could double-handedly revamp all of KotOR 2.
 Ctrl Alt Del
06-30-2012, 7:18 PM
#33
Oh man, excellent work with all the textures. I especially like what you did with the galaxy map: it did always bug me that something you click so often on the game didn't get a better treatment.
 Fallen Guardian
06-30-2012, 8:08 PM
#34
Another great job FG.

Thanks again Cpt.

Wonderful!

Why does that remind me of that glass thing in the Shadow Broker's Base?

Thanks LDR. Haha, I don't know why. BioWare's magical? At least in the stuff not regarding ME3's ending.

Beautiful!! You continue to impress me FG.

Thanks!

Nice! These are quite quality. Will they be released in some sort of Ebon Hawk Improvement Pack? I wish Vurt was still around, you two could double-handedly revamp all of KotOR 2.

Thanks Z. Yeah, they'll all be released in an Ebon Hawk improvement pack, once I'm through improving everything I can. And thanks. Vurt would definitely be the better of the pair though.

Oh man, excellent work with all the textures. I especially like what you did with the galaxy map: it did always bug me that something you click so often on the game didn't get a better treatment.

Thanks Ctrl Alt Del!

And here's another texture. This one was originally 64X64, but I've changed it to be 875X875. I had to do a little imagining due to the poor vanilla texture and I think I might change the metal's color as well as increase the brightness, but this is basically how it'll look.

Old

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9208)

New

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9207)


Old

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9209)

New

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9210)
 Zhaboka
06-30-2012, 8:58 PM
#35
Thanks Z. Yeah, they'll all be released in an Ebon Hawk improvement pack, once I'm through improving everything I can. And thanks. Vurt would definitely be the better of the pair though.

Don't sell yourself short, this stuff is great! That new one is very crisp.
 Hassat Hunter
07-01-2012, 8:37 AM
#36
Love it.
Shame it'll be KOTOR1 only...
 Warlord664
07-01-2012, 12:26 PM
#37
Never gonna use normal ebon hawk again after this comes out, so much better.
 Christos K
07-02-2012, 3:17 AM
#38
Can't wait for the Ebon Hawk improvements. Will you be able to release a similar one for TSL?
 Sith Holocron
07-02-2012, 6:36 AM
#39
1) Well, seeing as LTA_SCRE02 is only a KotOR I asset, I don't really see how it could be included in Knights 2, unless there's some awesome loophole I'm not seeing.

Release the LTA_SCRE02 mod as a KotOR1 mod. If folks decided to rename that picture file . . . I don't know . . . "LEH_scre02" and put it in their KotOR2 override folder, then I imagine it would work in TSL.

Hypothetically speaking, of course.
 Fallen Guardian
07-02-2012, 11:19 PM
#40
Don't sell yourself short, this stuff is great! That new one is very crisp.

Thanks Z.

Love it.
Shame it'll be KOTOR1 only...

Thanks HH. Though, it's K1 only for the textures that I borrowed KotOR 1 resources for.

Never gonna use normal ebon hawk again after this comes out, so much better.

Thanks.

Can't wait for the Ebon Hawk improvements. Will you be able to release a similar one for TSL?

Thanks, and yeah. I believe so.

Release the LTA_SCRE02 mod as a KotOR1 mod. If folks decided to rename that picture file . . . I don't know . . . "LEH_scre02" and put it in their KotOR2 override folder, then I imagine it would work in TSL.

Hypothetically speaking, of course.

Hypothetically speaking here, but one would simply just have to choose to drop the files into the other override. No renaming.

Anyway, here's a new texture:

Old

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9213)

New

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9212)
 CptPriceless
07-02-2012, 11:24 PM
#41
oo mama! Great!
 Zhaboka
07-04-2012, 4:11 PM
#42
NICE. Almost too crisp. Ha-HA, just kidding.
 Fallen Guardian
01-06-2013, 8:54 PM
#43
Thanks for those of you who commented. (Also sorry it took me... a while to reply.)

I've been tinkering around with the idea of releasing those textures over the past few months, but I haven't come to a decision yet. Instead, to quell your desires, I have finished the Sunry Murder Recording Enhancement and have release threads both on Deadly Stream (pending) and in TUCE.
 Zhaboka
01-06-2013, 11:45 PM
#44
Nice!
 Fallen Guardian
01-07-2013, 5:22 PM
#45
Nice!

Thanks.

And, I've gone ahead and released most of the Ebon Hawk textures, you'll find a thread in the TUCE. There's a few that I didn't release (they're still in the works/I didn't like how they looked) but I'll release them along with the next version.
 Fallen Guardian
05-08-2013, 5:22 PM
#46
Hey, well, in the TUCE (and soon Deadly Stream) there's a thread up where I released the stuff from the gaffi stick I showed off... a year and 3 days ago. Mostly I did this because I remember I had this mod and that it had been finished ever since... a year and 3 days ago. Anyway, head on over to the TUCE.
 Fallen Guardian
05-15-2013, 9:21 PM
#47
All right, so a long time ago a user by the name of Captain Hair set out to retexture/remodel most, if not all, of the weapons in the KotOR games. Unfortunately, he never finished this task but he did leave us with one thing (http://www.lucasforums.com/showthread.php?t=198127post#17) - the models and textures for his remake of the basic blaster pistol. So, with his pre-given permission and the model in-hand, I went about to remake all the blasters in KotOR 1 using his model and textures (if you look through his WIP you'll see he was planning on doing much more fancy reskins of the blasters, whereas I did some more basic stuff to get them to best match their vanilla icons. Also, the closer shots are from the opposite angle and facing away from the light source, so the texture's will appear darker than they are).

Basic Blaster Pistol (g_w_blstrpstl001)
http://www.lucasforums.com/picture.php?albumid=814&pictureid=9502)

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9501)

Mandalorian Blaster Pistol (g_w_blstrpstl002)
http://www.lucasforums.com/picture.php?albumid=814&pictureid=9504)

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9503)

Arkanian Blaster Pistol (g_w_blstrpstl003)
http://www.lucasforums.com/picture.php?albumid=814&pictureid=9498)

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9497)

Zabrak Blaster Pistol (g_w_blstrpstl004)
http://www.lucasforums.com/picture.php?albumid=814&pictureid=9506)

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9505)

Bendak's Blaster (g_w_blstrpstl005)
http://www.lucasforums.com/picture.php?albumid=814&pictureid=9500)

http://www.lucasforums.com/picture.php?albumid=814&pictureid=9499)

That's all the blaster pistols for KotOR 1 (Carth's is essentially the Mandalorian blaster in the vanilla, though I might do something special for that). KotOR 2 has a couple more blasters so I'll be releasing pictures of those soon, then hopefully releasing everything, both KotOR 1 and KotOR 2 blasters, by the 1st of June.
 supreme kotor
05-15-2013, 9:31 PM
#48
I'm in love with bendaks blaster! They all look really nice. My advice change the color a little on the zabrak icon a little it dosent full look like the blaster to me. Other then that great work!
 JCarter426
05-15-2013, 10:27 PM
#49
Wow, again these are fantastic! Looking forward to the rest.
 Sith Holocron
05-16-2013, 1:01 AM
#50
. So, with his pre-given permission and the model in-hand, I went about to remake all the blasters in KotOR 1 using his model and textures (if you look through his WIP you'll see he was planning on doing much more fancy reskins of the blasters, whereas I did some more basic stuff to get them to best match their vanilla icons.)


I approve of this message.
http://i37.photobucket.com/albums/e83/scarletguard/Knights%20of%20the%20Old%20Republic/M4-78PoliticsSmall_zps2b4a71bc.gif) (http://s37.photobucket.com/user/scarletguard/media/Knights%20of%20the%20Old%20Republic/M4-78PoliticsSmall_zps2b4a71bc.gif.html)
(Paid by the Committee to Re-elect M4-78 as the Main Archon of M4-78.)
Page: 1 of 2