I'm trying to read weapon proto data using the proto_data command. I can get the name, description, pid, fid, flags, and other stuff, but I can't get the thing I need: Animation Code. This is what tells me which attack type it is, so I can check if a critter can use that weapon. According to define.h there is item data
#define it_data (10)
And in the txt files that get generated in \fallout2\dev\proto\items it shows what is in this data section:
d.animation_code: J-RIFLE
d.min_damage: 13
d.max_damage: 26
d.dt: normal_dam
d.max_range1: 35
d.max_range2: 35
d.min_st: 4
d.mp_cost1: 4
d.mp_cost2: 5
d.crit_fail_table: 2
d.perk: None
d.rounds: 3
d.caliber: .223
d.ammo_type_pid: 34 00000034
d.max_ammo: 30
d.sound_id:
There it is right at the beggining of data, animation code. Problem is: if I try to "print" the value of it_data to the screen like this:
display_msg("data=" + proto_data(PID,it_data));
The mapper crashes. I can look at the other fields this way, but it can't print the data field. That makes be think the data field is is binary. Okay, so if it's binary, how the heck do I extract the animation code so I can know what animation type the weapon needs. Any ideas?
#define it_data (10)
And in the txt files that get generated in \fallout2\dev\proto\items it shows what is in this data section:
d.animation_code: J-RIFLE
d.min_damage: 13
d.max_damage: 26
d.dt: normal_dam
d.max_range1: 35
d.max_range2: 35
d.min_st: 4
d.mp_cost1: 4
d.mp_cost2: 5
d.crit_fail_table: 2
d.perk: None
d.rounds: 3
d.caliber: .223
d.ammo_type_pid: 34 00000034
d.max_ammo: 30
d.sound_id:
There it is right at the beggining of data, animation code. Problem is: if I try to "print" the value of it_data to the screen like this:
display_msg("data=" + proto_data(PID,it_data));
The mapper crashes. I can look at the other fields this way, but it can't print the data field. That makes be think the data field is is binary. Okay, so if it's binary, how the heck do I extract the animation code so I can know what animation type the weapon needs. Any ideas?