|
@@ -203,7 +203,7 @@ if $ARGS[0] = 'loss':
|
|
|
gs 'pain', 5, 'thighs', 'kick'
|
|
|
gs 'pain', 5, 'hair', 'stretch'
|
|
|
dynamic '<<$clothingworntype>>_h[<<clothingwornnumber>>] = 0'
|
|
|
- '<<$streetev_title>>'
|
|
|
+ $streetev_title
|
|
|
'<center><img <<$set_imgh>> src="images/locations/shared/street/lostfight.jpg"></center>'
|
|
|
'You do your best, but there are just too many of them. Eventually they get you down on the ground and beat you, ripping out handfuls of your hair and tearing your clothes.'
|
|
|
'After what feels like an eternity, they finally stop hitting you. "That''s what you get, you stupid bitch." Then the girl spits on you, with the rest of the gang following suit and spitting on you as well. Finally they get bored of tormenting you further and leave, laughing about how they beat the ugly girls ass.'
|
|
@@ -283,10 +283,11 @@ if $ARGS[0] = 'loss':
|
|
|
act 'Run!(<<will_cost>> Willpower)':
|
|
|
gs 'willpower', 'pay', 'self'
|
|
|
AlexandriaMissionQW += 1
|
|
|
+ dummy = rand(1,100)
|
|
|
gs 'stat'
|
|
|
- if rand(1,100) <= pcs_run:
|
|
|
+ if dummy <= pcs_run:
|
|
|
gt 'alexandriaEv', 'anachase3'
|
|
|
- elseif rand(1,100) > (pcs_run and 89):
|
|
|
+ elseif dummy >= pcs_run and dummy >= 90:
|
|
|
gt 'alexandriaEv', 'anacrash1'
|
|
|
else
|
|
|
gt 'alexandriaEv', 'anachase4'
|
|
@@ -535,7 +536,7 @@ if $ARGS[0] = 'win':
|
|
|
elseif fightEnding = 14:
|
|
|
fightEnding = 0
|
|
|
Win += 1
|
|
|
- '<<$streetev_title>>'
|
|
|
+ $streetev_title
|
|
|
'<center><img <<$set_imgh>> src="images/locations/shared/street/girlgang.jpg"></center>'
|
|
|
'Even though it was four against one, you beat their asses triumphantly. They got in some hits of their own, but in the end you are the only one standing while the four of them lay around your feet curled up, bloody and crying. You straighten your clothes the best you can and proudly continue on your way to the claps of several onlookers that watched the fight.'
|
|
|
|
|
@@ -598,10 +599,11 @@ if $ARGS[0] = 'win':
|
|
|
act 'Run!(<<will_cost>> Willpower)':
|
|
|
gs 'willpower', 'pay', 'self'
|
|
|
AlexandriaMissionQW += 1
|
|
|
+ dummy = rand(1,100)
|
|
|
gs 'stat'
|
|
|
- if rand(1,100) <= pcs_run:
|
|
|
+ if dummy <= pcs_run:
|
|
|
gt 'alexandriaEv', 'anachase3'
|
|
|
- elseif rand(1,100) > (pcs_run and 89):
|
|
|
+ elseif dummy >= pcs_run and dummy >= 90:
|
|
|
gt 'alexandriaEv', 'anacrash1'
|
|
|
else
|
|
|
gt 'alexandriaEv', 'anachase4'
|
|
@@ -907,7 +909,7 @@ if $ARGS[0] = 'surrender':
|
|
|
fightEnding = 0
|
|
|
Loss += 1
|
|
|
gs 'pain', 5, 'hair', 'stretch'
|
|
|
- '<<$streetev_title>>'
|
|
|
+ $streetev_title
|
|
|
'<center><img <<$set_imgh>> src="images/locations/shared/street/lostfight.jpg"></center>'
|
|
|
if fightPStats['Health'] = pcs_health:
|
|
|
'Just the mere thought of a fight, your knees go weak and you feel yourself being out of breath. Before even the first punch is thrown you raise up your hands and squeak out in fear. "Don''t hurt me, I give up."'
|
|
@@ -997,10 +999,11 @@ if $ARGS[0] = 'surrender':
|
|
|
act 'Run!(<<will_cost>> Willpower)':
|
|
|
gs 'willpower', 'pay', 'self'
|
|
|
AlexandriaMissionQW += 1
|
|
|
+ dummy = rand(1,100)
|
|
|
gs 'stat'
|
|
|
- if rand(1,100) <= pcs_run:
|
|
|
+ if dummy <= pcs_run:
|
|
|
gt 'alexandriaEv', 'anachase3'
|
|
|
- elseif rand(1,100) > (pcs_run and 89):
|
|
|
+ elseif dummy >= pcs_run and dummy >= 90:
|
|
|
gt 'alexandriaEv', 'anacrash1'
|
|
|
else
|
|
|
gt 'alexandriaEv', 'anachase4'
|