Jump to content

How to correctly replace GetItemCount 00SexoutActor?


Loogie

Recommended Posts

Posted

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?

Posted

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.

Posted

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?

Posted

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

 

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...