Lordjedi Posted February 3, 2008 Share Posted February 3, 2008 I am starting a WIP of once you get on Dantooine Master Zhar, gives you you're own robe. I might make a new model or Reskin the Pre exsiting Jedi Robes. I will also make an option for your player to get the Star Forge Robe. Here's what I have though for the dialog so far "Master Zhar: Now it is time to chose your Jedi Robe. PC: Okay. Master Zhar which robe will you want: Star Forge Robes, Jedi Robe (Blue) , Jedi Robe (Brown), Jedi Robe (Red) or [My Reskin]. Any idea's questions? Concerns. I may need Beta Testers. Link to comment Share on other sites More sharing options...
Darth InSidious Posted February 3, 2008 Share Posted February 3, 2008 Create your own robe model? You might be able to edit one - but that kind of thing is not for the faint-hearted, you should be warned. Link to comment Share on other sites More sharing options...
Lordjedi Posted February 3, 2008 Author Share Posted February 3, 2008 Yeah I'll just do a reskin. Edit: I started with KotOR script generator so which do I use? Do I use Spawn Creature / Open Merchant? Link to comment Share on other sites More sharing options...
Marius Fett Posted February 3, 2008 Share Posted February 3, 2008 Why would you want to spawn a Creature or open a Merchant if you're giving the PC an item? Link to comment Share on other sites More sharing options...
Lordjedi Posted February 3, 2008 Author Share Posted February 3, 2008 How would I get Zhar to give the robes then? Link to comment Share on other sites More sharing options...
Stream Posted February 3, 2008 Share Posted February 3, 2008 Attach this script to the dialog to give the robes; void main() { object oPC=GetFirstPC(); CreateItemOnObject("ROBE_TAG", oPC); } This script will give the robes and should make the player wear them too; void main() { object oPC=GetFirstPC(); object oRobe = CreateItemOnObject("ROBE_TAG", oPC, 1, 0); ActionEquipItem(oRobe, 1, 0); } Also my Lightsaber Choices mod uses Zhar's dialog so feel free to use that if you'd like so the two are compatible. Take Care --Stream Link to comment Share on other sites More sharing options...
Lordjedi Posted February 3, 2008 Author Share Posted February 3, 2008 So that script will make Zhar ask what robe do you want and it will put all robes or what? And how would I make it so it asks about the Star Forge robes and he says all the other stuff. Link to comment Share on other sites More sharing options...
Taak Farst Posted February 3, 2008 Share Posted February 3, 2008 yu know, no offence, but I wouldnt do a wip knowing I know nothing about it. You shuld put it on hold until you understand it more. Link to comment Share on other sites More sharing options...
Lordjedi Posted February 3, 2008 Author Share Posted February 3, 2008 yu know, no offence, but I wouldnt do a wip knowing I know nothing about it. You shuld put it on hold until you understand it more. Well I already did two skins so I wanted to make a script of Zhar giving it to you. If only DDD did a scripting tutorial Link to comment Share on other sites More sharing options...
Stream Posted February 3, 2008 Share Posted February 3, 2008 You have to write the dialog file saying what you'd like and then attach the appropriate script to the node - take a look through the dialog and scripts in LC to give you any idea. --Stream Link to comment Share on other sites More sharing options...
Lordjedi Posted February 3, 2008 Author Share Posted February 3, 2008 So I have permission from you to use your Zhar Dialog file? Link to comment Share on other sites More sharing options...
Qui-Gon Glenn Posted February 3, 2008 Share Posted February 3, 2008 Well I already did two skins so I wanted to make a script of Zhar giving it to you. If only DDD did a scripting tutorial You don't need the scripting tut... Stream gave you your script. You need to read some Dialog editing tut's, then edit the conversation in question. If you do not know which one it is/where to find it, you will need to learn how to extract files with the various tools available to us. Or cheat and look at Stream's mod - it will tell you the .dlg in question. It sounds like a nice simple mod, I would download it. Once you learn how to edit the dialog, you should be able to whip it up rather quickly. Link to comment Share on other sites More sharing options...
Stream Posted February 3, 2008 Share Posted February 3, 2008 Yeah you can use it, I was thinking about making a robe one like this but decided against it, it may not be anything too big but I've got too much on as it is. Once you open up Zhar's dialog you'll see what I done to it to make LC, just use that as a pattern for making the extra dialog for the robes. --Stream Link to comment Share on other sites More sharing options...
Lordjedi Posted February 3, 2008 Author Share Posted February 3, 2008 Enh...I just used DGL Editor by TK wrote the script and all then I tried talking to Zhar and his dialog doesn't even open. Link to comment Share on other sites More sharing options...
Stream Posted February 3, 2008 Share Posted February 3, 2008 Did you put the script in the field, script that fires when spoken or the conditional filed? --Stream Link to comment Share on other sites More sharing options...
Lordjedi Posted February 3, 2008 Author Share Posted February 3, 2008 Uh what do you mean? Link to comment Share on other sites More sharing options...
Stream Posted February 3, 2008 Share Posted February 3, 2008 Sorry that was a cack handed post. When you edited the dialog file, on the node you wanted to the script to run from did you enter the name of the script in the field that says script that fires when spoken or the one above it which is something like script that determines if node is available. Also did you place all the files in the override folder or package them in a .mod file and did you make sure the dialog file kept it's same name. --Stream Link to comment Share on other sites More sharing options...
Lordjedi Posted February 4, 2008 Author Share Posted February 4, 2008 Yes, I did. Link to comment Share on other sites More sharing options...
Stream Posted February 4, 2008 Share Posted February 4, 2008 I'm not sure what it could be, email the files to be and I'll take a look through them for you. I've sent you a PM with my email address. --Stream Link to comment Share on other sites More sharing options...
Marius Fett Posted February 4, 2008 Share Posted February 4, 2008 Did you remember to compile the script? You'd be surprised how many people do that... Link to comment Share on other sites More sharing options...
Lordjedi Posted February 5, 2008 Author Share Posted February 5, 2008 I don't think so. Link to comment Share on other sites More sharing options...
Marius Fett Posted February 6, 2008 Share Posted February 6, 2008 That's probably your problem then. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.