CbunnySwtor
Member
- Jul 18, 2024
- 277
- 654
- 171
RoadsideDiner.Work.State = WorkStates.Proposed resets the "you got fired flag" so you don't have to wait 7-10 days to ask for the job again. You still have to talk to the manager again to get the job.Thanks although the RoadsideDiner.Work.State = WorkStates.Proposed didn't seem to do anything for me although it didn't give any like invalid command I switched the proposed to working and that seems to have worked. Just incase I also talked to the manager just to make fully sure had job back
RoadsideDiner.Work.State = WorkStates.Working would "work" because none of the "are you hired" checks are looking for that state. Going this route skips a lot of assignment steps done when you are hired and also get cleared with you get fired. No idea if that's gonna cause you grief in the long run.
RoadsideDiner.Work.State & WorkStates.Fired =0 is a bitwise comparison operator (&) and an assignment operator (=) trying to work together. It's going to throw an expected statement error because of that.