This autohotkey script, this will:
1. Open the Console Window
2. Clear current qualifications
3. Clear current traits
4. Set their training to level 5 (stafflevel 4)
5. Add traits Motivated and Green Fingers.
6. Add qualifications explained below
7. Close the Console Window
*NOTE* Requires console to be enabled, and AutoHotKey to be installed.
*NOTE* Edit variable MyConsoleKey := "~" and substitute "~" for the key that opens your console.
9/7/2018
Added scripts to earn money and earn kudosh
To use:
1. Pick up staff member
2. Press appropriate keystroke
3. Drop staff member
Left Shift-F1 = Doctor General Practitioner V
Left Shift-F2 = Doctor Treatment V
Left Shift-F3 = Doctor Psychiatry V
Left Shift-F4 = Doctor Research V
Left Shift-F5 = Doctor Surgery V
Left Shift-F6 = Doctor Treatment IV and Radiology
Left Shift-F7 = Nurse Treatment V
Left Shift-F8 = Nurse Ward Management V
Left Shift-F9 = Nurse Diagnostics V
Left Shift-F10 = Nurse Pharmacy Management, Injection Administration, Treatment III
Left Shift-F11 = Janitor Mechanics III, Maintenance and Ghost Capture
Left Shift-F12 = Janitor Maintenance IV, Ghost Capture
Left Cntl-F1 = Assistant Customer Service V
Left Cntl-F2 = Assistant Marketing V
Left Cntl-F3 = Earn $100,000
Left Cntl-F4 = Earn 500 Kudosh
TO USE COPY CODE BETWEEN QUOTES THEN SAVE WITH FILE EXTENSION .AHK
Sorry, the forums wouldn't let me directly attach a .ahk file
- P
Code: Select all
;Left Shift-F1 = Doctor General Practitioner V
;Left Shift-F2 = Doctor Treatment V
;Left Shift-F3 = Doctor Psychiatry V
;Left Shift-F4 = Doctor Research V
;Left Shift-F5 = Doctor Surgery V
;Left Shift-F6 = Doctor Treatment IV and Radiology
;Left Shift-F7 = Nurse Treatment V
;Left Shift-F8 = Nurse Ward Management V
;Left Shift-F9 = Nurse Diagnostics V
;Left Shift-F10 = Nurse Pharmacy Management, Injection Administration, Treatment III
;Left Shift-F11 = Janitor Mechanics III, Maintenance and Ghost Capture
;Left Shift-F12 = Janitor Maintenance IV, Ghost Capture
;Left Cntl-F1 = Assistant Customer Service V
;Left Cntl-F2 = Assistant Marketing V
;Left Cntl-F3 = Earn $100,000
;Left Cntl-F4 = Earn 500 Kudosh
;CONFIGURATION
;EDIT VARIABLE TO SET KEY THAT OPENS CONSOLE
MyConsoleKey := "~"
;Doctor General Practitioner
<+F1::
SendInput %MyConsoleKey%
sleep 25
SendInput ClearQualifications{enter}
sleep 25
SendInput ClearTraits{enter}
sleep 25
SendInput SetStaffRank 4{enter}
sleep 25
SendInput AssignQualification General Practice{enter}
sleep 25
SendInput AssignQualification General Practice II{enter}
sleep 25
SendInput AssignQualification General Practice III{enter}
sleep 25
SendInput AssignQualification General Practice IV{enter}
sleep 25
SendInput AssignQualification General Practice V{enter}
sleep 25
SendInput AssignTrait Motivated{enter}
sleep 25
SendInput AssignTrait Green Fingers{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Doctor Treatment
<+F2::
SendInput %MyConsoleKey%
sleep 25
SendInput ClearQualifications{enter}
sleep 25
SendInput ClearTraits{enter}
sleep 25
SendInput SetStaffRank 4{enter}
sleep 25
SendInput AssignQualification Treatment{enter}
sleep 25
SendInput AssignQualification Treatment II{enter}
sleep 25
SendInput AssignQualification Treatment III{enter}
sleep 25
SendInput AssignQualification Treatment IV{enter}
sleep 25
SendInput AssignQualification Treatment V{enter}
sleep 25
SendInput AssignTrait Motivated{enter}
sleep 25
SendInput AssignTrait Green Fingers{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Doctor Psychiatry
<+F3::
SendInput %MyConsoleKey%
sleep 25
SendInput ClearQualifications{enter}
sleep 25
SendInput ClearTraits{enter}
sleep 25
SendInput SetStaffRank 4{enter}
sleep 25
SendInput AssignQualification Psychiatry{enter}
sleep 25
SendInput AssignQualification Psychiatry II{enter}
sleep 25
SendInput AssignQualification Psychiatry III{enter}
sleep 25
SendInput AssignQualification Psychiatry IV{enter}
sleep 25
SendInput AssignQualification Psychiatry V{enter}
sleep 25
SendInput AssignTrait Motivated{enter}
sleep 25
SendInput AssignTrait Green Fingers{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Doctor Research
<+F4::
SendInput %MyConsoleKey%
sleep 25
SendInput ClearQualifications{enter}
sleep 25
SendInput ClearTraits{enter}
sleep 25
SendInput SetStaffRank 4{enter}
sleep 25
SendInput AssignQualification Research{enter}
sleep 25
SendInput AssignQualification Research II{enter}
sleep 25
SendInput AssignQualification Research III{enter}
sleep 25
SendInput AssignQualification Research IV{enter}
sleep 25
SendInput AssignQualification Research V{enter}
sleep 25
SendInput AssignTrait Motivated{enter}
sleep 25
SendInput AssignTrait Green Fingers{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Doctor Surgery
<+F5::
SendInput %MyConsoleKey%
sleep 25
SendInput ClearQualifications{enter}
sleep 25
SendInput ClearTraits{enter}
sleep 25
SendInput SetStaffRank 4{enter}
sleep 25
SendInput AssignQualification Surgery{enter}
sleep 25
SendInput AssignQualification Surgery II{enter}
sleep 25
SendInput AssignQualification Surgery III{enter}
sleep 25
SendInput AssignQualification Surgery IV{enter}
sleep 25
SendInput AssignQualification Surgery V{enter}
sleep 25
SendInput AssignTrait Motivated{enter}
sleep 25
SendInput AssignTrait Green Fingers{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Doctor Treatment and Radiology
<+F6::
SendInput %MyConsoleKey%
sleep 25
SendInput ClearQualifications{enter}
sleep 25
SendInput ClearTraits{enter}
sleep 25
SendInput SetStaffRank 4{enter}
sleep 25
SendInput AssignQualification Treatment{enter}
sleep 25
SendInput AssignQualification Treatment II{enter}
sleep 25
SendInput AssignQualification Treatment III{enter}
sleep 25
SendInput AssignQualification Treatment IV{enter}
sleep 25
SendInput AssignQualification Radiology{enter}
sleep 25
SendInput AssignTrait Motivated{enter}
sleep 25
SendInput AssignTrait Green Fingers{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Nurse Treatment
<+F7::
SendInput %MyConsoleKey%
sleep 25
SendInput ClearQualifications{enter}
sleep 25
SendInput ClearTraits{enter}
sleep 25
SendInput SetStaffRank 4{enter}
sleep 25
SendInput AssignQualification Treatment{enter}
sleep 25
SendInput AssignQualification Treatment II{enter}
sleep 25
SendInput AssignQualification Treatment III{enter}
sleep 25
SendInput AssignQualification Treatment IV{enter}
sleep 25
SendInput AssignQualification Treatment V{enter}
sleep 25
SendInput AssignTrait Motivated{enter}
sleep 25
SendInput AssignTrait Green Fingers{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Nurse Ward Management
<+F8::
SendInput %MyConsoleKey%
sleep 25
SendInput ClearQualifications{enter}
sleep 25
SendInput ClearTraits{enter}
sleep 25
SendInput SetStaffRank 4{enter}
sleep 25
SendInput AssignQualification Ward Management{enter}
sleep 25
SendInput AssignQualification Ward Management II{enter}
sleep 25
SendInput AssignQualification Ward Management III{enter}
sleep 25
SendInput AssignQualification Ward Management IV{enter}
sleep 25
SendInput AssignQualification Ward Management V{enter}
sleep 25
SendInput AssignTrait Motivated{enter}
sleep 25
SendInput AssignTrait Green Fingers{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Nurse Diagnostics
<+F9::
SendInput %MyConsoleKey%
sleep 25
SendInput ClearQualifications{enter}
sleep 25
SendInput ClearTraits{enter}
sleep 25
SendInput SetStaffRank 4{enter}
sleep 25
SendInput AssignQualification Diagnostics{enter}
sleep 25
SendInput AssignQualification Diagnostics II{enter}
sleep 25
SendInput AssignQualification Diagnostics III{enter}
sleep 25
SendInput AssignQualification Diagnostics IV{enter}
sleep 25
SendInput AssignQualification Diagnostics V{enter}
sleep 25
SendInput AssignTrait Motivated{enter}
sleep 25
SendInput AssignTrait Green Fingers{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Nurse Pharmacy Management, Injection Administration, Treatment
<+F10::
SendInput %MyConsoleKey%
sleep 25
SendInput ClearQualifications{enter}
sleep 25
SendInput ClearTraits{enter}
sleep 25
SendInput SetStaffRank 4{enter}
sleep 25
SendInput AssignQualification Treatment{enter}
sleep 25
SendInput AssignQualification Treatment II{enter}
sleep 25
SendInput AssignQualification Treatment III{enter}
sleep 25
SendInput AssignQualification Pharmacy Management{enter}
sleep 25
SendInput AssignQualification Injection Administration{enter}
sleep 25
SendInput AssignTrait Motivated{enter}
sleep 25
SendInput AssignTrait Green Fingers{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Janitor Mechanics, Maintenance and Ghost Capture
<+F11::
SendInput %MyConsoleKey%
sleep 25
SendInput ClearQualifications{enter}
sleep 25
SendInput ClearTraits{enter}
sleep 25
SendInput SetStaffRank 4{enter}
sleep 25
SendInput AssignQualification Mechanics{enter}
sleep 25
SendInput AssignQualification Mechanics II{enter}
sleep 25
SendInput AssignQualification Mechanics III{enter}
sleep 25
SendInput AssignQualification Maintenance{enter}
sleep 25
SendInput AssignQualification Ghost Capture{enter}
sleep 25
SendInput AssignTrait Motivated{enter}
sleep 25
SendInput AssignTrait Green Fingers{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Janitor Maintenance, Ghost Capture
<+F12::
SendInput %MyConsoleKey%
sleep 25
SendInput ClearQualifications{enter}
sleep 25
SendInput ClearTraits{enter}
sleep 25
SendInput SetStaffRank 4{enter}
sleep 25
SendInput AssignQualification Maintenance{enter}
sleep 25
SendInput AssignQualification Maintenance II{enter}
sleep 25
SendInput AssignQualification Maintenance III{enter}
sleep 25
SendInput AssignQualification Maintenance IV{enter}
sleep 25
SendInput AssignQualification Ghost Capture{enter}
sleep 25
SendInput AssignTrait Motivated{enter}
sleep 25
SendInput AssignTrait Green Fingers{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Assistant Customer Service
<^F1::
SendInput %MyConsoleKey%
sleep 25
SendInput ClearQualifications{enter}
sleep 25
SendInput ClearTraits{enter}
sleep 25
SendInput SetStaffRank 4{enter}
sleep 25
SendInput AssignQualification Customer Service{enter}
sleep 25
SendInput AssignQualification Customer Service II{enter}
sleep 25
SendInput AssignQualification Customer Service III{enter}
sleep 25
SendInput AssignQualification Customer Service IV{enter}
sleep 25
SendInput AssignQualification Customer Service V{enter}
sleep 25
SendInput AssignTrait Motivated{enter}
sleep 25
SendInput AssignTrait Green Fingers{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Assistant Marketing
<^F2::
SendInput %MyConsoleKey%
sleep 25
SendInput ClearQualifications{enter}
sleep 25
SendInput ClearTraits{enter}
sleep 25
SendInput SetStaffRank 4{enter}
sleep 25
SendInput AssignQualification Marketing{enter}
sleep 25
SendInput AssignQualification Marketing II{enter}
sleep 25
SendInput AssignQualification Marketing III{enter}
sleep 25
SendInput AssignQualification Marketing IV{enter}
sleep 25
SendInput AssignQualification Marketing V{enter}
sleep 25
SendInput AssignTrait Motivated{enter}
sleep 25
SendInput AssignTrait Green Fingers{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Earn 100,000
<^F3::
SendInput %MyConsoleKey%
sleep 25
SendInput EarnMoney 100000{enter}
sleep 25
SendInput %MyConsoleKey%
return
;Earn 500 Kudosh
<^F4::
SendInput %MyConsoleKey%
sleep 25
SendInput AwardSilver 500{enter}
sleep 25
SendInput %MyConsoleKey%
return