Jelajahi Sumber

[changed] You now have separate bank account opening and it is needed before you can register as a camgirl.

KevinSmarts 3 tahun lalu
induk
melakukan
58aee28771
2 mengubah file dengan 77 tambahan dan 68 penghapusan
  1. 24 20
      locations/Komp.qsrc
  2. 53 48
      locations/bank.qsrc

+ 24 - 20
locations/Komp.qsrc

@@ -461,29 +461,33 @@ if $ARGS[0] = 'rabota':
 				'The website hides your stream for viewers from your region, so the chance of being recognized by someone you know in real life is very low.'
 				'If you''re interested in becoming a webcam girl, please fill in this questionnaire below.</i>'
 				
-				if pcs_inhib >= 40 or exhibitionist_lvl > 1 or (pcs_inhib >= 35 and exhibitionist_lvl > 0):
-					act 'Fill in the questionnaire':
-						*clr & cla
-						camwhore = 1
-						mfcclients = 0
-						camclients = 0
-						mfccum = 0
-						minut += 20
-						gs 'stat'
-						'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore2.jpg"></center>'
-						if $pcs_webcamname = '':
-							'You consider which name you''d like to register under.'
-								$pcs_webcamname = input("Which name would you like to use? (Leave blank for <<$pcs_nickname>>)")
-							if $pcs_webcamname = '':$pcs_webcamname = '<<$pcs_nickname>>'
+				if bankAccount = 0:
+					'You need a valid bank account to be able to register for this job.'
+				else
+					if pcs_inhib >= 40 or exhibitionist_lvl > 1 or (pcs_inhib >= 35 and exhibitionist_lvl > 0):
+						act 'Fill in the questionnaire':
+							*clr & cla
+							camwhore = 1
+							mfcclients = 0
+							camclients = 0
+							mfccum = 0
+							minut += 20
+							gs 'stat'
+							'<center><img <<$set_imgh>> src="images/shared/accessories/computer/camwhore2.jpg"></center>'
+							if $pcs_webcamname = '':
+								'You consider which name you''d like to register under.'
+									$pcs_webcamname = input("Which name would you like to use? (Leave blank for <<$pcs_nickname>>)")
+								if $pcs_webcamname = '':$pcs_webcamname = '<<$pcs_nickname>>'
+							end
+							'You fill out the questionnaire and register yourself as a webcam model. Ten minutes later, you have already been approved and you can now earn money as a webcam girl.'
+							'Of course, you will need a functioning webcam to do this! If you don''t have one yet, they are fairly cheap to buy at most local supermarket chains.'
+							act 'Leave this website':gt 'komp','brows'
 						end
-						'You fill out the questionnaire and register yourself as a webcam model. Ten minutes later, you have already been approved and you can now earn money as a webcam girl.'
-						'Of course, you will need a functioning webcam to do this! If you don''t have one yet, they are fairly cheap to buy at most local supermarket chains.'
 						act 'Leave this website':gt 'komp','brows'
+					else
+						*nl
+						'You don''t feel comfortable showing off your body in this way.'
 					end
-					act 'Leave this website':gt 'komp','brows'
-				else
-					''
-					'You don''t feel comfortable showing of your body.'
 				end
 
 				if hour < 20 and hour > 7:act 'Search for more jobs':gt 'komp','rabota'

+ 53 - 48
locations/bank.qsrc

@@ -18,7 +18,60 @@ if $ARGS[0] = 'start':
 	
 	if bankAccount = 0:
 		'Do you want to open an account?'
+		if money > 50:
+			act 'Open account':
+				bankAccount = 1
+				bankDebtLimit = 5000
+				'You are led to on open office and a member of the bank staff goes through your details and ID, then takes 50 <b>₽</b> from you before setting up your account'
+				'"Your account is now open with your 50 <b>₽</b> and an overdraft of 5,000 <b>₽</b>"'
+				act 'Continue': gt 'bank'
+			end
+		else
+			'You require 50 <b>₽</b> in cash to be able to open an account.'
+		end
 	else
