Because I don't want to keep cluttering up the engine tweaks thread with this, here's some random other stuff @phobos2077 might consider for the sfall header files:
Code:
#define dude_base_st (get_critter_base_stat(dude_obj, STAT_st))
#define dude_base_ag (get_critter_base_stat(dude_obj, STAT_ag))
#define dude_base_pe (get_critter_base_stat(dude_obj, STAT_pe))
#define dude_base_lu (get_critter_base_stat(dude_obj, STAT_lu))
#define dude_base_iq (get_critter_base_stat(dude_obj, STAT_iq))
#define dude_base_ch (get_critter_base_stat(dude_obj, STAT_ch))
#define dude_base_en (get_critter_base_stat(dude_obj, STAT_en))
//these are useful for making fake perks (don't want to replicate the game's mistake of allowing you to get perks using drugs ;))
#define random_encounter_is (cur_town==-1 or (cur_town > 18 and cur_town < 48))
#define is_humanoid(x) (critter_kill_type(x) < 5)
#define xp_val(x) (get_proto_data(obj_pid(x), 392))
#define left_hand_is 0
#define right_hand_is 1
#define dude_worn (critter_inven_obj(dude_obj,INVEN_TYPE_WORN))
#define dude_left (critter_inven_obj(dude_obj,INVEN_TYPE_LEFT_HAND))
#define dude_right (critter_inven_obj(dude_obj,INVEN_TYPE_RIGHT_HAND))
#define is_on_dude_team(x) (has_trait( TRAIT_OBJECT, x, OBJECT_TEAM_NUM ) == TEAM_PLAYER)
#define current_hp(x) get_critter_stat(x, STAT_current_hp)
#define max_hp(x) get_critter_stat(x, STAT_max_hit_points)
#define num_of_cripplings(critter) ((critter_state(critter) BWAND (DAM_CRIP_LEG_LEFT)) + (critter_state(critter) BWAND (DAM_CRIP_LEG_RIGHT)) + (critter_state(critter) BWAND (DAM_CRIP_ARM_LEFT)) + (critter_state(critter) BWAND (DAM_CRIP_ARM_RIGHT)) + Is_Blind(critter))
#define rest_healing_tick (200*ONE_GAME_MINUTE)
//when resting or traveling, this is the amount of time it takes before the healing rate does its business.
#define straight_behind(x, y) ((rot_to_tile(x,y)) == (get_rot(y)))
#define side_behind(x, y) (((rot_to_tile(x,y)) == (get_rot(y) + 1) % 6) or ((rot_to_tile(x, y)) == (get_rot(y) + 5) % 6))
#define side_front(x, y) (((rot_to_tile(x,y)) == (get_rot(y) + 2) % 6) or ((rot_to_tile(x, y)) == (get_rot(y) + 4) % 6))
#define front(x, y) ((rot_to_tile(x,y)) == (get_rot(y) + 3) % 6)
#define rot_to_tile(x,y) (rotation_to_tile(tile_num(x), tile_num(y)))
#define get_rot(x) (has_trait(TRAIT_OBJECT,x,OBJECT_CUR_ROT))
#define team(x) has_trait(TRAIT_OBJECT,x,OBJECT_TEAM_NUM)
#define is_robot(x) (proto_data(obj_pid(x),cr_body_type) == CR_BODY_ROBOTIC)
#define inc_proto_data(x, y, z) set_proto_data(x, y, get_proto_data(x, y) + (z))
#define dec_proto_data(x, y, z) set_proto_data(x, y, get_proto_data(x, y) - (z))
#define inc_critter_base_stat(x, y, z) set_critter_base_stat(x, y, get_critter_base_stat(x, y) + (z))
#define dec_critter_base_stat(x, y, z) set_critter_base_stat(x, y, get_critter_base_stat(x, y) - (z))
#define inc_critter_extra_stat(x, y, z) set_critter_extra_stat(x, y, get_critter_extra_stat(x, y) + (z))
#define dec_critter_extra_stat(x, y, z) set_critter_extra_stat(x, y, get_critter_extra_stat(x, y) - (z))
#define inc_critter_skill_points(x, y, z) set_critter_skill_points(x, y, get_critter_skill_points(x, y) + (z))
#define dec_critter_skill_points(x, y, z) set_critter_skill_points(x, y, get_critter_skill_points(x, y) - (z))
#define sfall_ini_int(x) get_ini_setting("JimsMods.ini|MODS|" + x + "")
#define sfall_ini_string(x) get_ini_string("JimsMods.ini|MODS|" + x + "")
//x being a string. Just replace "JimsMods.ini|MODS|" with your .ini and your category header; note that you shouldn't use separate categories for this method to work
Last edited: