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.

another modding question

Page: 1 of 1
 Seprithro
04-15-2004, 8:10 PM
#1
would it be possible to have more than one head item equipted at a time? for instance, could you somehow change the implant or hand slots to functions as head slots? i know this one is out there but thought i'd ask anyway
 Seprithro
04-15-2004, 10:31 PM
#2
"bump" sorry, any ideas?
 tk102
04-15-2004, 10:54 PM
#3
Try going into baseitems.2da and changing the EquipableSlots column for Masks from 0x0001 to 0x0201.

That should make 'mask' items equipable in the Implant slot.

From a comparison of nwscript.nss and baseitems.2da values, this is the apparent translation:

INVENTORY_SLOT_HEAD=0; //2^0 =0x1
INVENTORY_SLOT_BODY=1; //2^1 =0x2
INVENTORY_SLOT_HANDS=3; // 2^3=0x8
INVENTORY_SLOT_RIGHTWEAPON=4; //2^4=0x10
INVENTORY_SLOT_LEFTWEAPON=5; //2^5=0x20
INVENTORY_SLOT_LEFTARM= 7; //2^7=0x80
INVENTORY_SLOT_RIGHTARM= 8; //2^8=0x100
INVENTORY_SLOT_IMPLANT= 9; //2^9=0x200
INVENTORY_SLOT_BELT=10; //2^10=0x400
INVENTORY_SLOT_CWEAPON_L=14; //2^14=0x4000
INVENTORY_SLOT_CWEAPON_R=15; //2^15=0x8000
INVENTORY_SLOT_CWEAPON_B=16; //2^16=0x10000
INVENTORY_SLOT_CARMOUR=17; //2^17=0x20000

The last 4 are special hidden items used by Canderous for his regeneration and HK47 for his upgrades.

[Edit: Thanks Darth333 for pointing out the link between inventory slots as declared in nwscript.nss]
 Seprithro
04-16-2004, 12:45 AM
#4
ok that worked somewhat... i could equip mask in implant section, but they were not show on the pc, any ideas how to make them show up on your pc face?
 tk102
04-16-2004, 1:03 AM
#5
That's because you implanted the mask into your head! (I guess.)

Try changing it to 0x07FF and put that mask anywhere you want. It might make for a good screenshot.

I don't think you can have your cake and eat it too on this one. Sorry.
Page: 1 of 1