+		if money > 0:
+			act 'Deposit money':
+				cla
+				menu_off = 1
+				kartaIN = input ("How much money you want to deposit into the account?")
+
+				if kartaIN <= 0 or kartaIN > money:
+					'That is not a valid operation.'
+				else
+					karta += kartaIN
+					money -= kartaIN
+					
+					'<br>You deposited <<kartaIN>> <b>₽</b>, your account balance is now ' + iif(karta >= 0,'<<karta>>','<font color="red"><<karta>></font>') + ' <b>₽</b>.'
+				end
+				killvar 'kartaIN'
+				act 'Walk away':gt 'bank', 'start'
+			end
+		end
+
+		if karta + bankDebtLimit > 0:
+			act 'Withdraw money':
+				cla
+				menu_off = 1
+				kartaOUT = input ("How much do you want to withdraw from account?")
+
+				if kartaOUT <= 0 or kartaOUT > karta + bankDebtLimit:
+					'That is not a valid operation.'
+				else
+					karta -= kartaOUT
+					money += kartaOUT
+					if karta > 0:
+						'<br>You withdraw <<kartaOUT>> <b>₽</b>. You have <<karta>> <b>₽</b> left in your bank account.'
+					elseif karta = 0:
+						'<br>You withdraw <<kartaOUT>> <b>₽</b>. You have no money left in your bank account.'
+					else
+						'<br>You withdraw <<kartaOUT>> <b>₽</b>. <font color="red">Your bank account is overdrawn by <b><<karta>> ₽</b>.</font>'
+					end
+				end
+				killvar 'kartaOUT'
+				act 'Walk away':gt 'bank', 'start'
+			end
+		end
 		if karta >= 0:
 			'You have <<karta>> <b>₽</b> in your account.'
 			'You can take out a loan of <font color="blue"><<bankDebtLimit>></font>!'
@@ -56,54 +109,6 @@ if $ARGS[0] = 'start':
 			end
 		end
 	end
-
-	if money > 0:
-		act 'Deposit money':
-			cla
-			menu_off = 1
-			kartaIN = input ("How much money you want to deposit into the account?")
-
-			if kartaIN <= 0 or kartaIN > money:
-				'That is not a valid operation.'
-			else
-				karta += kartaIN
-				money -= kartaIN
-				
-				if bankAccount = 0: 
-					bankAccount = 1
-					bankDebtLimit = 5000
-				end
-				
-				'<br>You deposited <<kartaIN>> <b>₽</b>, your account balance is now ' + iif(karta >= 0,'<<karta>>','<font color="red"><<karta>></font>') + ' <b>₽</b>.'
-			end
-			killvar 'kartaIN'
-			act 'Walk away':gt 'bank', 'start'
-		end
-	end
-
-	if karta + bankDebtLimit > 0:
-		act 'Withdraw money':
-			cla
-			menu_off = 1
-			kartaOUT = input ("How much do you want to withdraw from account?")
-
-			if kartaOUT <= 0 or kartaOUT > karta + bankDebtLimit:
-				'That is not a valid operation.'
-			else
-				karta -= kartaOUT
-				money += kartaOUT
-				if karta > 0:
-					'<br>You withdraw <<kartaOUT>> <b>₽</b>. You have <<karta>> <b>₽</b> left in your bank account.'
-				elseif karta = 0:
-					'<br>You withdraw <<kartaOUT>> <b>₽</b>. You have no money left in your bank account.'
-				else
-					'<br>You withdraw <<kartaOUT>> <b>₽</b>. <font color="red">Your bank account is overdrawn by <b><<karta>> ₽</b>.</font>'
-				end
-			end
-			killvar 'kartaOUT'
-			act 'Walk away':gt 'bank', 'start'
-		end
-	end
 end
 
 --- bank ---------------------------------