Guest Black_Rider91 Posted July 2, 2010 Report Share Posted July 2, 2010 This is an issue in la mod that if you click ''Ask Person'' it is only available for parked vehicles and not for people. I'm thinking of fix that, but I don't know how and if it's possible..Thanks! Quote Link to comment Share on other sites More sharing options...
soulbody Posted July 2, 2010 Report Share Posted July 2, 2010 indeed were able to fix this, most part will be in here SetValidTargets(ACTOR_PERSON | ACTOR_VEHICLE);ACTOR is standing for the target which is operatable to use the command on, in this case ACTOR_VEHICLE need's to be removed.besides that you also need to change if (Caller->GetType()!=ACTOR_PERSON) return false;you can delete is but better is to make return false -> return true. if (Target->GetType() == ACTOR_VEHICLE) { Vehicle v(Target); if (v.IsParking()) return true; return false; }also this need to be changed or deleted, in this case i prefer deleting.Remember to make a back-up case i'm not sure this all need to be done but this are the reasons i see what cause it. BTW i want to thank chase you brought me on a idea for the realism mod.Hope this will worksIf it didn't use your back-up to restore the file but still hold your back-up save.then open up the restored script and just delete this part !p.CanBeAsked() || Quote Link to comment Share on other sites More sharing options...
Guest Black_Rider91 Posted July 2, 2010 Report Share Posted July 2, 2010 indeed were able to fix this, most part will be in here SetValidTargets(ACTOR_PERSON | ACTOR_VEHICLE);ACTOR is standing for the target which is operatable to use the command on, in this case ACTOR_VEHICLE need's to be removed.besides that you also need to change if (Caller->GetType()!=ACTOR_PERSON) return false;you can delete is but better is to make return false -> return true. if (Target->GetType() == ACTOR_VEHICLE) { Vehicle v(Target); if (v.IsParking()) return true; return false; }also this need to be changed or deleted, in this case i prefer deleting.Remember to make a back-up case i'm not sure this all need to be done but this are the reasons i see what cause it. BTW i want to thank chase you brought me on a idea for the realism mod.Hope this will worksIf it didn't use your back-up to restore the file but still hold your back-up save.then open up the restored script and just delete this part !p.CanBeAsked() ||Thaaanks a lot!! I'll try this, hope to fix this issue Quote Link to comment Share on other sites More sharing options...
prince88 Posted August 20, 2010 Report Share Posted August 20, 2010 what file I must open?? Quote Link to comment Share on other sites More sharing options...