Mandalore The Shadow Posted April 18, 2008 Share Posted April 18, 2008 could i create an armband that spawns one kind of enemy with kotor tool if not what tool do i need Link to comment Share on other sites More sharing options...
jonathan7 Posted April 18, 2008 Share Posted April 18, 2008 Yeah its possible, with KotOR tool...though I'm not sure what you have to do; Id reccomend a review of BoS and specifically the Amulet of Fiends, examining that should be of help for what you want to do. This might also possibly be of help; http://knightsoftheoldrepublic.filefront.com/file/Call_of_Aid;89332 Link to comment Share on other sites More sharing options...
WraithPrince Posted April 18, 2008 Share Posted April 18, 2008 its totally posible heres a link of one done. http://knightsoftheoldrepublic.filefront.com/file/TSL_Warp_Cheat_Band;73877 might want to contact the auther. Link to comment Share on other sites More sharing options...
Mandalore The Shadow Posted April 18, 2008 Author Share Posted April 18, 2008 can anyone tell me so i dont have to dig up the information Link to comment Share on other sites More sharing options...
WraithPrince Posted April 18, 2008 Share Posted April 18, 2008 By contact the auther I ment ask him how he did it, I know him and hes making a new version with more stuff u can do with it. e.g spawn dead body's, allie's and the like hes a nice enough guy he will more then likely help you out a bit. Link to comment Share on other sites More sharing options...
Mandalore The Shadow Posted April 18, 2008 Author Share Posted April 18, 2008 ok will do sry Link to comment Share on other sites More sharing options...
ForeverNight Posted April 18, 2008 Share Posted April 18, 2008 Here, the basic way to do it involves Spells.2da editing... Only way I know how is I've been editing Darth333's spawnband lately to figure out how you make such a thing. You have to edit your spells.2da to create a new line in it (I don't know what it is for TSL) I don't know what you'll have to call it, check out the shields for help. Then, see the runscript or something like that heading? Under that you'll want to insert the name of your script (E.G. myscript) no .ncs. Then you'll want to create your script so that it spawns a creature around you. (Don't ask me, I can't script to save my life). At least... I think that's how it works! If you want D333's Spawnband, just PM me for it... or her... Link to comment Share on other sites More sharing options...
glovemaster Posted April 19, 2008 Share Posted April 19, 2008 You can use this as your script and in the Script Parameters, "P1" collumn you put the distance away from the PC you want the target to spawn in meters, like "5", and in the String Param collumn you can put the object ResRef you want to spawn, like if you want a rancor you put "c_rancor". This way you can use this script on all of your dialog nodes and only need to change your "P1" and "String Param". void main(){ object oPC = GetFirstPC(); int iDistance = GetScriptParameter(1); string sCreatureTemplate = GetScriptStringParameter(); vector vPC = GetPosition(oPC); float fFacing = GetFacing(oPC); float fDistance = IntToFloat(iDistance); vector vFacing = AngleToVector(fFacing); vector vSpawn = vFacing * fDistance; location lSpawn = Location(vSpawn, 0.0); object oSpawn = CreateObject( OBJECT_TYPE_CREATURE, sCreatureTemplate, lSpawn, TRUE ); AssignCommand( oSpawn, SetFacingPoint(vPC) ); AssignCommand( oSpawn, ActionAttack(oPC, FALSE) ); } Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.