Browse Source

Merge branch 'master' of https://git.tfgames.site/Kevin_Smarts/glife

Kevin_Smarts 2 months ago
parent
commit
f6f7124765
1 changed files with 12 additions and 12 deletions
  1. 12 12
      locations/uni_admin.qsrc

+ 12 - 12
locations/uni_admin.qsrc

@@ -141,9 +141,9 @@ if $ARGS[0] = 'enrollment':
 					gs 'homes_properties', 'give_access', 'university_dorm'
 
 					!!This creates the classes for the first semester of the nursing program to be used by the grade system, and gives the player a starting grade value (which is a failing grade, the player has to study if they want to pass)
-					gs 'grades', 'createclass', 'uni_nursing_semester_1', 'patient care 101', 3, 2, 'no', 'no', 1, 12
-					gs 'grades', 'createclass', 'uni_nursing_semester_1', 'anatomy and physiology 101', 3, 2, 'no', 'no', 1, 12
-					gs 'grades', 'createclass', 'uni_nursing_semester_1', 'examination and treatment 101', 3, 2, 'no', 'no', 1, 12
+					gs 'grades', 'createclass', 'uni_nursing_semester_1', 'patient care 101', 4 2, 'no', 'no', 1, 12
+					gs 'grades', 'createclass', 'uni_nursing_semester_1', 'anatomy and physiology 101', 4, 2, 'no', 'no', 1, 12
+					gs 'grades', 'createclass', 'uni_nursing_semester_1', 'examination and treatment 101', 1, 2, 'no', 'no', 1, 12
 					gs 'grades', 'grade_award', 'uni_nursing_semester_1', 'patient care 101', 35
 					gs 'grades', 'grade_award', 'uni_nursing_semester_1', 'anatomy and physiology 101', 35
 					gs 'grades', 'grade_award', 'uni_nursing_semester_1', 'examination and treatment 101', 35
@@ -248,25 +248,25 @@ if $ARGS[0] = 'enrollment_semester':
 				university['enrolled_in_semester'] += 1
 				if university['enrolled_in_semester'] = 2:
 					!!This creates the classes for the second semester of the nursing program to be used by the grade system, and gives the player a starting grade value (which is a failing grade, the player has to study if they want to pass)
-					gs 'grades', 'createclass', 'uni_nursing_semester_2', 'patient care 102', 3, 2, 'no', 'no', 1, 12
-					gs 'grades', 'createclass', 'uni_nursing_semester_2', 'anatomy and physiology 102', 3, 2, 'no', 'no', 1, 12
-					gs 'grades', 'createclass', 'uni_nursing_semester_2', 'examination and treatment 102', 3, 2, 'no', 'no', 1, 12
+					gs 'grades', 'createclass', 'uni_nursing_semester_2', 'patient care 102', 4, 2, 'no', 'no', 1, 12
+					gs 'grades', 'createclass', 'uni_nursing_semester_2', 'anatomy and physiology 102', 4, 2, 'no', 'no', 1, 12
+					gs 'grades', 'createclass', 'uni_nursing_semester_2', 'examination and treatment 102', 1, 2, 'no', 'no', 1, 12
 					gs 'grades', 'grade_award', 'uni_nursing_semester_2', 'patient care 102', (class['uni_nursing_semester_1_patient_care 101_grade']/3+10)
 					gs 'grades', 'grade_award', 'uni_nursing_semester_2', 'anatomy and physiology 102', (class['uni_nursing_semester_1_anatomy_and_physiology 101_grade']/3+10)
 					gs 'grades', 'grade_award', 'uni_nursing_semester_2', 'examination and treatment 102', (class['uni_nursing_semester_1_examination_and_treatment 101_grade']/3+10)
 				elseif university['enrolled_in_semester'] = 3:
 					!!This creates the classes for the third semester of the nursing program to be used by the grade system, and gives the player a starting grade value (which is a failing grade, the player has to study if they want to pass)
-					gs 'grades', 'createclass', 'uni_nursing_semester_3', 'patient care 201', 3, 2, 'no', 'no', 1, 12
-					gs 'grades', 'createclass', 'uni_nursing_semester_3', 'anatomy and physiology 201', 3, 2, 'no', 'no', 1, 12
-					gs 'grades', 'createclass', 'uni_nursing_semester_3', 'dosages and pharmaceuticals 101', 3, 2, 'no', 'no', 1, 12
+					gs 'grades', 'createclass', 'uni_nursing_semester_3', 'patient care 201', 4, 2, 'no', 'no', 1, 12
+					gs 'grades', 'createclass', 'uni_nursing_semester_3', 'anatomy and physiology 201', 4, 2, 'no', 'no', 1, 12
+					gs 'grades', 'createclass', 'uni_nursing_semester_3', 'dosages and pharmaceuticals 101', 1, 2, 'no', 'no', 1, 12
 					gs 'grades', 'grade_award', 'uni_nursing_semester_3', 'patient care 201', ((class['uni_nursing_semester_1_patient_care 101_grade'] + class['uni_nursing_semester_2_patient_care 102_grade'])/6+10)
 					gs 'grades', 'grade_award', 'uni_nursing_semester_3', 'anatomy and physiology 201', ((class['uni_nursing_semester_1_anatomy_and_physiology 101_grade'] + class['uni_nursing_semester_2_anatomy_and_physiology 102_grade'])/6+10)
 					gs 'grades', 'grade_award', 'uni_nursing_semester_3', 'dosages and pharmaceuticals 101', 35
 				elseif university['enrolled_in_semester'] = 4:
 					!!This creates the classes for the fourth semester of the nursing program to be used by the grade system, and gives the player a starting grade value (which is a failing grade, the player has to study if they want to pass)
-					gs 'grades', 'createclass', 'uni_nursing_semester_4', 'patient care 202', 3, 2, 'no', 'no', 1, 12
-					gs 'grades', 'createclass', 'uni_nursing_semester_4', 'anatomy and physiology 202', 3, 2, 'no', 'no', 1, 12
-					gs 'grades', 'createclass', 'uni_nursing_semester_4', 'dosages and pharmaceuticals 102', 3, 2, 'no', 'no', 1, 12
+					gs 'grades', 'createclass', 'uni_nursing_semester_4', 'patient care 202', 4, 2, 'no', 'no', 1, 12
+					gs 'grades', 'createclass', 'uni_nursing_semester_4', 'anatomy and physiology 202', 4, 2, 'no', 'no', 1, 12
+					gs 'grades', 'createclass', 'uni_nursing_semester_4', 'dosages and pharmaceuticals 102', 1, 2, 'no', 'no', 1, 12
 					gs 'grades', 'grade_award', 'uni_nursing_semester_4', 'patient care 202', ((class['uni_nursing_semester_1_patient_care 101_grade'] + class['uni_nursing_semester_2_patient_care 102_grade'] + class['uni_nursing_semester_3_patient_care 201_grade'])/9+10)
 					gs 'grades', 'grade_award', 'uni_nursing_semester_4', 'anatomy and physiology 202', ((class['uni_nursing_semester_1_anatomy_and_physiology 101_grade'] + class['uni_nursing_semester_2_anatomy_and_physiology 102_grade'] + class['uni_nursing_semester_3_anatomy_and_physiology 201_grade'])/9+10)
 					gs 'grades', 'grade_award', 'uni_nursing_semester_4', 'dosages and pharmaceuticals 102', (class['uni_nursing_semester_3_dosages_and_pharmaceuticals 101_grade']/3+10)