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.
hi when you create a new head model from an existing head model of twilek or other and you give this head to your player you can put a mask but it do not appear that's normal I know I know somebody discussed about that, too but I don t find the t... [Read More]
I done that, this script find wich upgrade items is installed in the weapon in every hand, and replace these upgrade items when recreate weapon after destruction. but with CreateItemOnObject : for exemple if vibrations cell was installed in my weap... [Read More]
hi how can I give upgrade item to a weapon I try CreateItemOnObject(oWeapon, "upgrade_item") but I think it is not the right way because it doesn t work correctly, the weapon get the upgrade item but if I go to see in the weapon wich upg... [Read More]
twilek female head model files are : twilek_f.mdl - twilek_f.mdx twilek_f02.mdl - twilek_f02.mdx twilek_f03.mdl - twilef_f03.mdx twilek_f04.mdl - twilek_f04.mdx (zaerdra head model) if you want know wich model correponds to wich texture it s eas... [Read More]
you must get this 5 files appearance.2da heads.2da portraits.2da model_file_of_twilek_female_head_that_you_want_mod .MDL model_file_of_twilek_female_head_that_you_want_mod .MDX and some txi file (verify wich txi message use existing texture that you... [Read More]
I mean for exemple : carth is equiped with a sword and is in the ebon hawk I am out of the ebon hawk (exemple : jedi council room) and I want get the carth's sword by script... [Read More]
Is it possible to do that with a script ? get an item wich is in an other module by using for exemple this function : GetItemPossessedBy(oNPC, "item_name") exemple : I am out of the ebon hawk and I would get item possessed by a NPC who i... [Read More]
Hi with script, How can I give item to a NPC and put this item in the right slot (hand, head or arm...) ? I know : int nSlot = (number_of_slot) object oNPC=GetObjectByTag("npc_name"); object oItem=GetObjectByTag("item_name");... [Read More]
no darth333, tk102 give me the same lines a little higher this script continues to have the same behavior :confused: I think it is possible to get that we want by creating object for each party member and ask to script to seeks every possessed obj... [Read More]
really thank you, I learn many things today with your last script, I can do that I wanted when I posted this thread. but there is a thing : oPC=GetNextPC(); doesn t work the script seeks and finds items in firstpc inventory and in firstpc equipp... [Read More]
ok I check your script in the game it works very well It seeks the item in inventory and it find it, but it never find the item if the item is in firstpc hand or other party member hand or head or arm (for mask and armband) what must I write if I w... [Read More]
yeeeeeeeeees !! with oPC=GetObjectByTag("Zaalbar"); it works !! :D :D a last question, if I want that the script verify if I have some items but not on a NPC but everywhere : on NPC, on FirstPC and in Inventory. :confused: because for... [Read More]
I try that : I speak with Zaalbar, he has g_w_vbroswrd05 and g_i_belt012 int StartingConditional() { object oPC = GetPCSpeaker(); object oSword = GetItemPossessedBy(oPC, "g_w_vbroswrd05"); object oBelt = GetItemPossessedBy(oPC, "g_i_... [Read More]
ok I took a look on Global Variable Comparison tool, i see it can be very usefull. but i would ask to you something can I do that ? int ? = GetObjectByTag("k35_itm_sithhpass"); int ? = GetObjectByTag("g_w_vbroswrd05"); if ((? =... [Read More]
thank you for your explanation (if &&) where can I find a item name list please ? (not item name type g_x_xxxxxx) this type : K_STAR_MAP KOR_DANEL etc... thank you very much... [Read More]