Jump to content

Home

Appearance Script?


Isaac Clarke

Recommended Posts

OK, I'm using notepad to write my .nss script, but there's one problem. Heres what I have so far:

 

ChangeObjectAppearance(-pcnamegoeshere-)nAppearance(i.e. Party_NPC_T3M3)

 

The problem is, I need something to go in place of "-pcnamegoeshere-" that changes any character you selected into

the appearance you select from the armband.

 

EDIT:Sorry for double posting. I was going to edit the previous post, but I forgot.

Link to comment
Share on other sites

Your script should look like this:

 

If you want to change somebody

Object oNPC = GetTagByObject("tag of npc");

ChangeObjectAppearance(oNPC)nAppearance(i.e. Party_NPC_T3M3)

 

If you want to change the pc

Object oPC = GetFirstPC();

ChangeObjectAppearance(oPC)nAppearance(i.e. Party_NPC_T3M3)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...