Some ammo reduces target's AC. I was wondering if the same is possible (or possible to emulate effectively) for the weapon itself.
Reduces AC of the target? That would affect all combatants, then?To my knowledge, not without scripting. You can give weapons higher hit chance, but not make them lower AC.
You can however make a hook script that reduces AC whenever a certain weapon is equipped.
Jeez, you're hard to pleaseYes, but like I said, this is not what I need.
// hs_tohit.ssl
procedure start;
#include ".\HEADERS\DEFINE.H"
#include ".\HEADERS\sfall.h"
#define usewpn(PID) (obj_pid(critter_inven_obj(attacker, INVEN_TYPE_RIGHT_HAND)) == PID) or (obj_pid(critter_inven_obj(attacker, INVEN_TYPE_LEFT_HAND)) == PID)
procedure start begin
variable tohit;
variable attacker;
variable target;
if not init_hook then begin
tohit := get_sfall_arg;
attacker := get_sfall_arg;
target := get_sfall_arg;
if (usewpn(PID_10MM_PISTOL) or usewpn(PID_DESERT_EAGLE)) then begin
if (get_critter_stat(target, STAT_ac) < 5) then begin
tohit := tohit + get_critter_stat(target, STAT_ac);
end else begin
tohit := tohit + 5;
end
end
if (tohit > 95) then begin
set_sfall_return(95);
end else begin
set_sfall_return(tohit);
end
end
end
What happens if critter_inven_obj returns 0, i.e. the character is unarmed? Won't obj_pid(0x00) cause a crash? Or will it just return false?It's easier than I thought. Here's an example code that essentially gives 10mm Pistol and Desert Eagle an AC mod -5:
Code:// hs_tohit.ssl procedure start; #include ".\HEADERS\DEFINE.H" #include ".\HEADERS\sfall.h" #define usewpn(PID) (obj_pid(critter_inven_obj(attacker, INVEN_TYPE_RIGHT_HAND)) == PID) or (obj_pid(critter_inven_obj(attacker, INVEN_TYPE_LEFT_HAND)) == PID) procedure start begin variable tohit; variable attacker; variable target; if not init_hook then begin tohit := get_sfall_arg; attacker := get_sfall_arg; target := get_sfall_arg; if (usewpn(PID_10MM_PISTOL) or usewpn(PID_DESERT_EAGLE)) then begin if (get_critter_stat(target, STAT_ac) < 5) then begin tohit := tohit + get_critter_stat(target, STAT_ac); end else begin tohit := tohit + 5; end end if (tohit > 95) then begin set_sfall_return(95); end else begin set_sfall_return(tohit); end end end
It works perfectly normal if you just go punching or kicking someone.What happens if critter_inven_obj returns 0, i.e. the character is unarmed? Won't obj_pid(0x00) cause a crash? Or will it just return false?
Could you humor me and see if you get an output if you try printing the results of obj_pid(0)? I'm worried I may have given false advice in another thread, and I don't have my Fallout modding gear installed on this PC.It works perfectly normal if you just go punching or kicking someone.What happens if critter_inven_obj returns 0, i.e. the character is unarmed? Won't obj_pid(0x00) cause a crash? Or will it just return false?
Sure, I added the line in my script:Could you humor me and see if you get an output if you try printing the results of obj_pid(0)? I'm worried I may have given false advice in another thread, and I don't have my Fallout modding gear installed on this PC.
And the result is -1:display_msg("OBJ_PID 0 is: " + obj_pid(0) + " .");