Hi there! You are currently browsing as a guest. Why not create an account? Then you get less ads, can thank creators, post feedback, keep a list of your favourites, and more!
Lab Assistant
Original Poster
#1 Old 30th Nov 2020 at 8:44 PM
Default Making a interaction only appear to unselected sims
Basically, that. My swordfighting mod shows the duel interaction even in the selected sim, as a self-interaction, and I don't want a self-interaction. Is there some form of getting rid of this problem, through using the test() method?
Advertisement
Space Pony
#2 Old 30th Nov 2020 at 9:08 PM
Just add a additional check in the Test method to exclude the Actor

so if Actor == Target return false
Scholar
#3 Old 2nd Dec 2020 at 9:39 AM
Will Actor.SimDescription.SimDescriptionID == Target.SimDescription.SimDescriptionID be faster?

If you like my mods. Consider supporting me on Patreon
Check out my website for updates on my mods and other work PuddingFace.wixsite.com
Check out my Youtube channel for tutorials(modding tutorials) and other content Youtube

Follow me on Twitter Instagram Pinterest Tumblr
Forum Resident
#4 Old 2nd Dec 2020 at 11:49 PM
No. I strongly doubt it.

The runtime will only check if those two Sim objects point to the same instance.

Find my Mods: Here at MTS, over at Simlogical
Back to top