Here's a simple thing i want to do:
When the player goes to use the car, have a random chance it will not start, minus the players repair skill. Then have the player make a repair check to get it going again. Simple as that.
Here's the appropriate part of the car script:
What do i need to change to make this happen? Can it even be done?
When the player goes to use the car, have a random chance it will not start, minus the players repair skill. Then have the player make a repair check to get it going again. Simple as that.
Here's the appropriate part of the car script:
Code:
procedure use_p_proc begin
stop_car_use := false;
if (global_var(GVAR_PLAYER_GOT_CAR) != 0) then begin
if (get_stolen_car(stolen_car_stolen)) then begin
if (chop_shop_boy_obj != 0) then begin
if (critter_state(chop_shop_boy_obj) != CRITTER_IS_DEAD) then begin
if (obj_can_see_obj(chop_shop_boy_obj, dude_obj)) then begin
stop_car_use := true;
nr_add_timer_event(chop_shop_boy_obj, 0, attack_param);
end
end
end
end
end else begin
stop_car_use := true;
display_mstr(100 + (smitty_part(state_smitty_part_unknown) == false));
end
if (stop_car_use == false) then begin
set_took_car_off_den_bus_1;
if (get_stolen_car(stolen_car_none) == false) then begin
set_stolen_car(stolen_car_drive_away);
end
car_was_used_to_exit := true;
play_sfx("carstart");
// DJS - Added this flag to handle creation/deletion of car
// from multiple Raiders map entrances on RAIDERS1.
if( cur_map_index == MAP_RAIDERS_CAMP1 ) then
set_global_var( GVAR_LEFT_CAR_AT_RAIDERS, 0 );
car_give_to_party;
debug_msg("Party has the car");
end else begin
script_overrides;
debug_msg("car use stopped by script");
end
end
What do i need to change to make this happen? Can it even be done?