Loogie Posted April 30, 2017 Posted April 30, 2017 The Sexout Working Girl brothel approaches stopped working a couple months ago, and I've been looking for a fix. What I've found is when I replace a call like "0 == player.GetItemCount 00SexoutActor" with "eval !(call fnSexoutActorInUse PlayerREF)", it fails saying I've called it on in an invalid ref. Where am I going wrong with this?
cecik Posted April 30, 2017 Posted April 30, 2017 I don't know what's exactly what's wrong with it, but i know that "eval (0 == call fnSexoutActorInUse Actor" works if you want to test if an actor is not in use by Sexout.
Loogie Posted April 30, 2017 Author Posted April 30, 2017 Tried it. Getting the error "Attempting to call a function on a NULL reference or base object" in the console. Does this not work on ref variables?
cecik Posted April 30, 2017 Posted April 30, 2017 As far as In know, It actually requires a reference. but is must be a valid reference, so it's either: if eval ( 0 == call fnSexoutActorInUse Playerref) ; do something endif or: ref Actor let Actor := playerref (or any actor you want to test) if eval ( 0 == call fnSexoutActorInUse Actor) ; do something endif
Recommended Posts
Archived
This topic is now archived and is closed to further replies.