Quick Reply
Search this Thread
Test Subject
Original Poster
#1 Old 8th Sep 2014 at 6:04 PM
Default Script to add "Give aspiration points" cheat?
I was wondering if this kind of thing is possible yet. Another thing, I would love to do some general modding, but when I open a package (ex. ClientFullBuild0) in s4pe, the content has no labels. So I am clueless on what is what.

Anyway, I'm just waiting, because the game is pretty stale right now.



PS. Am I the only one who notices that the testing cheats turn off after traveling someplace? It should stay on like in The Sims 3.
Eminence Grise
#2 Old 9th Sep 2014 at 2:36 AM
Quote: Originally posted by SimLord123
I was wondering if this kind of thing is possible yet. Another thing, I would love to do some general modding, but when I open a package (ex. ClientFullBuild0) in s4pe, the content has no labels. So I am clueless on what is what.


In most cases the labels aren't there because nobody knows what the resources are yet.

If you want to hasten progress, the way to go would be to participate in the research effort to fill in that info This is the best reference for seeing what others have found, and for sharing your findings: http://simswiki.info/wiki.php?title...oding_Tutorials (Resources section).
Test Subject
#3 Old 9th Sep 2014 at 10:45 AM Last edited by artum : 9th Sep 2014 at 12:15 PM.
Ok I found that the aspirations points are stored as "Whims Bucks" in the sim_info.
There's a commad (listed as DebugOnly) that sets that parameter: sims.whims_give_bucks
but It doesn't work even with testingcheats. It should be easy to export this command as mod OR find where to enable this super-duper-debug mode

EDIT: Ok DebugOnly commands get executed only when scripts are compiled with __debug__ option, there's a post somewhere on how to enable that but i think it's better to just export the command in a mod
Field Researcher
#4 Old 9th Sep 2014 at 8:08 PM
Quote: Originally posted by artum
Ok I found that the aspirations points are stored as "Whims Bucks" in the sim_info.
There's a commad (listed as DebugOnly) that sets that parameter: sims.whims_give_bucks
but It doesn't work even with testingcheats. It should be easy to export this command as mod OR find where to enable this super-duper-debug mode

EDIT: Ok DebugOnly commands get executed only when scripts are compiled with __debug__ option, there's a post somewhere on how to enable that but i think it's better to just export the command in a mod


Correct but you can use the command I found, sims.add_buff Points

It gives you 100 aspiration points, the only downside is you then have to remove the buff in order to add it again.

sims.remove_buff Points
sims.add_buff Points

rinse and repeat.
Back to top