Aller au contenu

Photo

Character editing issue.


  • Veuillez vous connecter pour répondre
4 réponses à ce sujet

#1
Ingragaming

Ingragaming
  • Members
  • 2 messages

Hi everyone! 

 

I started playing Neverwinter 2 a few weeks ago, I'm having a lot of fun. The game is great and I plan on playing a lot more of it. 

 

My question would be reguarding the editing of characters in the Main campaign. 

 

I downloaded the NWN2 character editor, figured out how to install it via the path thing... (I'm far from an expert in computers). 

 

Now, when I run the program and try to edit a saved character, I can chnge about anything BUT the starting race/class... I looked around to see how one could change his main character while staying at the same stage of the game but no one could help me. 

 

I suspect that what I want to do involve the remapping option of the program, but I can't understand anything about it. Is there anything I can do? 

 

Thanks for the help,

 

Infra. 



#2
Dann-J

Dann-J
  • Members
  • 3 161 messages

There's a sample remapping INI file included with the editor ('Sample Remapping.ini').

 

The race, subrace and class numbers to be used are the line numbers in the relevant 2DAs, namely:

  • racialtypes.2da
  • racialsubtypes.2da
  • classes.2da

  • GCoyote aime ceci

#3
Ingragaming

Ingragaming
  • Members
  • 2 messages

Okay I understand, So I write a notepad doc following the model provided.

 

Is ther a database containing the different race/class id? 



#4
Dann-J

Dann-J
  • Members
  • 3 161 messages

2DA files (two-dimensional arrays) are databases of a sort. You can view them using the 2DA editor in the toolset.

 

The values of the game's script constants are usually 2DA line numbers, so they provide another way to determine them.

 

Class constants: http://nwn2.wikia.com/wiki/CLASS_TYPE_*

Race constants: http://nwn2.wikia.com/wiki/RACIAL_TYPE_*

 

I don't see any constants in the wiki for racial subtypes though. The following should be all of the racial subtypes available to player characters:

 

RACIAL_SUBTYPE_GOLD_DWARF = 0
RACIAL_SUBTYPE_GRAY_DWARF = 1
RACIAL_SUBTYPE_SHIELD_DWARF = 2
RACIAL_SUBTYPE_DROW = 3
RACIAL_SUBTYPE_MOON_ELF = 4
RACIAL_SUBTYPE_SUN_ELF = 5
RACIAL_SUBTYPE_WILD_ELF = 6
RACIAL_SUBTYPE_WOOD_ELF = 7
RACIAL_SUBTYPE_SVIRFNEBLIN = 8
RACIAL_SUBTYPE_ROCK_GNOME = 9
RACIAL_SUBTYPE_LIGHTFOOT_HALF = 11
RACIAL_SUBTYPE_STRONGHEART_HALF = 12
RACIAL_SUBTYPE_AASIMAR = 13
RACIAL_SUBTYPE_TIEFLING = 14
RACIAL_SUBTYPE_HALFELF = 15
RACIAL_SUBTYPE_HALFORC = 16
RACIAL_SUBTYPE_HUMAN = 17
RACIAL_SUBTYPE_AIR_GENASI = 18
RACIAL_SUBTYPE_EARTH_GENASI = 19
RACIAL_SUBTYPE_FIRE_GENASI = 20
RACIAL_SUBTYPE_WATER_GENASI = 21
RACIAL_SUBTYPE_YUANTI = 47
RACIAL_SUBTYPE_GRAYORC = 48



#5
GCoyote

GCoyote
  • Members
  • 341 messages
Question, are you trying to apply changes to a game in progress (a recent save) or are you trying to modify some characters for a new start?