1
0
Переглянути джерело

[fixes] Didn't update the acts for last commit

KevinSmarts 4 роки тому
батько
коміт
fdac615320
4 змінених файлів з 8 додано та 8 видалено
  1. 2 2
      locations/bras.qsrc
  2. 2 2
      locations/panties.qsrc
  3. 2 2
      locations/purses.qsrc
  4. 2 2
      locations/shoes.qsrc

+ 2 - 2
locations/bras.qsrc

@@ -145,7 +145,7 @@ if $ARGS[0] = 'view_bra_item':
 			'Price: <<ARGS[4]>> <b>₽</b>'
 			act 'Leave': gt $loc, $metka
 			if money >= price:
-				act 'Buy':
+				act 'Buy (cash)':
 					money -= price
 					dynamic $ARGS[2] + '_bras[<<ARGS[3]>>] = 1'
 					dynamic $ARGS[2] + '_brasS[<<ARGS[3]>>] = 0'
@@ -155,7 +155,7 @@ if $ARGS[0] = 'view_bra_item':
 				'You do not have enough cash to buy this bra.'
 			end
 			if karta + bankDebtLimit >= price:
-				act 'Buy':
+				act 'Buy (card)':
 					karta -= price
 					dynamic $ARGS[2] + '_bras[<<ARGS[3]>>] = 1'
 					dynamic $ARGS[2] + '_brasS[<<ARGS[3]>>] = 0'

+ 2 - 2
locations/panties.qsrc

@@ -148,7 +148,7 @@ if $ARGS[0] = 'view_panty_item':
 			'Price: <<ARGS[4]>> <b>₽</b>'
 			act 'Leave': gt $loc, $metka
 			if money >= price:
-				act 'Buy':
+				act 'Buy (cash)':
 					money -= price
 					dynamic $ARGS[2] + '_panties[<<ARGS[3]>>] = 1'
 					dynamic $ARGS[2] + '_pantiesS[<<ARGS[3]>>] = 0'
@@ -158,7 +158,7 @@ if $ARGS[0] = 'view_panty_item':
 				'You do not have enough cash to buy these panties.'
 			end
 			if karta + bankDebtLimit >= price:
-				act 'Buy':
+				act 'Buy (card)':
 					karta -= price
 					dynamic $ARGS[2] + '_panties[<<ARGS[3]>>] = 1'
 					dynamic $ARGS[2] + '_pantiesS[<<ARGS[3]>>] = 0'

+ 2 - 2
locations/purses.qsrc

@@ -83,7 +83,7 @@ if $ARGS[0] = 'view_purse_item':
 			'Price: <<ARGS[4]>> <b>₽</b>'
 			act 'Leave': gt $loc, $metka
 			if money >= price:
-				act 'Buy':
+				act 'Buy (cash)':
 					money -= price
 					dynamic $ARGS[2] + '_purses[<<ARGS[3]>>] = 1'
 					if bag = 0:
@@ -97,7 +97,7 @@ if $ARGS[0] = 'view_purse_item':
 				'You do not have enough cash to buy this purse.'
 			end
 			if karta + bankDebtLimit >= price:
-				act 'Buy':
+				act 'Buy (card)':
 					karta -= price
 					dynamic $ARGS[2] + '_purses[<<ARGS[3]>>] = 1'
 					if bag = 0:

+ 2 - 2
locations/shoes.qsrc

@@ -198,7 +198,7 @@ if $ARGS[0] = 'view_shoe_item':
 			'Price: <<price>> <b>₽</b>'
 			act 'Leave': gt $loc, $metka
 			if money >= Price:
-				act 'Buy':
+				act 'Buy (cash)':
 					h = 0
 					if ShoStyle = 2:h = 10
 					if ShoStyle = 5:h = 20
@@ -211,7 +211,7 @@ if $ARGS[0] = 'view_shoe_item':
 				'You do not have enough cash to buy these shoes.'
 			end
 			if karta + bankDebtLimit >= price:
-				act 'Buy':
+				act 'Buy (card)':
 					h = 0
 					if ShoStyle = 2:h = 10
 					if ShoStyle = 5:h = 20