My goal is:
To have a spear that destroys itself upon a sucessfull hit.
Here's my script in the combat_p_proc of obj_dude:
It crashes the mapper. Can someone tell me what i'm doing wrong, and what might be a better way?
Thanks, Josan
To have a spear that destroys itself upon a sucessfull hit.
Here's my script in the combat_p_proc of obj_dude:
Code:
if
(obj_pid(critter_inven_obj(dude_obj,INVEN_TYPE_LEFT_HAND)) == PID_SPEAR) or
(obj_pid(critter_inven_obj(dude_obj,INVEN_TYPE_RIGHT_HAND)) == PID_SPEAR) and
(fixed_param == COMBAT_SUBTYPE_HIT_SUCCEEDED) then begin
rm_obj_from_inven(self_obj, PID_SPEAR);
end
end
It crashes the mapper. Can someone tell me what i'm doing wrong, and what might be a better way?
Thanks, Josan