<<silently>>\
<<set $city_name = $city_name_array.random()>>\
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/UI/menu_background.webp");
inset: 0;
position: fixed;
filter:grayscale(100%);
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<center><span class="start_menu"><img src ="img/UI/start_menu.webp"></span>\
An interactive fiction with RPG and management elements where you build your own criminal empire. You take on the role of a girl raised in a crime dynasty, sent on a mission to establish her own organization in a city flooded with gangs. Choose your bio - and go, commit some crimes. You start as a no-name hustler who just moved into the city, and you gotta make a name for yourself. Steal cars, rob houses, pick pockets, distribute and cook various substances ghetto-style or get yourself a nice cozy lab, and a lot more. And soon enough, you're gonna conquer all the turfs and set up a bunch of shady enterprises.
Do not forget to check the <<link "credits" "Credits Page">><</link>>. There you'll find the attributions, changelogs, Patreon link, and all the necessary contact information if such a need arises.
<a href="https://www.patreon.com/posts/roadmap-125201230">Roadmap</a>
Name of the city:
<span class="textbox"><<textbox "$city_name" $city_name>></span>
<<link "Reroll name">>
<<set $city_name = $city_name_array.random()>>\
<<replace ".textbox">><<textbox "$city_name" $city_name>><</replace>>\
<</link>>
<<link "Start." "CharGen">>
<<if $city_name == "" || $city_name == "The City">>\
<</if>>\
<</link>>\
</center>\
<style>
body::before {
content: '';
background-image: url("img/background/events/prologue.webp");
inset: 0;
position: fixed;
filter:grayscale(100%);
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
You find yourself once again in the interrogation room with the two federal agents. They've got that tired look on their faces, well, of course, you've been here before.
<span class="male_text">- "Well, here we are again,"</span> one of the agents sighs, rubbing his forehead. <span class="male_text">"You manage to get yourself caught, and now we have to bail you out... again. But this time, it’s different."</span>
You raised an eyebrow in surprise.
<span class="male_text">- "We'll get to it in no time. Let's do a rundown on your criminal records first, you know, usual stuff."</span> the second agent pulls out a thick folder from the stack of papers on the table, flipping it open with a slight rustle. He looks at the pages for a moment, eyes scanning the text, before giving you a knowing glance. <span class="male_text">"Here we go. Your history's all laid out. Correct me if i'm wrong."</span>
<<message "Stats explanation.">>
By default, all your stats start at 3. You also have <span id="stamina">energy</span>, which limits the number of actions you can take daily. However, it only restricts particularly time-consuming actions, not all profitable ones. You can increase your energy through certain traits or by purchasing an expensive car.
<span class="combat_text">Combat</span> - measures your attack damage in combat encounters. It allows you to achieve what you want with brute force. Can be raised by participating in combat or by attending expensive combat training courses.
<span class="cun">Cunning</span> - measures how agile and tricky you are. It’s your ability to sell more and achieve whatever you want through deception and lies. Cunning affects the amount of money you earn from various activities, not just criminal ones. You can raise it with the help of traits that you earn by engaging in illegal activities.
<span class="charm">Charm</span> - your looks and overall allure. It allows you to achieve whatever you want through seduction and charisma. Determines how quickly you can form friendships and influences how much money you can earn from activities where your presentation matters. You can raise it by wearing expensive clothing and acquiring traits that enhance your attractiveness.
All stats can be boosted by your own organization once you establish it.
<</message>>\
In adolesence <<set _adolesence = ["Bully", "Curious", "Leader"]>>''you've been a...'' <<listbox "$adolesence">>
<<optionsfrom _adolesence>>
<</listbox>>
''Description:'' <span id="adolesence-info">(nothing)</span><<script>>
$(document).one(":passagerender", function (event) {
$(event.content).find("#adolesence-info").empty().wiki("<<include 'Adolesence info " + State.variables.adolesence + "'>>");
$(event.content).find("#listbox-adolesence").on("change", function (event) {
$("#adolesence-info").fadeOut(500, function () {
$("#adolesence-info").empty().wiki("<<include 'Adolesence info " + State.variables.adolesence + "'>>").fadeIn(500);
});
});
});
<</script>>\
Very first criminal activity <<set _first_crime = ["Robbery", "Theft", "Romance fraud"]>>''is...'' <<listbox "$first_crime">>
<<optionsfrom _first_crime>>
<</listbox>>
''Description:'' <span id="crime-info">(nothing)</span><<script>>
$(document).one(":passagerender", function (event) {
$(event.content).find("#crime-info").empty().wiki("<<include 'Crime info " + State.variables.first_crime + "'>>");
$(event.content).find("#listbox-first-crime").on("change", function (event) {
$("#crime-info").fadeOut(500, function () {
$("#crime-info").empty().wiki("<<include 'Crime info " + State.variables.first_crime + "'>>").fadeIn(500);
});
});
});
<</script>>\
Reason you got here again <<set _last_crime = ["Burglary", "Grand Theft Auto", "Pimping", "Den", "Armed Robbery", "Underground Fight",]>>''is...'' <<listbox "$last_crime">>
<<optionsfrom _last_crime>>
<</listbox>>
''Description:'' <span id="last-crime-info">(nothing)</span><<script>>
$(document).one(":passagerender", function (event) {
$(event.content).find("#last-crime-info").empty().wiki("<<include 'Last Crime info " + State.variables.last_crime + "'>>");
$(event.content).find("#listbox-last-crime").on("change", function (event) {
$("#last-crime-info").fadeOut(500, function () {
$("#last-crime-info").empty().wiki("<<include 'Last Crime info " + State.variables.last_crime + "'>>").fadeIn(500);
});
});
});
<</script>>\
<<link "Everything is right." "CharGen2">>
<<if $adolesence == "Bully">>
<<set $combat_base += 1>>\
<<elseif $adolesence == "Curious">>
<<set $cun_base += 1>>\
<<elseif $adolesence == "Leader">>
<<set $charm_base += 1>>\
<</if>>\
<<if $first_crime == "Robbery">>
<<set $combat_base += 1>>\
<<elseif $first_crime == "Theft">>
<<set $cun_base += 1>>\
<<elseif $first_crime == "Romance fraud">>
<<set $charm_base += 1>>\
<</if>>\
<<if $last_crime == "Burglary">>
<<set $cun_base += 2>>\
<<pickup $p_inv "Lockpick" 5>>\
<<elseif $last_crime == "Grand Theft Auto">>
<<set $cun_base += 2>>\
<<set $car_1 = true>>\
<<set $car = 1>>\
<<elseif $last_crime == "Pimping">>
<<set $charm_base += 2>>\
<<moneynoreplace `1000`>>\
<<elseif $last_crime == "Den">>
<<set $charm_base += 1>>\
<<set $cun_base += 1>>\
<<pickup $p_inv "Drugs" 50>>\
<<elseif $last_crime == "Armed Robbery">>
<<set $combat_base += 2>>\
<<pickup $p_melee "Butterfly Knife" 1>>
<<set $weapon_equipped = "Butterfly Knife">>
<<elseif $last_crime == "Underground Fight">>
<<set $combat_base += 2>>\
<<set $melee_trait_progress = 125>>\
<<run $p_traits.push("melee_1")>>\
<</if>>\
<<apply_all_stats>>\
<</link>>\
<<include "Item Definitions">>
<<include "Weapons Definition">>
<<include "MC">>
<<set $game_state = 0>>
<<set $debug = 0>>
<<set $game_version = 15>> /* 0.1.5 */
<<include "Clothes">>
<<include "NPC Data">>
<<include "Naughty Data">>
<<include "Misc">>
<<include "Media Arrays">>
<<include "Sex Actions">>
<<include "Events Media">>
<<include "Events Desc Arrays">>
<<include "SI Setup">>
<<include "Loot Table">>
<<include "Bands Things">>
<<include "Shops NewDay">>
<<include "Newmeters">><span class="banner"><img src ="img/UI/sidebar/banner.webp"></span>v0.1.5(hotfix)<<if $game_state > 0 || $debug == 1>>
<<if tags().includes('rideable') || tags().includes('home')>>\
<<link "Inventory" "Inventory">>\
<</link>>\
<<link "Stats" "Character">>\
<</link>>\
<</if>>\
\
<<if tags().includes('rideable') && $car == false>>
<<link "Taxi home - 50$" "Home">>
<<money `-50`>>
<<addmins 30>>
<</link>>
<</if>>
<</if>>
\
<<if tags().includes('inventory')>>
<<link "Get back" $return>><</link>>\
<</if>>\
<<if !tags().includes('inventory')>>\
<<link "Credits" "Credits Page">><</link>>\
<</if>>\
<<if $debug == 1>>\
[[Debug]]
<</if>>\<<silently>>
<<set _equip = Object.entries($equip)>>\
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/UI/stats.webp");
inset: 0;
position: fixed;
filter:grayscale(80%);
background-size: cover;
}
</style>\
<span class="cun">$cun cunning points.</span>
<<if $cun >= 15>>\
Say anything. Sell everything. Go everywhere - no locks can hold you back. People like you? They strike with the charm of a smooth criminal.
<<elseif $cun >= 12>>\
Perhaps you're a future criminal mastermind, but it's too early to tell. Today, you're able to navigate through many predicaments and turn them to your advantage, but what tomorrow holds - only tomorrow will reveal.
<<elseif $cun >= 8>>\
You've mastered the art of cloak and dagger well - some might even call you a pro. But deep down, you know there's always more to learn, while the amateurs remain blissfully trapped in the Dunning-Kruger effect.
<<elseif $cun >= 5>>\
You've held a lockpick before and maybe even managed to deceive someone successfully. But your hands tremble in critical moments, and your eyes shift away during important conversations.
<<else>>\
Someone must've stepped on your toes in childhood, and just thinking about lying to someone makes you nervous and shaky. That won't do - becoming a criminal with such issues is nearly impossible.
<</if>>\
<span class="charm">$charm charm points.</span>
<<if $charm >= 15>>\
Wherever you go, heads turn, and hearts flutter. You’ve perfected the art of bending others to your will with just a smile. Some call it charm; others call it witchcraft.
<<elseif $charm >= 12>>\
You're no mere pretty face - there's a spark in your eyes and a sway in your step that makes people trust, adore, or fear you, depending on your intent.
<<elseif $charm >= 8>>\
Your looks and words often open doors, though not every attempt lands. You’re charming enough to avoid suspicion and sly enough to keep your motives under wraps.
<<elseif $charm >= 5>>\
You know how to dress the part and flash a decent smile, but your attempts at flattery can feel rehearsed. Practice might help, or it might not - depending on the audience.
<<else>>\
Your charm is... an acquired taste, perhaps. Conversations feel forced, and smiles don't always land. But hey, it could be worse, atleast you're not provoking anyone? Right?
<</if>>\
<span class="combat_text">$combat combat points.</span>
<<if $combat >= 15>>\
Your fists speak louder than words, and your enemies know it. There's no problem you can't solve with brute force, and even the bravest hesitate to cross your path.
<<elseif $combat >= 12>>\
You’ve earned your bruises and your reputation. You handle a fight with confidence and precision, though sometimes you still enjoy showing off for the thrill of it.
<<elseif $combat >= 8>>\
You know your way around a fight. While not invincible, you're tough enough to handle most situations. Just don’t let overconfidence land you in trouble.
<<elseif $combat >= 5>>\
You’ve thrown a punch or two, maybe even won a scrap here and there. But against a real fighter, you might want to think twice before jumping in.
<<else>>\
You're more bark than bite, and your posture in a fight leaves much to be desired. But hey, at least you can run pretty fast when things get rough.
<</if>>\
Your combat toughness: <span id="health"> $p_hp. </span>
<<if $weapon_equpped>>\
Weapon equipped: $weapon_equipped.
<</if>>\
\
<<if $downtown_landlord === true>>
You own a flat at Residential Complex in Downtown.
<<if $downtown_land_level === 1>>\
Its in a quite poor state. Maybe you should offer a renovation services through web.
<<elseif $downtown_land_level === 2>>\
Nice and cozy dwelling. But there's still a room for improvement.
<<else>>\
Modern habitation for modern people. Probably you won't meet anyone in Downtown who can fully afford this place.
<</if>>
<</if>>\
<<message "Wearing right now:">>
Your clothing set gives you $bonus_charm_style charm points from style and $bonus_charm_slut from sluttyness.
<div class="shop_list">\
<<for _i = 0; _i < _equip.length; _i = _i + 1>>\
<span style="text-align: center;">
<<set _k = _equip[_i][0]>>\
<<set _v = _equip[_i][1]>>\
_v.item
_v.pic
</span>
<</for>>\
</div>\
<</message>>\
<<message "Traits">>
<<include "Traits">>\
<</message>>
<<link "Close character menu" $return>><</link>><<set_home_desc>>
<<if $event_arming_on == true>>\
You need to arm your gang. It'll require one weapons shipment. Till then, your gang will suffer a morale penalty.
<<if $warehouse_inv.has("Weapons Shipment")>>
<<action_link>><<link "Provide a weapons to your gang." "Home">>\
<<drop $warehouse_inv "Weapons Shipment" 1>>\
<<set $event_arming_on = false>>\
<<set $band_universal_mod += 2>>\
<</link>><</action_link>>\
<</if>>\
<</if>>\
<<if $burglars_event == true>>\
<<linkappend "You have a message on your phone.">>
<em>Its Chi Eef. Your home has been targeted for repeated burglaries. Just giving you a heads-up.</em> - message ends. Maybe its worth to prepare an ambush. \
<</linkappend>>\
<</if>>\
\
<<if $forum_new == true>>
<<in_link>><<link "Use PC (something new)" "PC">><</link>><</in_link>>
<<else>>\
<<in_link>><<link "Use PC" "PC">><</link>><</in_link>>
<</if>>\
<<in_link>><<link "Whiteboard" "Whiteboard">><</link>><</in_link>>
<<in_link>><<link "Your contacts" "Contacts">><</link>><</in_link>>
<<in_link>><<link "Bedroom" "Bedroom">>
<</link>><</in_link>>
<<if $gameDate.getHours() >= 0 && $gameDate.getHours() <= 3>>\
<<action_link>>''<<link "Go to sleep" "NewDay">>
<<set $gameDate.setHours(8)>>\
<<set $gameDate.setMinutes(0)>>\
<</link>>''<</action_link>>
<<elseif $gameDate.getHours() >= 18>>\
<<action_link>>''<<link "Go to sleep" "NewDay">>
<<adddays 1>>\
<<set $gameDate.setHours(8)>>\
<<set $gameDate.setMinutes(0)>>\
<</link>>''<</action_link>>
<</if>>\
<<in_link>><<link "Access your stash." "Stash">>
<</link>><</in_link>>\
<<if $basement > 0>>
<<in_link>><<link "Go down to the basement" "Basement">>\
<<addmins 5>>\
<</link>><</in_link>>\
<</if>>
<<if $garage > 0>>\
<<in_link>><<link "Visit your garage" "Garage">>\
<</link>><</in_link>>
<<elseif $garage == 0 && $car_1 == true && $car == 1>>\
<<action_link>><<link "Leave your car somewhere around." "Home">>\
<<set $car = 0>>\
<</link>><</action_link>>
<<elseif $garage == 0 && $car_1 == true && $car == 0>>\
<<link "Take your car on the ride." "Home">>\
<<set $car = 1>>\
<</link>>
<</if>>
<<open_map>><<silently>>\
<<set _stam = $stam / ($energy + $energy_mod_boss + $energy_mod_car)>>\
<<set _combat_stamina = $combat_stamina / $combat_stamina_base>>
<<set _combat_health = $p_hp / $p_hp_max>>
<</silently>>\
<<if $game_state > 0 >>\
<div class="sidebar_rep"><<rep_caption>></div>\
<div class="sidebar_pizdec">\
<div class="money_sidebar_full">\
<div class="money_sidebar"><span class="sidebar_icon"><img src="img/UI/sidebar/money.png"/></span><span id="money">$money​$</span></div>\
\
<div class="money_sidebar"><span class="sidebar_icon"><img src="img/UI/sidebar/dirty_money.png"/></span><span id="dirty_money">$dirty_money​$</span></div>\
</div>\
\
<div id= "stam"><div class="meter"><div class="meter-value" @style="'width:' + (100 * $stam / $energy) + '%'"/></div><span class="sidebar_time_date"> <<date>></span><span class="sidebar_time"> <<time24hr>></span></div>
</div>\
\
<div class="sidebar_low">\
<<if $car > 0>>\
<span title="Fast Travel"><span class="sidebar_image_link_car"><<ft_pic_setup>></span></span>
<</if>>\
<<if $ft_locked == true && $car > 0>>\
<div class="sidebar_ft"><<include "Fast Travel">></div>\
<<else>>\
<div class="sidebar_ft"></div>\
<</if>>\
<span title="Loiter"><span class="sidebar_image_link"><<link '<img src= "img/UI/sidebar/loiter_icon.png">'>>
<<if _l_on == false || !_l_on>>\
<<replace ".sidebar_loiter">>\
<<include "Loiter">>\
<</replace>>\
<<set _l_on = true>>\
<<else>>\
<<replace ".sidebar_loiter">>\
<</replace>>\
<<set _l_on = false>>\
<</if>>\
<</link>>\
</span></span>\
</div>\
<div class="sidebar_loiter"></div>\
/* Combat Info */ \
<<if tags().includes('combat')>>\
You're wielding a $weapon_equipped.
<div class="sidebar_combat">\
<<showmeter "health_meter" _combat_health>>\
<<showmeter "stamina_meter" _combat_stamina>>\
</div>\
<<if $bleed_timer > 0>>\
''You're bleeding for 2 HP each turn! Turns left: $bleed_timer.''
<</if>>\
<<if $stun_timer > 0>>\
''You're stunned! Turns left: $stun_timer.''
<</if>>\
<<if $knuckles_buff == true>>\
You're feeling a blood rush! +3 combat till the end of all of this!
<</if>>\
<</if>>\
<span class="lvlup"></span>\
<<lvlup_notification>>\
<<else>>\
Welcome! Proceed to character creation.
<</if>>\/*
Date & Time Widget Setup
*/
<<set
window.GameDays to [
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
];
window.GameMonths to [
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
];
/*
Below we have to use the multi-parameter version of the Date
constructor, rather than the date string version, because the
date string version treats a missing timezone offset as UTC.
While there are ways to determine players' timezone offsets,
so they could be added to a date string, it's more convenient
simply to use the multi-parameter constructor.
The point of this is so that you can simply initialize the game
world clock to whatever date and time you wish without having to
worry about the players' timezone offsets, while still ensuring
that they all see the same game world dates and times.
*/
/* params: year , month(0-based) , day , hour(24H) , minute [, second ] */
$gameDate to new Date(2010, 5, 1, 8, 0); /* e.g. Jun 1, 2010 08:00 */
>>
/*
Date & Time Advancement Widget Definitions
*/
/* Adds the specified number of minutes. */
<<widget "addmins">>\
<<run $gameDate.setMinutes($gameDate.getMinutes() + $args[0])>>\
<</widget>>
/* Adds the specified number of hours. */
<<widget "addhours">>\
<<run $gameDate.setHours($gameDate.getHours() + $args[0])>>\
<</widget>>
/* Adds the specified number of days. */
<<widget "adddays">>\
<<run $gameDate.setHours($gameDate.getHours() + $args[0] * 24)>>\
<</widget>>
/*
Date & Time Printing Widget Definitions
*/
/* Prints the current date ("{weekday} {month} {day}, {year}"). */
<<widget "date">>\
<<print String.format("{0} {1} {2}",
GameDays[$gameDate.getDay()],
GameMonths[$gameDate.getMonth()],
$gameDate.getDate()
)>>\
<</widget>>
/* Prints the current time (12H). */
<<widget "time12hr">>\
<<if $gameDate.getHours() eq 0>>\
12\
<<elseif $gameDate.getHours() gt 12>>\
<<print $gameDate.getHours() - 12>>\
<<else>>\
<<print $gameDate.getHours()>>\
<</if>>:\
<<if $gameDate.getMinutes() lt 10>>0<</if>><<print $gameDate.getMinutes()>> \
<<if $gameDate.getHours() gte 12>>PM<<else>>AM<</if>>\
<</widget>>
/* Prints the current time (24H). */
<<widget "time24hr">>\
<<if $gameDate.getHours() lt 10>>0<</if>><<print $gameDate.getHours()>>:\
<<if $gameDate.getMinutes() lt 10>>0<</if>><<print $gameDate.getMinutes()>>\
<</widget>>
/* Prints the current date and time (12H). */
<<widget "datetime">><<date>> <<time12hr>> (<<time24hr>>)<</widget>>
/* To advance the time 5 minutes in a passage, type <<addmins 5>> somewhere into the passage.
To advance 7 hours, <<addhours 7>>
To advance 30 days, <<adddays 30>>*/
/* <<if $gameDate.getHours() >= 8 and $gameDate.getHours() <= 20>> <</if>>*/
/*<<button "Go to bed" "Home">>
<<set $gameDate.setHours(7)>>
<<set $gameDate.setMinutes(0)>>
<<set $days += 1>>
<</button>>*/
<<widget "brightness_check_districts">>
<<silently>>
<<if $gameDate.getHours() >= 15 && $gameDate.getHours() < 20>>
<<addclass "body" "evening_district">>
<<elseif $gameDate.getHours() >= 20 || $gameDate.getHours() <= 3>>
<<addclass "body" "night_district">>
<</if>>
<</silently>>\
<</widget>>\
<<widget "brightness_check_district">>
<<silently>>
<<if $gameDate.getHours() >= 15 && $gameDate.getHours() < 20>>
<<addclass "body" "evening_district">>
<<elseif $gameDate.getHours() >= 20 || $gameDate.getHours() <= 3>>
<<addclass "body" "night_district">>
<</if>>
<</silently>>\
<</widget>>\
<<widget "brightness_check">>
<<silently>>
<<if $gameDate.getHours() >= 15 && $gameDate.getHours() < 20>>
<<addclass "body" "evening">>
<<elseif $gameDate.getHours() >= 20 || $gameDate.getHours() <= 3>>
<<addclass "body" "night">>
<</if>>
<</silently>>\
<</widget>>\
<<widget "brightness_check_loc">>
<<silently>>
<<if $gameDate.getHours() >= 15 && $gameDate.getHours() < 20>>
<<addclass "body" "evening_loc">>
<<elseif $gameDate.getHours() >= 20 || $gameDate.getHours() <= 3>>
<<addclass "body" "night_loc">>
<</if>>
<</silently>>\
<</widget>>\<span class="sidebar_image_link"><<link '<img src= "img/UI/sidebar/fast_travel_icon.png">'>><</link>></span>
<<link "+100 money" "Debug">>
<<money 100>>
<</link>>
<<link "-100 money" "Debug">>
<<money -100>>
<</link>>
<<link "-stam" "Debug">>
<<set $stam -= 1>>
<</link>>
<<link "+stam" "Debug">>
<<set $stam += 1>>
<</link>>
<<link "add 1 hour" "Debug">>
<<addhours 1>>
<</link>>
\
<<link "add 30 minutes" "Debug">>
<<addmins 30>>
<</link>>
\
<<link "add 1 day" "Debug">>
<<adddays 1>>
<</link>>
<<link "+heist progress" "Debug">>
<<set $heist_progress += 200>>
<</link>>
"<img src='1.png' class='imazh'/>"
<<link "Return" $return>><</link>>
<div id="map"><img src='img/city/city_map_scaled.png' usemap="#map">
<map name="map">\
<area shape="rect" coords="232,504,333,599" data-passage="Downtown Road"/>\
<area shape="rect" coords="462,308,565,393" data-passage="Harbor Road"/>\
<area shape="rect" coords="740,381,844,464" data-passage="Suburbs Road"/>\
<area shape="rect" coords="815,73,918,158" data-passage="Outskirts Road"/>\
<area shape="rect" coords="461,451,558,539" data-passage="City Center Road"/>\
</map>\
\
<div id="downtown_text">\
''Downtown''
<<if $downtown_state == false>>\
''St. Gangs'' \
<<else>>\
''Yours''\
<</if>>\
</div>\
\
<div id="harbor_text">\
''Harbor''
<<if $harbor_state == false>>\
''Cartel'' \
<<else>>\
''Yours''\
<</if>>\
</div>\
\
<div id="suburbs_text">\
''Suburbs''
<<if $suburbs_state == false>>\
''Mafia'' \
<<else>>\
''Yours''\
<</if>>\
</div>\
\
<div id="outskirts_text">\
<<if $reputation >= 1000>>\
''Outskirts''
<<if $outskirts_state == false>>\
''Bikers'' \
<<else>>\
''Yours''\
<</if>>\
<<else>>\
''Road
Blocked''
<</if>>\
</div>\
\
<div id="city_center_text">\
''City
Center''\
</div>\
\
</div>
\
<<silently>>
<<set _attack_roll = random(0, 10)>>\
<<if _attack_roll > 9 && $downtown_bribe == false && $downtown_state == false>>
<<goto "Downtown Attack">>
<</if>>
<</silently>>\
<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/marketplace.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
A chaotic sprawl of stalls and shouting, where the smell of fresh produce mixes with rusted metal and desperation. Bazaar type marketplace, crates of vegetables sit beside secondhand trinkets, and someone’s always haggling over something.
<<if $downtown_state == true>>\
<span class="male_text">- "Yo boss, everything is under control!"</span>
<</if>>\
<<if $gameDate.getHours() >= 8 and $gameDate.getHours() <= 20>>\
<<if $stam > 0>>\
<<cun_link>><<link "Try to steal something" "Market Stealing">>\
<<set $reputation += 25>>\
<<set $stam -= 1>>\
<<addmins 30>>\
<</link>><</cun_link>>\
<<else>>\
<span class="not_available">You are too tired to try anything</span>\
<</if>>
\
<<if $p_inv.has("Junk")>>\
<<cun_link>><<link "You may try to sell all your junk">>\
<<set _junk_amount = $p_inv.count("Junk")>>\
<<set $junk_price = (_junk_amount * $cun) + random(0, 15)>>\
<<money `$junk_price`>>\
<<addhours 1>>\
<<drop $p_inv "Junk" _junk_amount>>\
<<run Engine.show()>>\
<<notify 3s>>You've sold your junk for $junk_price​$!<</notify>>
<</link>><</cun_link>>\
<</if>>\
<span id="result"></span>
<<else>>\
<span class="not_available"> Its too late, there's no one on the marketplace.</span>
<</if>>\
<<if $money >= 80>>\
<<trade_link>><<link "Paper, 1pcs - 80$">><<money `- 80`>><<pickup $p_craft "Paper" 1>><<run Engine.show()>><<notify 1s>>Bought.<</notify>><</link>><</trade_link>>
<<else>>\
<span class="not_available">Paper, 1pcs - 80$</span>\
<</if>>\
\
<<if $money >= 150>>\
<<trade_link>><<link "Various organic materials, 1pcs - 150$">><<money `- 150`>><<pickup $p_craft "Organic Materials" 1>><<run Engine.show()>><<notify 1s>>Bought.<</notify>><</link>><</trade_link>>
<<else>>\
<span class="not_available">Various organic materials, 1pcs - 150$</span>\
<</if>>\
\
<<if $gangs_racketeer == true && $stam > 0>>\
<<combat_link>><<link "Attack the racketeer." "CombatRacketeer">><<set $gangs_racketeer = false>><<stam `-1`>><<addhours 1>><</link>><</combat_link>>
<<elseif $gangs_racketeer == true && $stam == 0>>\
<span id="not_available"> You don't have enough energy to fight the racketeer. </span>
<</if>>\
<<out_link>><<link "Get back to the main street of Downtown" "Downtown">>\
<<addmins 15>>\
<</link>><</out_link>>\<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/marketplace.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $do_it_anyway == true>>\
<span class="male_text">- "Oh, okay."</span> The atmosphere shifted abruptly.
<</if>>\
Okay, it's too late to run. You are grabbed by the hand, now, redhanded, it's time to fase a consequences...
<<if $reputation >= 3000 && $do_it_anyway == false>>\
<span class="male_text">- "Oh, it's you... Sorry, I didn't mean to bother you. I'm not going to stand in your way. But please refrain from trying to rob me..."</span>
<<link "That's right." "Marketplace">>
<</link>> - your reputation speaks for itself!
<<link "Tell him to go ahead and do what he was planning to do with you... You're not gonna hold a grudge.">>\
<<set $do_it_anyway = true>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
<<set _roll = random(0, 20)>>\
<<if _roll >= 10>>\
You've been grabbed by a man with a smirk on a face.
He looked at you with a lust in his eyes. Obvious drugs intoxication in his behavior - probably, something aphrodisiac-like, tho you can't say for sure. It's easy to tell that this dude isn't some goon and his grip is weak. But he anyway are trying to lead you into secluded area.\
<br>\
He's gonna try to attract the attention of passers-by and call the police if you're not gonna play along his rules.
<br>\
<<link "No way." "Custody">>\
<<addhours 1>>\
<<set $do_it_anyway = false>>\
<</link>> It's better to surrender to police than that. \
<br>\
<<charm_link>><<link 'Move to secluded area with him.' "Marketplace Quickie">>
<<addhours 1>>\
<<stam `-1`>>\
<<sex_rep_check>>\
<<depravity `1`>>\
<<set $do_it_anyway = false>>\
<</link>><</charm_link>> Very unlikely thats your life is in danger, he's just horny.\
<<if $p_inv.has("Handheld Taser")>>\
<br>\
<<link "Use a taser and run away." "Marketplace">>\
<<drop $p_inv "Handheld Taser" 1>>\
<<addmins 30>>\
<<set $do_it_anyway = false>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> If only you had a taser... </span>\
<</if>>\
<<if $p_traits.includes("fitness_1")>>\
<br>\
<<link "Push him away and run." "Marketplace">>
<<addmins 30>>\
<<stam `-1`>>\
<<set $do_it_anyway = false>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> Sadly, you're not strong enough to just push him away. </span>\
<</if>>\
<<else>>\
You've been grabbed by a man with angry grimace. His grip isn't tight enough, obviously it's a new experience for him.
But, nonetheless, he shouted at you and attracted unwanted attention of whole area. There's still a way out of this if you are strong enough tho.
<br>\
<<link "Give up and wait for police to arrive." "Custody">>
<<set $do_it_anyway = false>>\
<<addhours 1>>\
<</link>>\
<<if $p_traits.includes("fitness_1")>>\
<br>\
<<link "Push him away and run." "Marketplace">>
<<addmins 30>>\
<<stam `-1`>>\
<<set $do_it_anyway = false>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> Sadly, you're not strong enough to just push him away. </span>\
<</if>>\
<</if>>\
<</if>>\<<silently>>
<<set _attack_roll = random(0, 10)>>\
<<if _attack_roll > 9 && $downtown_bribe == false && $downtown_state == false>>
<<goto "Downtown Attack">>
<</if>>
<</silently>>\
You're in Old Downtown of $city_name. Despite the name, this part of the city is far from a business hub, previously it was a city center, now its almost a ghetto. However, it hosts the majority of businesses, along with sprawling residential areas and housing projects, making it easier to maintain control here than in quieter districts. <<if $downtown_state == false>>The people from these areas currently hold control over this district. <<else>> You're in control of this district. <</if>>
<<if $strange_note_1 === false>>\
<div id="replace">You see a peculiar piece of paper laying on the bench. <<link "You really want to check it out.">><<replace #replace>>You picked up the weird note and placed it in your inventory. <</replace>><<set $strange_note_1 = true>><<pickup $p_inv "Strange Note#1" 1>><</link>></div>\
<</if>>\
<<in_link>><<link "Go to the ''marketplace''." "Marketplace">>\
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/market.png"/></span><</in_link>>\
<<in_link>><<link 'Visit the <strong>bar</strong> "The Underworld Lounge".' "Downtown Bar">>\
<<addmins 5>>\
<</link>><span class="icon_link"><img src="img/UI/icons/bar.png"/></span><</in_link>>\
<<in_link>><<link 'Visit the "Instant Worth Pawn" <strong>pawnshop</strong>.' "Pawnshop">>\
<<addmins 5>>\
<</link>><span class="icon_link"><img src="img/UI/icons/jewelry.png"/></span><</in_link>>\
<<in_link>><<link 'Visit the "Wild Rabbit" <strong>Sexshop</strong>.' "Sexshop">>
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/toy.png"/></span><</in_link>>\
<<in_link>><<link 'Stride to the <strong>Nightclub</strong> "The Getaway Groove"' "Nightclub">>
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/discoball.png"/></span><</in_link>>\
<<if $gangs_base === true && $gangs_war == false>>\
<<in_link>><<link "Visit a <strong>Street Gangs</strong> hometurf" "Street Gangs">>
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/skull.png"/></span><</in_link>>\
<<elseif $gangs_base == false>>\
<span class="not_available">You don't know a location of Street Gangs hub. You should ask people around if you wish to find it.</span>\
<<elseif $gangs_war == true>>\
<span class="not_available">Visiting a Street Gangs hub during a war might not be the wisest choice.</span>\
<</if>>
<<if $p_inv.has("Lockpick") && $stam >= 1>>\
You may <<cun_link>><<link "use your lockpick" "Complex Burglary">><<stam `-1`>><<set $reputation += 50>><<drop $p_inv "Lockpick" 1>><<addmins 20>><</link>><</cun_link>> to try yourself in burglary craft in local residential complex.\
<<elseif $stam < 1>>\
<span class="not_available">You are either too tired to try your luck in burglary.</span>\
<<elseif !$p_inv.has("Lockpick")>>\
<span class="not_available">You could try your hand at burglary if you had any lockpicks on you. </span>\
<</if>>
<<if $gameDate.getHours() >= 22 || $gameDate.getHours() <= 4>>\
<<if $gig_car_steal_active == true && $p_inv.has("Car Opening Tools") && $stam >= 1>>\
<<cun_link>><<link "Try to find your target-car.">>\
<<if $gig_car_steal_loc == "downtown">>\
<<addhours 1>>\
<<stam `-1`>>\
<<goto "Motor Vehicle Theft Gig">>\
<<else>>\
<<addhours 1>>\
<<run Engine.show()>>\
<<notify 4s>>Seems like it's a wrong district, you just lost some time and that's it...<</notify>>\
<</if>>\
<</link>><</cun_link>>
<<elseif $gig_car_steal_active == true && !$p_inv.has("Car Opening Tools") && $stam == 0>>\
<span class="not_available">You are either too tired or don't have a tools for a car theft.</span>
<</if>>\
<<elseif $gig_car_steal_active == true && $gameDate.getHours() < 22>>\
<span class="not_available"> It's too early for grand theft auto.</span>
<</if>>\
<<out_link>><<link "Get back home" "Home">>
<<addmins 30>>
<</link>><</out_link>>
<<open_map>><style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/bar.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
The Underworld Lounge.
On the wall hangs a slogan: "For when you need a break from your 'day job' - whatever that may be."
<<if $downtown_state == true>>\
<span class="male_text">- "Ma'am, I pay my share on time. Care for a drink?"</span>
<br>\
<</if>>\
<<silently>>
<<set _attack_roll = random(0, 10)>>\
<<if _attack_roll > 9 && $downtown_bribe == false && $downtown_state == false>>
<<goto "Downtown Attack">>
<</if>>
<</silently>>\
<span id="bar"></span>\
<<action_link>><span class="action_link"><<link "Socialize alittle while trying to meet someone." "Downtown Bar Meeting">>
<<addmins 30>><<observer_progress>><</link>></span><</action_link>>\
<<if $p_inv.count("Moonshine") >= 5 && $bar_moonshine_sold == false>>\
<<cun_link>><<linkreplace "Try to sell your moonshine to the barmen.">>\
<<roll>>\
<<set $bar_moonshine_sold = true>>\
<<if _random > 1>>\
<<set _amount = random(2, 8)>>\
<<set _cun_bonus = $cun * 2>>\
<<seller_progress>>\
<<set _random_price = (random(40, 70) + _cun_bonus) * _amount>>\
<<set _price = _amount * _random_price>>\
Barmen offers you a _random_price​$ for _amount bottles of moonshine.\
<br>\
<<link "Deal." "Downtown Bar">>\
<<money `_random_price`>>\
<<set $reputation += 30>>\
<<drop $p_inv "Moonshine" _amount>>\
<<addmins 20>>\
<</link>>\
<<elseif _random <= 2>>\
Barmen isn't interested in your wares. He doesnt want risk a job by selling anything behind the counter... today.\
<</if>>\
<</linkreplace>><</cun_link>>\
<<elseif $p_inv.count("Moonshine") < 5>>\
<span class="not_available"> Local barmen serves special drinks to a regular customers, you don't know for sure, but that should be obvious for anyone who visits places like this. You could try selling a moonshine to the barmen if you had atleast 5pcs on you.</span>\
<<elseif $bar_moonshine_sold == true>>\
<span class="not_available"> That's enough for today, try again later.</span>\
<</if>>
<<out_link>><<link "Get back to the main street of Downtown" "Downtown">>\
<<addmins 5>>\
<</link>><</out_link>>\<style>
body::before {
content: '';
background-image: url("img/UI/inventory.webp");
inset: 0;
position: fixed;
filter:grayscale(40%);
background-size: cover;
}
</style>\
<<inv $p_inv use drop inspect stack all>>
Crafting materials:
<<inv $p_craft use drop inspect stack all>>
<<if $p_warehouse > 0>>\
Warehouse:\
<<inv $warehouse_inv use drop inspect all>>
<</if>>\
Range weapons:
<<inv $p_range use drop inspect all>>
Melee weapons:
<<inv $p_melee use drop inspect all>>
You can change your weapon only outside of combat. You're not carrying everything with you, obviously.
<<listbox "$weapon_equipped" autoselect>>
<<option "Nothing">>
<<optionsfrom $p_melee.list>>
<</listbox>>
<<if $crowns > 0>>\
<br>\
You also have a $crowns casino crowns in your pockets.
<</if>>\
<<if $p_inv.count("Wallet") > 2>>\
<<set $amount_wallets = $p_inv.count("Wallet")>>\
<<set _gained_money = 0>>\
<<link "Open all wallets.">>
<<for _i = 0; _i < $amount_wallets; _i++>>\
<<set _random_money = random(5, 30) * $cun>>\
<<money `_random_money`>>\
<<set _gained_money += _random_money>>\
<</for>>
<<notify 3s>>You've got _gained_money bucks!<</notify>>
<<drop $p_inv "Wallet" $amount_wallets>>\
<<run Engine.show()>>\
<</link>>
<</if>>\
<<link "Close inventory" $return>><</link>>Your typical local residential area: rows of tidy houses with trimmed lawns, a few small shops, and minor businesses - classic suburban vibes. It’s eerily quiet, though, and the reason for that silence is <<if $suburbs_state == false>> someone who holds control over this district.<<else>> you. <</if>>
<<if $mafia_war == false && $suburbs_state == false>>\
<<in_link>><<link 'Visit "The Wheel & Deal <strong>Auto Workshop</strong>"' "Auto Center">>\
<<addmins 10>>\
<</link>><span class="icon_link"><img src="img/UI/icons/wrench.png"/></span><</in_link>>\
<<elseif $mafia_war == true>>\
<span class="not_available">The auto workshop belongs to mafia. Not the best time to look for car mechanic services.</span>\
<<elseif $suburbs_state == true>>\
<<biz_link>><<link 'Visit "The Wheel & Deal <strong>Auto Workshop</strong>"' "Auto Center">>\
<<addmins 10>>\
<</link>><span class="icon_link"><img src="img/UI/icons/wrench.png"/></span><</biz_link>>\
<</if>>\
<<in_link>><<link 'Visit the "The Muscle & Mayhem <strong>Gym</strong>"' "Gym">>\
<<addmins 10>>\
<</link>><span class="icon_link"><img src="img/UI/icons/gym.png"/></span><</in_link>>\
<<in_link>><<link 'Visit <strong>Striptease Club</strong> "The Eclipse"' "Striptease Club">>
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/striptease.png"/></span><</in_link>>\
<<if $mafia_base === true && $mafia_war == false>>\
<<in_link>><<link "Visit a <strong>Mafia headquarters</strong>" "Mafia Headquarters">>\
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/skull.png"/></span><</in_link>>\
<<elseif $mafia_base == false>>\
<span class="not_available">You don't know a location of Mafia's headquarters. You should ask people around if you wish to find it.</span>\
<<elseif $mafia_war == true>>\
<span class="not_available">You're not going to visit a lion's nest during the hunt. Right? Right. Forget about mafia's HQ for a time being.</span>\
<</if>>\
<<if $p_inv.has("Lockpick") && $stam >= 1>>\
You may <<cun_link>><<link "use your lockpick" "Suburbs Burglary">><<stam `-1`>><<set $reputation += 50>>\<<drop $p_inv "Lockpick" 1>><<addmins 20>><</link>><</cun_link>> to try yourself in burglary craft.
<<else>><span class="not_available">You are either too tired or don't have a lockpicks to try your luck in burglary.</span>
<</if>>\
\
<<if $gameDate.getHours() >= 22 || $gameDate.getHours() <= 4>>\
<<if $p_inv.has("Car Opening Tools") && $stam >= 1>>\
You may <<cun_link>><<link "try to steal a car" "Motor Vehicle Theft">><<stam `-1`>><<addhours 1>><<set $target_car = $suburbs_cars.array.random()>><</link>><</cun_link>> in this neighbourhood.
<<else>><span class="not_available">You are either too tired or don't have a tools for a car theft.</span>
<</if>>\
<<if $gig_car_steal_active == true>>\
<<cun_link>><<link "Try to find your target-car.">>\
<<if $gig_car_steal_loc == "suburbs">>\
<<addhours 1>>\
<<stam `-1`>>\
<<goto "Motor Vehicle Theft Gig">>\
<<else>>\
<<addhours 1>>\
<<run Engine.show()>>\
<<notify 4s>>Seems like it's a wrong district, you just lost some time and that's it...<</notify>>\
<</if>>\
<</link>><</cun_link>>
<</if>>\
<<else>>\
<span class="not_available">Wait for the night if you wanna try a car theft. Don't forget your tools.</span>
<</if>>\
\
<<if $hackers_met > 0>>\
<<in_link>><<link "Visit a <strong>hackers hideout</strong>." "Hackers Den">>\
<<addmins 10>>\
<</link>><span class="icon_link"><img src="img/UI/icons/skull.png"/></span><</in_link>>
<</if>>\
\
<<if $mafia_wreck == true && $car > 0>>\
<<link "Ride on and provoke Mafia." "Car Chase">>\
<<set $mafia_wreck = false>>\
<<set $chase_timer = 30 + ($chase_car_bonus + $chase_perk_bonus)>>
<<set $chase_success = 12>>
<<set $chase_hp = 8>>
<<set $chase_type = "car_wrecking">>
<</link>>
<<elseif $mafia_wreck == true && $car == 0>>\
<span class="not_available">You know the location of Mafia's gathering place but you're on foot. Get a car first.</span>
<</if>>\
<<out_link>><<link "Get back home" "Home">>
<<addmins 30>>
<</link>><</out_link>>
<<open_map>>
<<silently>>\
<<if $car > 0 && $suburbs_bribe == false && $suburbs_state == false>>\
<<set _roll = random(0, 20)>>\
<<if _roll > 14>>\
<<goto "Auto Mafia">>\
<</if>>\
<</if>>\
<</silently>>\The outskirts of $city_name are dotted with trailers and farming plot. Trucks loaded with goods frequently race down the roads, adding a constant hum of activity to the otherwise quiet surroundings. Most likely, all these trucks are paying their dues <<if $outsirts_state == false>> to the bikers. <<else>> to you. <</if>>\
<<if $bikers_war == false>>\
<br>\
<<in_link>><<link 'Visit "The Fringe" <strong>club</strong>.' "Bikers Club">>\
<<addmins 5>>\
<</link>><span class="icon_link"><img src="img/UI/icons/bar.png"/></span><span class="icon_link"><img src="img/UI/icons/skull.png"/></span><</in_link>>
<<else>>\
<span class="not_available"> No one's gonna pour you a drink in a biker's bar tonight. </span>
<</if>>\
\
<<if $bikers_met > 0 && $bikers_war == false>>\
<<in_link>><<link "Visit a local <strong>Landing Strip</strong>." "Outskirts Landing Strip">>\
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/paper-plane.png"/></span><</in_link>>
<<elseif $bikers_war == true>>\
<span class="not_available">You need to finish your business with bikers before visiting their landing strip.</span>
<</if>>\
\
<<if $p_lab == false>>\
<<if $money >= 70000>>\
<span class="action_link"><<link "Buy an abandoned workshop for 70000$" "Outskirts">>\
<<set $p_lab = true>>\
<<set $reputation += 200>>\
<<money `-70000`>>\
<<addmins 30>>\
<</link>></span> and setup a chemistry lab. Tax will be a 50$ a day. Beware that you won't be able to get rid of it once you buy it. Nobody needs this shithole.
<<else>>\
<span class="not_available"> Buy an abandoned workshop for 70000$ and setup a chemistry lab. </span>
<</if>>\
<</if>>\
\
<<if $p_lab == true>>\
<<biz_link>><<link "Visit <strong>your lab</strong>." "Player Lab">>\
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/flask.png"/></span><</biz_link>>
<</if>>\
\
<<if $moonshine_trailer == true>>\
<<biz_link>><<link "<strong>Moonshine Trailer</strong>" "Moonshine Trailer">><<addmins 30>><</link>><</biz_link>>
<</if>>\
\
<<if $gameDate.getHours() >= 21 || $gameDate.getHours() <= 3>>\
<<if $p_inv.has("Car Opening Tools") && $stam >= 1>>\
You may <<cun_link>><<link "try to steal a car" "Motor Vehicle Theft">><<stam `-1`>><<addhours 1>><<set $target_car = $outskirts_cars.array.random()>><</link>><</cun_link>> from local wanderers.
<<else>>\
<span class="not_available">You are either too tired or don't have a tools for a car theft.</span>
<</if>>\
<<else>>\
<span class="not_available">Wait for the night if you wanna try a car theft. Don't forget your tools.</span>
<</if>>\
\
<<if $gameDate.getHours() >= 20 && $race_active == true || $gameDate.getHours() <= 3 && $race_active == true>>\
<<linkappend "Outskirts Racing">>\
Not far from the main road, an unusual crowd for this time of day is gathering. Cars pull up to an improvised starting line, and spectators gather around. You spot the organizer surrounded by drivers handing over cash. The entry fee for the race is 1000$, with the winner taking 50% of the bets plus a share from the other participants. Another rule is that the previous winner cannot join the race for the next three days. Betting might not be your thing, but joining in could be fun. Track goes through the city, so expect a lot of unexpected problems during the race.
<<if $car > 0 && $race_cd == 0 && $money >= 1000>>\
<<set _timer = random(45, 65)>>\
<<action_link>><<link "Join the race - 1000$." "Car Chase">>\
<<addhours 2>>\
<<set $race_active = false>>\
<<money `-1000`>>\
<<set $chase_timer = _timer + ($chase_perk_bonus + $chase_car_bonus)>>
<<set $chase_success = 18>>
<<set $chase_hp = 10>>
<<set $chase_type = "race">>
<</link>><</action_link>>
<<elseif $car == 0>>\
<span class="not_available"> You don't have a car with you. </span>\
<<elseif $race_cd > 0>>\
<span class="not_available"> It's still $race_cd day period till you can join again. </span>\
<<elseif $money < 1000>>\
<span class="not_available"> Join race - 1000$.</span>\
<</if>>\
<</linkappend>>
<<elseif $race_active == false>>\
<span class="not_available"> The race is over. </span>\
<<else>>\
<span class="not_available">A racetrack winds around the entire outskirts, and nearby posters are advertising nightly races starting at 8 PM.</span>
<</if>>\
\
<<if $outskirts_trade == false && $gameDate.getHours() < 19 && $gameDate.getHours() >= 8>>\
<<set $outskirts_amount = random(1, 4)>>\
<<set $outskirts_price = random(100, 182) * $outskirts_amount>>\
Local farmers set up a market nearby. You could buy some agricultural produce from them at a bargain price.
<<linkreplace "Check their offers.">>\
They sell only in bulk. Offer is $outskirts_amount sacks of various produce for $outskirts_price​$.
<<if $money >= $outskirts_price>>\
<<trade_link>><<link "Accept." "Outskirts">>\
<<money `-$outskirts_price`>>\
<<pickup $p_craft "Agricultural Products" $outskirts_amount>>\
<<set $outskirts_trade = true>>\
<</link>><</trade_link>>
<<else>>\
<span class="not_available"> You don't have enough money.</span>\
<</if>>\
<</linkreplace>>
<<elseif $outskirts_trade == true>>\
<span class="not_available"> You’ve already traded today.</span>
<</if>>\
\
<<out_link>><<link "Get back home" "Home">>
<<addmins 30>>
<</link>><</out_link>>
<<open_map>>The harbor - a sluggish, unhurried place where fortunes move swiftly. The district stretches along the coastline and there are no seagulls in sight, not even a feather. The majority of the area is occupied by warehouses.
<<in_link>><<link "Approach a <strong>warehouse district</strong>." "Warehouses">>\
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/warehouse.png"/></span><</in_link>>
\
<<if $cartel_base === true>>\
<<in_link>><<link "Visit a <strong>Cartel's location</strong>" "Cartel Warehouses">>\
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/skull.png"/></span><</in_link>>\
<<else>>\
<span class="not_available">You don't know a location of Cartel. It might be harder to find them than just asking around.</span>\
<</if>>
\
<<in_link>><<link "Wonder into <strong>dark alleys</strong>." "Dark Alleys">>\
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/darkalley.png"/></span><</in_link>>
\
<<if $harbor_state == false>>\
<<in_link>><<link "Visit a <strong>brothel</strong>." "Brothel">>\
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/brothel.png"/></span><</in_link>>
<<else>>\
<<biz_link>><<link "Visit a <strong>brothel</strong>." "Brothel">>\
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/brothel.png"/></span><</biz_link>>
<</if>>\
\
<<if $p_warehouse > 0>>\
<<in_link>><<link "Visit <strong>your warehouse</strong>" "Player Warehouse">>\
<<addmins 15>>\
<</link>><</in_link>>
<</if>>\
<<if $gameDate.getHours() >= 22 || $gameDate.getHours() <= 4>>\
<<if $gig_car_steal_active == true && $p_inv.has("Car Opening Tools") && $stam >= 1>>\
<<cun_link>><<link "Try to find your target-car.">>\
<<if $gig_car_steal_loc == "harbor">>\
<<addhours 1>>\
<<stam `-1`>>\
<<goto "Motor Vehicle Theft Gig">>\
<<else>>\
<<addhours 1>>\
<<run Engine.show()>>\
<<notify 4s>>Seems like it's a wrong district, you just lost some time and that's it...<</notify>>\
<</if>>\
<</link>><</cun_link>>
<<elseif $gig_car_steal_active == true && !$p_inv.has("Car Opening Tools") && $stam == 0>>\
<span class="not_available">You are either too tired or don't have a tools for a car theft.</span>
<</if>>\
<<elseif $gig_car_steal_active == true && $gameDate.getHours() < 22>>\
<span class="not_available"> It's too early for grand theft auto.</span>
<</if>>\
<<out_link>><<link "Get back home" "Home">>
<<addmins 30>>
<</link>><</out_link>>
<<open_map>><<set_bedroom_bg>>\
<<if $gameDate.getHours() >= 8 and $gameDate.getHours() <= 16>>\
<<button "Go to sleep ''early''" "NewDay">>\
<<adddays 1>>
<<set $gameDate.setHours(8)>>
<<set $gameDate.setMinutes(0)>>
<</button>>\
<<elseif $gameDate.getHours() >= 0 and $gameDate.getHours() <= 8>> \
<<button "Nap till morning" "NewDay">>
<<set $gameDate.setHours(8)>>
<<set $gameDate.setMinutes(0)>>
<</button>>\
<<else>>\
<<button "Go to sleep" "NewDay">>\
<<adddays 1>>
<<set $gameDate.setHours(8)>>
<<set $gameDate.setMinutes(0)>>
<</button>>\
<</if>>\
<<if $burglars_event == true>>
<<button "End the day and prepare an ambush on burglars." "Burglars Event">>
<<set $burglars_event = false>>\
<<if $gameDate.getHours() >= 8 and $gameDate.getHours() <= 16>>\
<<adddays 1>>
<<set $gameDate.setHours(1)>>
<<set $gameDate.setMinutes(0)>>
<<elseif $gameDate.getHours() >= 0 and $gameDate.getHours() <= 8>>
<<set $gameDate.setHours(8)>>
<<set $gameDate.setMinutes(0)>>
<<else>>
<<adddays 1>>
<<set $gameDate.setHours(8)>>
<<set $gameDate.setMinutes(0)>>
<</if>>\
<</button>>\
<br>\
<</if>>
[[Check your stash->Stash]]
[[Open wardrobe->Wardrobe]]
<br>\
<<out_link>><<link "Go to hallway" "Home">>
<</link>><</out_link>>*/clothing setup
<<set $p_wardrobe = []>>
slots: head, top, undertop, bottom, underbottom, misc, multislot, feet
*/
/*T2 */
<<set $mall_head_t2 = {
pompousNecklace: {item: "Pompous Necklace", slot: "head", pic:"<img src=img/clothes/head/T2/pompous_necklace.webp class='icon'/>", value: 4000, stylishness: 2, sluttyness: 0},
shakerNecklace: {item: "Shaker Necklace", slot: "head", pic:"<img src=img/clothes/head/T2/shaker_necklace.webp class='icon'/>", value: 4000, stylishness: 2, sluttyness: 0},
}>>
<<set $mall_top_t2 = {
elegantBlouse: {item: "Elegant Blouse", slot: "top", pic: "<img src=img/clothes/top/T2/elegant_blouse.webp class='icon'/>", value: 1425, stylishness: 4, sluttyness: 1},
satinBlouse: {item: "Satin Blouse", slot: "top", pic: "<img src=img/clothes/top/T2/satin_blouse.webp class='icon'/>", value: 1500, stylishness: 4, sluttyness: 1},
luxuryCropTop: {item: "Luxury Crop Top", slot: "top", pic: "<img src=img/clothes/top/T2/luxury_crop_top.webp class='icon'/>", value: 1350, stylishness: 3, sluttyness: 2},
pompousBlouse: {item: "Pompous Blouse", slot: "top", pic: "<img src=img/clothes/top/T2/pompous_blouse.webp class='icon'/>", value: 1350, stylishness: 5, sluttyness: 0},
pompousBlouse2: {item: "Pompous Blouse", slot: "top", pic: "<img src=img/clothes/top/T2/pompous_blouse_2.webp class='icon'/>", value: 1410, stylishness: 5, sluttyness: 0},
velvetShirt: {item: "Velvet Shirt", slot: "top", pic: "<img src=img/clothes/top/T2/velvet_shirt.webp class='icon'/>", value: 1600, stylishness: 5, sluttyness: 0},
suitTop: {item: "White Suit Top", slot: "top", pic: "<img src=img/clothes/top/T2/suit_top.webp class='icon'/>", value: 1800, stylishness: 5, sluttyness: 0},
}>>
<<set $mall_bottom_t2 = {
midiSkirt: {item: "Midi Skirt", slot: "bottom", pic: "<img src=img/clothes/bottom/T2/midi_skirt.webp class='icon'/>", value: 1200, stylishness: 3, sluttyness: 2},
pencilSkirt: {item: "Pencil Skirt", slot: "bottom", pic: "<img src=img/clothes/bottom/T2/pencil_skirt.webp class='icon'/>", value: 1300, stylishness: 3, sluttyness: 2},
leatherPants: {item: "Leather Pants", slot: "bottom", pic: "<img src=img/clothes/bottom/T2/leather_pants.webp class='icon'/>", value: 1550, stylishness: 2, sluttyness: 3},
suitPants: {item: "White Suit Pants", slot: "bottom", pic: "<img src=img/clothes/bottom/T2/suit_pants.webp class='icon'/>", value: 1750, stylishness: 5, sluttyness: 0},
cottonSkirt: {item: "Cotton Skirt", slot: "bottom", pic: "<img src=img/clothes/bottom/T2/cotton_skirt.webp class='icon'/>", value: 1850, stylishness: 5, sluttyness: 0},
leatherPants2: {item: "Leather Pants", slot: "bottom", pic: "<img src=img/clothes/bottom/T2/leather_pants_2.webp class='icon'/>", value: 1650, stylishness: 2, sluttyness: 3},
}>>
<<set $mall_multislot_t2 = {
bandageDress: {item: "Bandage Dress", slot: "top", slot: "bottom", pic: "<img src=img/clothes/multislot/T2/bandage_dress.webp class='icon'/>", value: 3470, stylishness: 4, sluttyness: 5},
redDress: {item: "Short Dress", slot: "top", slot: "bottom", pic: "<img src=img/clothes/multislot/T2/red_dress.webp class='icon'/>", value: 3730, stylishness: 6, sluttyness: 3},
}>>
<<set $mall_underbottom_t2 = {
laceStockings: {item: "Lace Stockings", slot: "underbottom", pic:"<img src=img/clothes/underbottom/T2/lace_stockings.webp class='icon'/>", value: 940, stylishness: 1, sluttyness: 1},
expensiveFishnets: {item: "Expensive Fishnets", slot: "underbottom", pic:"<img src=img/clothes/underbottom/T2/expensive_fishnets.webp class='icon'/>", value: 1200, stylishness: 1, sluttyness: 1},
laceGarterbelt: {item: "Lace Garterbelt Stockings", slot: "underbottom", pic:"<img src=img/clothes/underbottom/T2/lace_garterbelt.webp class='icon'/>", value: 1050, stylishness: 1, sluttyness: 1},
}>>
<<set $mall_shoe_t2 = {
sandalsHeels: {item: "Sandals Heels", slot: "feet", pic:"<img src=img/clothes/feet/T2/sandals_heels.webp class='icon'/>", value: 1550, stylishness: 3, sluttyness: 2},
platformHeels: {item: "Platform Heels", slot: "feet", pic:"<img src=img/clothes/feet/T2/platform_heels.webp class='icon'/>", value: 1600, stylishness: 3, sluttyness: 2},
elegantStiletto: {item: "Elegant Stilettos", slot: "feet", pic:"<img src=img/clothes/feet/T2/elegant_stiletto.webp class='icon'/>", value: 1435, stylishness: 3, sluttyness: 2},
flops: {item: "Flops", slot: "feet", pic:"<img src=img/clothes/feet/T2/flops.webp class='icon'/>", value: 1435, stylishness: 4, sluttyness: 1},
flats: {item: "Flats", slot: "feet", pic:"<img src=img/clothes/feet/T2/flats.webp class='icon'/>", value: 1680, stylishness: 5, sluttyness: 0},
flats2: {item: "Flats", slot: "feet", pic:"<img src=img/clothes/feet/T2/flats_2.webp class='icon'/>", value: 1550, stylishness: 5, sluttyness: 0},
}>>
<<set $mall_misc_t2 = {
goldenBracelet: {item: "golden bracelet", slot: "misc", pic: "<img src=img/clothes/misc/T2/golden_bracelet.webp class='icon'/>", value: 820, stylishness: 2, sluttyness: 0},
silverBracelet: {item: "silver bracelet", slot: "misc", pic: "<img src=img/clothes/misc/T2/silver_bracelet.webp class='icon'/>", value: 750, stylishness: 2, sluttyness: 0},
goldenWatches: {item: "golden watches", slot: "misc", pic: "<img src=img/clothes/misc/T2/golden_watches.webp class='icon'/>", value: 800, stylishness: 2, sluttyness: 0},
}>>
<<set $sexshop_head_t2 = {
leatherChoker: {item: "Leather Choker", slot: "head", pic:"<img src=img/clothes/head/T1/leather_choker.webp class='icon'/>", value: 240, stylishness: 0, sluttyness: 1},
chainChoker: {item: "Chain Choker", slot: "head", pic:"<img src=img/clothes/head/T1/chain_choker.webp class='icon'/>", value: 250, stylishness: 0, sluttyness: 1},
vulgarChoker: {item: "Vulgar Choker", slot: "head", pic:"<img src=img/clothes/head/T2/vulgar_choker.webp class='icon'/>", value: 1220, stylishness: 0, sluttyness: 2},
chokerWithChain: {item: "Choker With Chain", slot: "head", pic:"<img src=img/clothes/head/T2/choker_with_chain.webp class='icon'/>", value: 1350, stylishness: 0, sluttyness: 2},
}>>
<<set $sexshop_top_t2 = {
blackTop: {item: "Black Top", slot: "top", pic: "<img src=img/clothes/top/T1/black_top.webp class='icon'/>", value: 150, stylishness: 0, sluttyness: 2},
leatherTop: {item: "Leather Top", slot: "top", pic: "<img src=img/clothes/top/T1/leather_top.webp class='icon'/>", value: 180, stylishness: 1, sluttyness: 2},
leatherTop1: {item: "Leather Top", slot: "top", pic: "<img src=img/clothes/top/T1/leather_top1.webp class='icon'/>", value: 180, stylishness: 1, sluttyness: 2},
vulgarCropTop: {item: "Vulgar Crop Top", slot: "top", pic: "<img src=img/clothes/top/T2/vulgar_crop_top.webp class='icon'/>", value: 1480, stylishness: 1, sluttyness: 4},
vulgarTop: {item: "Lace Top", slot: "top", pic: "<img src=img/clothes/top/T2/vulgar_top.webp class='icon'/>", value: 1420, stylishness: 2, sluttyness: 3},
tubeTop: {item: "Leather Tube Top", slot: "top", pic: "<img src=img/clothes/top/T2/leather_tube_top.webp class='icon'/>", value: 1890, stylishness: 2, sluttyness: 3},
unhingedTop: {item: "Unhinged Tube Top", slot: "top", pic: "<img src=img/clothes/top/T2/unhinged_top.webp class='icon'/>", value: 1020, stylishness: 0, sluttyness: 5},
}>>
<<set $sexshop_bottom_t2 = {
blackMiniSkirt: {item: "Black Mini Skirt", slot: "bottom", pic: "<img src=img/clothes/bottom/T1/black_miniskirt.webp class='icon'/>", value: 150, stylishness: 0, sluttyness: 2},
leatherMiniSkirt: {item: "Leather Mini Skirt", slot: "bottom", pic: "<img src=img/clothes/bottom/T1/leather_miniskirt.webp class='icon'/>", value: 190, stylishness: 1, sluttyness: 2},
leatherMiniSkirt1: {item: "Leather Mini Skirt", slot: "bottom", pic: "<img src=img/clothes/bottom/T1/leather_miniskirt1.webp class='icon'/>", value: 190, stylishness: 1, sluttyness: 2},
unhingedSkirt: {item: "Unhinged Skirt", slot: "bottom", pic: "<img src=img/clothes/bottom/T2/unhinged_skirt.webp class='icon'/>", value: 1190, stylishness: 0, sluttyness: 5},
sheerMeshSkirt: {item: "Sheer Mesh Skirt", slot: "bottom", pic: "<img src=img/clothes/bottom/T2/sheer_mesh_skirt.webp class='icon'/>", value: 1340, stylishness: 1, sluttyness: 4},
leatherMiniSkirt2: {item: "Pricey Leather Mini Skirt", slot: "bottom", pic: "<img src=img/clothes/bottom/T2/leather_mini_skirt.webp class='icon'/>", value: 1250, stylishness: 1, sluttyness: 4},
tightMiniSkirt: {item: "Tight Mini Skirt", slot: "bottom", pic: "<img src=img/clothes/bottom/T2/tight_skirt.webp class='icon'/>", value: 1120, stylishness: 2, sluttyness: 3},
}>>
<<set $sexshop_shoe_t2 = {
pumps: {item: "Pumps", slot: "feet", pic:"<img src=img/clothes/feet/T1/pumps.webp class='icon'/>", value: 220, stylishness: 2, sluttyness: 1},
pumps1: {item: "Pumps", slot: "feet", pic:"<img src=img/clothes/feet/T1/pumps1.webp class='icon'/>", value: 240, stylishness: 2, sluttyness: 1},
pumps2: {item: "Pumps", slot: "feet", pic:"<img src=img/clothes/feet/T1/pumps2.webp class='icon'/>", value: 235, stylishness: 2, sluttyness: 1},
ankleStraps: {item: "Ankle Straps Heels", slot: "feet", pic:"<img src=img/clothes/feet/T2/ankle_straps.webp class='icon'/>", value: 1665, stylishness: 1, sluttyness: 4},
leatherBoots: {item: "Leather Boots", slot: "feet", pic:"<img src=img/clothes/feet/T2/leather_boots.webp class='icon'/>", value: 1450, stylishness: 0, sluttyness: 5},
platformHeels2: {item: "Platform Heels", slot: "feet", pic:"<img src=img/clothes/feet/T2/platform_heels_2.webp class='icon'/>", value: 1950, stylishness: 2, sluttyness: 3},
}>>
/* T1 */
<<set $mall_top_t1 = {
blackTShirt: {item: "Black T-shirt", slot: "top", pic: "<img src=img/clothes/top/T1/black_tshirt.webp class='icon'/>", value: 95, stylishness: 2, sluttyness: 0},
whiteTShirt: {item: "White T-shirt", slot: "top", pic: "<img src=img/clothes/top/T1/white_tshirt.webp class='icon'/>", value: 85, stylishness: 2, sluttyness: 0},
CropTop: {item: "Crop Top", slot: "top", pic: "<img src=img/clothes/top/T1/crop_top.webp class='icon'/>", value: 170, stylishness: 2, sluttyness: 1},
poloShirt: {item: "Polo Shirt", slot: "top", pic: "<img src=img/clothes/top/T1/polo_shirt.webp class='icon'/>", value: 190, stylishness: 3, sluttyness: 0},
whiteShirt: {item: "White Shirt", slot: "top", pic: "<img src=img/clothes/top/T1/white_shirt.webp class='icon'/>", value: 140, stylishness: 3, sluttyness: 0},
}>>
<<set $mall_bottom_t1 = {
jeans: {item: "Jeans", slot: "bottom", pic: "<img src=img/clothes/bottom/T1/jeans.webp class='icon'/>", value: 80, stylishness: 2, sluttyness: 0},
bluePants: {item: "Blue Pants", slot: "bottom", pic: "<img src=img/clothes/bottom/T1/blue_pants.webp class='icon'/>", value: 190, stylishness: 3, sluttyness: 0},
capriPants: {item: "Capri Pants", slot: "bottom", pic: "<img src=img/clothes/bottom/T1/capri_pants.webp class='icon'/>", value: 175, stylishness: 2, sluttyness: 0},
skinnyJeans: {item: "Skinny Jeans", slot: "bottom", pic: "<img src=img/clothes/bottom/T1/skinny_jeans.webp class='icon'/>", value: 215, stylishness: 2, sluttyness: 1},
whiteLeggings: {item: "White Leggings", slot: "bottom", pic: "<img src=img/clothes/bottom/T1/white_leggings.webp class='icon'/>", value: 230, stylishness: 2, sluttyness: 1},
}>>
<<set $mall_multislot_t1 = {
clubbingDress: {item: "Clubbing Dress", slot: "top", slot: "bottom", pic: "<img src=img/clothes/multislot/T1/clubbing_dress.webp class='icon'/>", value: 420, stylishness: 2, sluttyness: 3},
eveningDress: {item: "Evening Dress", slot: "top", slot: "bottom", pic: "<img src=img/clothes/multislot/T1/evening_dress.webp class='icon'/>", value: 450, stylishness: 3, sluttyness: 2},
}>>
<<set $mall_shoe_t1 = {
sneakers: {item: "Sneakers", slot: "feet", pic:"<img src=img/clothes/feet/T1/sneakers.webp class='icon'/>", value: 100, stylishness: 2, sluttyness: 0},
pumps3: {item: "Pumps", slot: "feet", pic:"<img src=img/clothes/feet/T1/pumps3.webp class='icon'/>", value: 280, stylishness: 1, sluttyness: 2},
sandals: {item: "Sandals", slot: "feet", pic:"<img src=img/clothes/feet/T1/sandals.webp class='icon'/>", value: 200, stylishness: 2, sluttyness: 1},
sandalsWedge: {item: "Wedges", slot: "feet", pic:"<img src=img/clothes/feet/T1/sandals_wedge.webp class='icon'/>", value: 295, stylishness: 2, sluttyness: 1},
strappyHeels: {item: "Strappy Heels", slot: "feet", pic:"<img src=img/clothes/feet/T1/strappy_heels.webp class='icon'/>", value: 235, stylishness: 2, sluttyness: 1},
}>>
<<set $mall_misc_t1 = {
lowWatches: {item: "Mediocre Watches", slot: "misc", pic: "<img src=img/clothes/misc/T1/low_watches.png class='icon'/>", value: 130, stylishness: 0, sluttyness: 0},
coolWatches: {item: "Cool Watches", slot: "misc", pic: "<img src=img/clothes/misc/T1/cool_watches.webp class='icon'/>", value: 160, stylishness: 1, sluttyness: 0},
charmBracelet: {item: "Bracelet with Charm", slot: "misc", pic: "<img src=img/clothes/misc/T1/charm_bracelet.webp class='icon'/>", value: 170, stylishness: 1, sluttyness: 0},
}>>
<<set $sexshop_head_t1 = {
leatherChoker: {item: "Leather Choker", slot: "head", pic:"<img src=img/clothes/head/T1/leather_choker.webp class='icon'/>", value: 240, stylishness: 0, sluttyness: 1},
chainChoker: {item: "Chain Choker", slot: "head", pic:"<img src=img/clothes/head/T1/chain_choker.webp class='icon'/>", value: 250, stylishness: 0, sluttyness: 1},
}>>
<<set $sexshop_top_t1 = {
blackTop: {item: "Black Top", slot: "top", pic: "<img src=img/clothes/top/T1/black_top.webp class='icon'/>", value: 150, stylishness: 0, sluttyness: 2},
leatherTop: {item: "Leather Top", slot: "top", pic: "<img src=img/clothes/top/T1/leather_top.webp class='icon'/>", value: 180, stylishness: 1, sluttyness: 2},
leatherTop1: {item: "Leather Top", slot: "top", pic: "<img src=img/clothes/top/T1/leather_top1.webp class='icon'/>", value: 180, stylishness: 1, sluttyness: 2},
}>>
<<set $sexshop_bottom_t1 = {
blackMiniSkirt: {item: "Black Mini Skirt", slot: "bottom", pic: "<img src=img/clothes/bottom/T1/black_miniskirt.webp class='icon'/>", value: 150, stylishness: 0, sluttyness: 2},
leatherMiniSkirt: {item: "Leather Mini Skirt", slot: "bottom", pic: "<img src=img/clothes/bottom/T1/leather_miniskirt.webp class='icon'/>", value: 190, stylishness: 1, sluttyness: 2},
leatherMiniSkirt1: {item: "Leather Mini Skirt", slot: "bottom", pic: "<img src=img/clothes/bottom/T1/leather_miniskirt1.webp class='icon'/>", value: 190, stylishness: 1, sluttyness: 2},
}>>
<<set $sexshop_multislot_t1 = {
sluttyDress: {item: "Slutty Dress", slot: "top", slot: "bottom", pic: "<img src=img/clothes/multislot/T1/slutty_dress.webp class='icon'/>", value: 270, stylishness: 2, sluttyness: 4},
}>>
<<set $sexshop_underbottom_t1 = {
blackStockings: {item: "Black Stockings", slot: "underbottom", pic:"<img src=img/clothes/underbottom/T1/black_stockings.jpg class='icon'/>", value: 170, stylishness: 1, sluttyness: 0},
netStockings: {item: "Net Stockings", slot: "underbottom", pic:"<img src=img/clothes/underbottom/T1/net_stockings.webp class='icon'/>", value: 170, stylishness: 0, sluttyness: 1},
netTights: {item: "Net Tights", slot: "underbottom", pic:"<img src=img/clothes/underbottom/T1/net_tights.webp class='icon'/>", value: 180, stylishness: 1, sluttyness: 0},
}>>
<<set $sexshop_shoe_t1 = {
pumps: {item: "Pumps", slot: "feet", pic:"<img src=img/clothes/feet/T1/pumps.webp class='icon'/>", value: 220, stylishness: 2, sluttyness: 1},
pumps1: {item: "Pumps", slot: "feet", pic:"<img src=img/clothes/feet/T1/pumps1.webp class='icon'/>", value: 240, stylishness: 2, sluttyness: 1},
pumps2: {item: "Pumps", slot: "feet", pic:"<img src=img/clothes/feet/T1/pumps2.webp class='icon'/>", value: 235, stylishness: 2, sluttyness: 1},
}>>
<<set $sexshop_misc_t1 = {
buttPlug: {item: "Buttplug", slot: "anus", pic:"<img src=img/clothes/misc/T1/buttplug.png class='icon'/>", value: 250, stylishness: 0, sluttyness: 1},
armWarmers: {item: "Arm Warmers", slot: "misc", pic:"<img src=img/clothes/misc/T1/arm_warmers.webp class='icon'/>", value: 220, stylishness: 0, sluttyness: 1},
}>>
*/starting clothes*/
<<set $equip = {
top: $mall_top_t1.blackTShirt,
bottom: $mall_bottom_t1.jeans,
feet: $mall_shoe_t1.sneakers,
misc: $mall_misc_t1.lowWatches,
}>> <<newinv $thiefs_loot>>
<<pickup $thiefs_loot "Wallet" 1 "Moonshine" 1 "Golden Ring" 1 "Silver Ring" 1 "Electrical Components" 1 "Golden Chain" 1 "Smartphone" 1 "Old phone" 1>>
<<newinv $marketplace>>
<<pickup $marketplace "Old phone" 1 "Smartphone" 1 "Wallet" 1 "Moonshine" 1>>
<<newinv $complex>>
<<pickup $complex "Golden Ring" 1 "Silver Ring" 2 "Golden Chain" 1 "Junk" 6 "Smartphone" 1 "Electrical Components" 1>>
<<newinv $suburbs>>
<<pickup $suburbs "Golden Ring" 1 "Silver Ring" 2 "Golden Chain" 1 "Junk" 5 "Electrical Components" 1 "Moonshine" 1>>
<<newinv $harbor>>
<<pickup $harbor "Chems A" 1 "Chems B" 1 "Organic Materials" 1 "Materials for Encapsulation" 1 "Paper" 1 "Agricultural Products" 1>>
<<newinv $dark_alleys>>
<<pickup $dark_alleys "Drugs" 1 "Steroids" 1 "Aphrodisiac" 1 "Wallet" 1>>
<<newinv $darkalleys_loot>>
<<pickup $darkalleys_loot "Drugs" 1 "Steroids" 1 "Aphrodisiac" 1>>
<<newinv $darkalleys_craft_loot>>
<<pickup $darkalleys_craft_loot "Chems A" 1 "Chems B" 1 "Materials for Encapsulation" 1>>
<<newinv $downtown_loot>>
<<pickup $downtown_loot "Golden Ring" 1 "Golden Chain" 1 "Smartphone" 1 "Old phone" 1>>
<<newinv $downtown_weapon_loot>>
<<pickup $downtown_weapon_loot "Brass Knuckles" 1 "Stanley Knife" 1>>
<<newinv $suburbs_cars>>
<<pickup $suburbs_cars "SUV Car" 1 "Muscle Car" 1 "Pickup Truck" 1 "Sedan Car" 3>>
<<newinv $outskirts_cars>>
<<pickup $outskirts_cars "SUV Car" 1 "Pickup Truck" 2 "Van Car" 2 "Porter Car" 1>>
<<newinv $center_cars>>
<<pickup $center_cars "SUV Car" 1 "Muscle Car" 1 "Sedan Car" 3 "Sportcar" 1>><style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/pawnshop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
"Instant Worth Pawn" pawnshop. Pawnshops around the world must undergo countless checks and are accountable to various authorities. Here, however... here, for some reason, they won't ask you where and how you got the items you're planning to sell. It’s probably for the best for you, right? But don’t try to sell your "merchandise" at other pawnshops.
Pawnshop might buy various electronics and jewelry.
\
<<if $pawnshop_cap <= 10>>\
<<if $p_inv.has("Old phone")>>\
<<button "Sell one phone - 40$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Old phone' 1>>\
<<money `40`>>\
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Old phone") >= 5>>\
<<button "Sell five phones - 200$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Old phone' 5>>\
<<money `200`>>\
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Old phone") >= 2>>\
<<set _amount_ph = $p_inv.count("Old phone")>>\
<<set _price_ph = _amount_ph * 40>>\
<<button "Sell all phones (_amount_ph) for _price_ph​$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Old phone' _amount_ph>>\
<<money `_price_ph`>>\
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.has("Smartphone")>>\
<<button "Sell one smartphone - 60$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Smartphone' 1>>
<<money `60`>>
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Smartphone") >= 5>>\
<<button "Sell five smartphones - 300$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Smartphone' 5>>\
<<money `300`>>\
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Smartphone") >= 2>>\
<<set _amount_sp = $p_inv.count("Smartphone")>>\
<<set _price_sp = _amount_sp * 60>>\
<<button "Sell all smartphone (_amount_sp) for _price_sp​$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Smartphone' _amount_sp>>\
<<money `_price_sp`>>\
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.has("Electrical Components")>>\
<<button "Sell a bunch of electrical components - 70$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Electrical Components' 1>>
<<money `70`>>
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Electrical Components") >= 5>>\
<<button "Sell a 5 packs of electrical components - 350$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Electrical Components' 5>>
<<money `350`>>
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Electrical Components") >= 2>>\
<<set _amount_ec = $p_inv.count("Electrical Components")>>\
<<set _price_ec = _amount_ec * 70>>\
<<button "Sell all components (_amount_ec) for _price_ec​$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Electrical Components' _amount_ec>>\
<<money `_price_ec`>>\
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.has("Golden Ring")>>\
<<button "Sell one golden ring - 105$." "Pawnshop">>\
<<transfer $p_inv $pawnshop 'Golden Ring' 1>>\
<<money `105`>>\
<<set $pawnshop_rep += 2>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Golden Ring") >= 5>>\
<<button "Sell a 5 golden rings - 525$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Golden Ring' 5>>
<<money `525`>>
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Golden Ring") >= 2>>\
<<set _amount_gr = $p_inv.count("Golden Ring")>>\
<<set _price_gr = _amount_gr * 105>>\
<<button "Sell all golden rings (_amount_gr) for _price_gr​$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Golden Ring' _amount_gr>>\
<<money `_price_gr`>>\
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.has("Silver Ring")>>\
<<button "Sell one silver ring - 80$." "Pawnshop">>\
<<transfer $p_inv $pawnshop 'Silver Ring' 1>>\
<<money `80`>>\
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Silver Ring") >= 5>>\
<<button "Sell a 5 silver rings - 400$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Silver Ring' 5>>
<<money `400`>>
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Silver Ring") >= 2>>\
<<set _amount_sr = $p_inv.count("Silver Ring")>>\
<<set _price_sr = _amount_sr * 80>>\
<<button "Sell all silver rings (_amount_sr) for _price_sr​$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Silver Ring' _amount_sr>>\
<<money `_price_sr`>>\
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.has("Golden Chain")>>\
<<button "Sell one golden chain - 140$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Golden Chain' 1>>
<<money `140`>>\
<<set $pawnshop_rep += 2>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Golden Chain") >= 5>>\
<<button "Sell a 5 golden chains - 700$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Golden Chain' 5>>
<<money `700`>>
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Golden Chain") >= 2>>\
<<set _amount_gc = $p_inv.count("Golden Chain")>>\
<<set _price_gc = _amount_gc * 140>>\
<<button "Sell all golden chains (_amount_gc) for _price_gc​$." "Pawnshop">>
<<transfer $p_inv $pawnshop 'Golden Chain' _amount_gc>>\
<<money `_price_gc`>>\
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_melee.has("Stanley Knife")>>\
<<button "Sell stanley knife - 15$." "Pawnshop">>
<<transfer $p_melee $pawnshop 'Stanley Knife' 1>>
<<money `15`>>\
<<set $pawnshop_rep += 2>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Stanley Knife") >= 5>>\
<<button "Sell a 5 stanley knives - 75$." "Pawnshop">>
<<transfer $p_melee $pawnshop 'Stanley Knife' 5>>
<<money `75`>>
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_melee.has("Brass Knuckles")>>\
<<button "Sell brass knuckles - 250$." "Pawnshop">>
<<transfer $p_melee $pawnshop 'Brass Knuckles' 1>>
<<money `250`>>\
<<set $pawnshop_rep += 2>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Brass Knuckles") >= 5>>\
<<button "Sell a 5 brass knuckles - 1250$." "Pawnshop">>
<<transfer $p_melee $pawnshop 'Brass Knuckles' 5>>
<<money `1250`>>
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_melee.has("Telescopic Baton")>>\
<<button "Sell telescopic baton - 150$." "Pawnshop">>
<<transfer $p_melee $pawnshop 'Telescopic Baton' 1>>
<<money `150`>>\
<<set $pawnshop_rep += 2>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Telescopic Baton") >= 5>>\
<<button "Sell a 5 telescopic batons - 750$." "Pawnshop">>
<<transfer $p_melee $pawnshop 'Telescopic Baton' 5>>
<<money `750`>>
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_melee.has("Butterfly Knife")>>\
<<button "Sell butterfly knife - 425$." "Pawnshop">>
<<transfer $p_melee $pawnshop 'Butterfly Knife' 1>>
<<money `425`>>\
<<set $pawnshop_rep += 2>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Butterfly Knife") >= 5>>\
<<button "Sell a 5 butterfly knives - 2125$." "Pawnshop">>
<<transfer $p_melee $pawnshop 'Stanley Knife' 5>>
<<money `2125`>>
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_melee.has("Spiked Knuckles")>>\
<<button "Sell spiked knuckles - 500$." "Pawnshop">>
<<transfer $p_melee $pawnshop 'Spiked Knuckles' 1>>
<<money `500`>>\
<<set $pawnshop_rep += 2>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Spiked Knuckles") >= 5>>\
<<button "Sell a 5 spiked knuckles - 2500$." "Pawnshop">>
<<transfer $p_melee $pawnshop 'Spiked Knuckles' 5>>
<<money `2500`>>
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_melee.has("Metal Chain")>>\
<<button "Sell metal chain - 250$." "Pawnshop">>
<<transfer $p_melee $pawnshop 'Metal Chain' 1>>
<<money `250`>>\
<<set $pawnshop_rep += 2>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Stanley Knife") >= 5>>\
<<button "Sell a 5 metal chains - 1250$." "Pawnshop">>
<<transfer $p_melee $pawnshop 'Metal Chain' 5>>
<<money `1250`>>
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_melee.has("Crowbar")>>\
<<button "Sell crowbar - 200$." "Pawnshop">>
<<transfer $p_melee $pawnshop 'Crowbar' 1>>
<<money `200`>>\
<<set $pawnshop_rep += 2>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
\
<<if $p_inv.count("Crowbar") >= 5>>\
<<button "Sell a 5 crowbars - 1000$." "Pawnshop">>
<<transfer $p_melee $pawnshop 'Crowbar' 5>>
<<money `1000`>>
<<set $pawnshop_rep += 1>>\
<<set $pawnshop_cap += 1>>\
<</button>>
<</if>>\
<<else>>\
<span class="not_available">Pawnshop owner can't buy more from you today, it would raise a lot of questions otherwise.</span>
<</if>>\
\
/* Knowledge about whereabouts of gangs hub */
<<if $gangs_base == false && $pawnshop_rep >= 5>>\
<div id="replace">The guy behind the counter asks you if you wanna know <<link "The Place">><<replace #replace>>He gave you the adress to Street Gangs hub.<</replace>><<set $gangs_base = true>><</link>> that sells tools for the kinds of you.</div>\
<</if>>\
<<if $strange_note_1 === true && !$p_inv.has("Strange Note#1") && $money >= 30>>\
<<trade_link>><<link "Buy a 'Strange Note#1 - 30$'" "Pawnshop">>\
<<pickup $p_inv "Strange Note#1" 1>>\
<<money `-30`>>\
<</link>><</trade_link>>
<</if>>\
<<if $strange_note_2 === true && !$p_inv.has("Strange Note#2") && $money >= 30>>\
<<trade_link>><<link "Buy a 'Strange Note#2 - 30$'" "Pawnshop">>\
<<pickup $p_inv "Strange Note#2" 1>>\
<<money `-30`>>\
<</link>><</trade_link>>
<</if>>\
<<if $strange_note_3 === true && !$p_inv.has("Strange Note#3") && $money >= 30>>\
<<trade_link>><<link "Buy a 'Strange Note#3 - 30$'" "Pawnshop">>\
<<pickup $p_inv "Strange Note#3" 1>>\
<<money `-30`>>\
<</link>><</trade_link>>
<</if>>\
<<if $strange_note_4 === true && !$p_inv.has("Strange Note#4") && $money >= 30>>\
<<trade_link>><<link "Buy a 'Strange Note#4 - 30$'" "Pawnshop">>\
<<pickup $p_inv "Strange Note#4" 1>>\
<<money `-30`>>\
<</link>><</trade_link>>
<</if>>\
<<if $money >= 300>>\
<<trade_link>><<link "Telescopic Baton - 300$">>\
<<money `-300`>>\
<<pickup $p_melee "Telescopic Baton" 1>>\
<<goto "Pawnshop">>\
<</link>><</trade_link>>
<<else>>\
<span class="not_available"> Telescopic Baton - 300$</span>
<</if>>\
<<if $money >= 30>>\
<<trade_link>><<link "Stanley Knife - 30$">>\
<<money `-30`>>\
<<pickup $p_melee "Stanley Knife" 1>>\
<<goto "Pawnshop">>\
<</link>><</trade_link>>
<<else>>\
<span class="not_available"> Stanley Knife - 30$</span>
<</if>>\
<<out_link>><<link "Get back to the main street of Downtown" "Downtown">>\
<<addmins 5>>\
<</link>><</out_link>>\<<silently>>\
<<dropall $pawnshop>>\
<<pickup $pawnshop "Old phone" 4 "Smartphone" 2>>\
<<if $orders_reset > 0>>\
<<set $orders_reset -= 1>>\
<</if>>\
<<set $exchange_cap = 0>>\
<<set $exchange_cap_max = 250 * $cun>>\
<<set $escort_orders_generated = false>>\
<<set $bar_moonshine_sold = false>>
<<set $outskirts_trade = false>>
<<set $gym_available = true>>
<<set $ring_partaking = false>>
<<set $ring_fighters_setup = false>>
<<set $bet_1 = 0>>
<<set $bet_2 = 0>>
<<set $pawnshop_cap = 0>>
<<set $orders = ["Order from Banana Republic", "Order from brothel", "Order from pimp", "Order from sport team", "Order from ghetto", "Order from pawnshop", "Order from drugdealer", "Order from hackers", "Order for party", "Order from IT company",]>>
<<set $escort_order = ["Deep Blowjob", "Gangbang", "Anal", "Arm Pillow", "Talisman"]>>
<<set $escort_description = ["Dude just wants to hang out", "Not the freshest man came to win", "Drunkyard just hit wits end and you're gonna end his wallet", "Gambler gonna gamble, he's asking for a talisman or mascot for his wins", "Middle aged man with kinda mid requests from his life. Better for you, i guess", "Partygoer that already bothered the rest of the girls", "Handsome, rich, gambling type. Perfect target"]>>
<<set $changing_room_pervert = true>>
<</silently>>\<<item "Old phone" "outdated mobile phone">>
<<description>>
A very outdated and old mobile phone - it’s really not worth the hassle. It’ll be hilarious if you get yourself arrested for this. You’re not even sure how to use it...
<</item>>
<<item "Smartphone" "Smart">>
<<description>>
That’s your basic smartphone. Being a smart robber, you’ve already taken the battery out - no way you're risking it with all the modern surveillance and detection systems. Leave this problem to someone who cares enough to pay you for this brick.
<</item>>
<<consumable "Wallet" "Wallet">>
<<set _random_money = random(5, 30) * $cun>>
<<money `_random_money`>>
<<notify 3s>>You've got _random_money bucks!<</notify>>
<<description>>\
You want to open it. Open it. Open.
<</consumable>>
<<item "Lockpick" "Lockpick">>
<<description>>
A tool that screams "open sesame." A tool for bad people - people like you. Do what comes natural.
<</item>>
<<item "Golden Ring" "Golden Ring">>
<<description>>
This ring might have meant something to someone you never knew. But if you start thinking about it, your conscience might wake up. Now it's yours, and that's all that matters. Anyway, someone who can afford a golden ring can easily buy a new one.
<</item>>
<<item "Silver Ring" "Silver Ring">>
<<description>>
This ring might have meant something to someone you never knew. But if you start thinking about it, your conscience might wake up. Now it's yours, and that's all that matters.
<</item>>
<<item "Golden Chain" "Golden Chain">>
<<description>>
18 karat golden chain. It’s too big and impractical; it was created purely for showing off. It's for the best that you have this chain - one less "fashion" victim in the world.
<</item>>
<<item "Junk" "Junk">>
<<description>>
Just junk. A lot of useless things, you may try to sell it on the market, you little stinky hoarder.
<</item>>
<<item "Strange Note#1" "Strange Note #1">>
<<description>>
1. If you lost something important - like this //very important// note - you always can buy it in pawnshop! But, of course, you must find it at first. Also, you can put all notes on the whiteboard at home, you just need to have it in your stash or pockets!
2. If you somehow got yourself in troubles - remember to watch over your health and endurance. No one is able to stand on their feet after a good beating.
3. Speaking of which, your battery will die if you're gonna work, whatever your work is. Anything else? Go nuts. But the second you try earning some money, you’re on the clock.
P.S.
Look for other notes in various places! Even in those that are closed in specific time of day.
P.P.S.
If you feel like you're lacking the skills for the job, just keep at it - one day, you'll get better. This applies to everything.
<<unique>>
<</item>>
<<item "Strange Note#2" "Strange Note #2">>
<<description>>
4. Rumours says that there's a secret gang of hackers in a suburbs area. This gang offers a various information and skills for the one who seeks it.
5. Car allows you to travel much faster and significantly more easily, like, literally just by wishing when and where you wanna ride. If you tired of constant moving between districts - get a car! Its too obvious, yeah?
6. Riddle: What you can see on woman's body, hockey field and a chessboard?... Combination! Some clothes are more provocative and some of them are more elegant. Both types of these styles gonna raise up your charm if you're stack more enough of them. And, of course, you can combine styles.
7. By the way, about clothes - shop offers are not always the same. Variety of wares is going to change. Just something big enough should happen.
<<unique>>
<</item>>
<<item "Strange Note#3" "Strange Note#3">>
<<description>>
8. Have you ever thought about a trading business? Its quite easy, mind you! You just need:
1) find a place to store your cargo, warehouse preferably;
2) prepare your cargo, you may wanna do it right in a storage place i've mentioned previously! (it's more convenient to do) - for that you need to have a considerable amount of your wares, something like 100 pcs!;
3) find a distributor! It might be some dropshipper or a large-quantity distributing services provider.
P.S. You don't really have to pack your wares into cargo, if you are a small trader it might be wiser to work on your connection and a first capital! Just don't forget to turn your capital into more profit.
9. If you are true dealer - don't be ashamed of trying to sell something in unconventional places! Even in places like gym and various clubs - develop your business skills everywhere!
10. Streets are peculiarly full of illegal chemical substances nowadays. I wonder, from where do ghetto chemists are getting their supplements? I can imagine you can get some of it on the market, but i dunno how you can get chemical materials for such things without connections in pharmaceuticals circles... or without skills in theft, i guess?
<<unique>>
<</item>>
<<item "Strange Note#4" "Strange Note#4">>
<<description>>
11. Whenever a new party spot opens in the city, it gets an initial surge in popularity! Well, it's not some big secret - it works the same way with everything in life. But the novelty effect fades quickly..
12. Speaking of which, if this place, figuratively speaking, is stocked with everything it has to offer, it will continue to steadily gain popularity over time!
13. Higher popularity brings more problems. Isn’t that obvious? It can hurt your reputation and even lead to losses, and more popular the place bigger the losses.
14. Higher popularity also increases demand for the products you offer. So, the more popular your place, the higher the demand for your goods, and ultimately, the more profit that goes into replenishing your stock.
<<unique>>
<</item>>
<<item "Block 19" "Block 19">>
<<description>>
A handgun. A loyal tool for your operation. Easy to hide, even easier to use. Perfect for when you need to "build" a solid argument in your favor - one block at a time. Just don't carry it anywhere while high profile, it wouldnt be very wise.
<</item>>
<<item "Saga-12" "Saga-12">>
<<description>>
A shotgun. One of the best tools if you're going in personal. It'll turn any skirmish into an epic saga. Just don't carry it anywhere while high profile, it wouldnt be very wise.
<</item>>
<<item "I16" "I16">>
<<description>>
Decommissioned service rifle. Now it's gonna service you, who woulda knew? "I" stands for "Intimidation". Just don't carry it anywhere while high profile, it wouldnt be very wise.
<</item>>
<<item "Handheld Taser" "Handheld Taser">>
<<description>>
Easy to take out, even easier to use, just shoot from the right side. Will help you to defend in case of unwanted attention. One time use.
<</item>>\
<<item "Safe-cracking kit" "Safecracking kit">>
<<description>>
Everything you need for some safe-cracking.
<<unique>>
<</item>>
<<item "Car Opening Tools" "Car Opening Tools">>
<<description>>
Hooks and handles of various diameters that will help you with your shady business. No, sadly it's not a valid tool for a burglary.
<</item>>
<<item "Kakoshicoin Farm Kit" "Kakoshicoin Farm Kit">>
<<description>>
A bunch of GPUs stitched together in somekind of frame. Sixth left installation instruction on the back of it, tldr - set this up in a cool place and connect the wires to your computer... and get your money. Magic, i guess?
<</item>>
/* Cars */
<<item "Muscle Car" "Muscle Car">>
<<description>>
Beast from 80-s. Don't forget your sunglasses and a sidekick.
<</item>>
<<item "SUV Car" "SUV Car">>
<<description>>
Best friend of modern adventurers, survivalists and people who are compensating for something.
<</item>>
<<item "Pickup Truck" "Pickup Truck">>
<<description>>
Your working horse. Helps you if you wanna have a party, or you're working as a porter or even if you need to finish a some deals.
<</item>>
<<item "Sedan Car" "Sedan Car">>
<<description>>
Default car. Like, literally. Your basic car for all purposes. Just don't forget about clearing it first.
<</item>>
<<item "Porter Car" "Porter Car">>
<<description>>
Not the most elegant way to move around on vehicle, you'll gonna feel every hillock, every hummock and tussock. But... it'll do its job.
<</item>>
<<item "Van Car" "Van Car">>
<<description>>
You either afraid of these type of cars or laugh at it. Make it former.
<</item>>
<<item "Sportcar" "Sportcar">>
<<description>>
Swag.
<</item>>
/* Craft */
<<item "Chems A" "Chems A">>
<<description>>
Various chemical substances for your chemistry. Don't forget about safety controls!
<</item>>
<<item "Chems B" "Chems B">>
<<description>>
Other various chemical substances for your chemistry. Don't forget about safety controls!
<</item>>
<<item "Organic Materials" "Organic Materials">>
<<description>>
Everything that consists of organic compound, i.e. carbon-based. Don't forget about safety controls!
<</item>>
<<item "Agricultural Products" "Agricultural Products">>
<<description>>
Yeast, barley, lot of protein-based provision and various nutriments and other very important things right from our hard workers in agricultural sphere.
<</item>>
<<item "Materials for Encapsulation" "Materials for Encapsulation">>
<<description>>
Various things like gelatin and gums for your chemistry results. Don't forget about safety controls!
<</item>>
<<item "Paper" "Paper">>
<<description>>
"Where's our map? - I've blow it up!"
<</item>>
<<item "Electrical Components" "Electrical Components">>
<<description>>
Various electronic and technical gizmos that are beyond your area of expertise.
<</item>>
/* Drugs */
<<item "Aphrodisiac" "Aphrodisiac">>
<<description>>
New drug that makes everyone horny. Even you. Especially you. So don't you even try that. It looks like a pink pills, insides of it contain some flavoured powder, smells like strawberries.
<</item>>
<<item "Drugs" "Drugs">>
<<description>>
Collective word for various hallucinogens and stimulants. Funny pills for funny people. Not for you tho, you're not ''that'' funny.
<</item>>
<<item "Steroids" "Steroids">>
<<description>>
A shortest path to muscle gain. Beware, cheating on your body will hurt you mentally and physically.
<</item>>
<<item "Moonshine" "Moonshine">>
<<description>>
Once you try moonshine, you'll forget about state-owned firewater. Just try to not forget your name too.
<</item>>
/* Cargo */
<<item "Drugs Shipment" "Drugs Shipment">>
<<description>>
It'll destroy someone's life. Babe, you got to be tragic,
If you wanna be magic.
<</item>>
<<item "Steroids Shipment" "Steroids Shipment">>
<<description>>
Win condition for athletes and win condition for your wallet.
<</item>>
<<item "Aphrodisiac Shipment" "Aphrodisiac Shipment">>
<<description>>
Taste of poison paradise. Helpful for "network" parties.
<</item>>
<<item "Stolen Goods Shipment" "Stolen Goods Shipment">>
<<description>>
At least you didn’t hide the watch in the only place you could.
<</item>>
<<item "Weapons Shipment" "Weapons Shipment">>
<<description>>
Should help some banana republics, resistance groups or even a PMCs. Universal currency of violence.
<</item>>
<<item "Electronic Shipment" "Electronic Shipment">>
<<description>>
It was a wise move to neatly arrange all components into categories in a crate. Now you can tell that this cargo is surely worth something, at very least you can see a few GPUs, GPS trackers, boards and a varied number of all sorts of little bells and whistles.
<</item>>
<<item "Moonshine Shipment" "Moonshine Shipment">>
<<description>>
Bootlegged alcohol. You can call it a homebrew craft, but mostly everyone will call it a rotgut, this name speaks for itself.
<</item>>
<<item "Concealed Melee Shipment" "Concealed Melee Shipment">>
<<description>>
Everything for a night of the long knives.
<</item>>
<<item "Jewelry Shipment" "Jewelry Shipment">>
<<description>>
Individually, these valuables are practically worthless - just a pile of stolen junk. But together... together, they could easily pass as a legitimate shipment of high-end jewelry, ready to be sold at an outrageous markup.
<</item>><style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/marketplace.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Hands slip through the chaos like ghosts - one distraction, one quick move, and someone's lighter on cash. The market noise drowns out everything, but not the weight of a fresh score in your pocket.
<<set _result = random(1, 20)>>\
<<if _result > 7 - $cun/2>>\
<<if $p_traits.includes("pickpocketer")>>\
<<set _random_1 = $marketplace.array.random()>>\
<<set _random_2 = $marketplace.array.random()>>\
<<pickup $p_inv _random_1 1>>\
<<pickup $p_inv _random_2 1>>\
You've got _random_1 from first belt and _random_2 from the second one!
<<link "Let's get back to hustling" "Marketplace">>
<<pickpocketing_success>>\
<</link>>
<<else>> /*if doesnt have a trait*/\
<<set _random_1 = $marketplace.array.random()>>\
<<pickup $p_inv _random_1 1>>\
You've got _random_1!
<<link "Let's get back to hustling" "Marketplace">>
<<pickpocketing_success>>\
<</link>>
<</if>>\
<<else>>\
<<pickpocketing_fail>>\
<<goto "Caught Market Stealing">>
<</if>>/* Status, default stats are 3 3 3 */
<<set $cun_base = 3>>
<<set $cun_mod_boss = 0>>
<<set $cun_scout_mod = 0>>
<<set $cun = ($cun_base + $cun_mod_boss + $cun_scout_mod)>>
<<set $bonus_charm_style = 0>>
<<set $bonus_charm_slut = 0>>
<<set $charm_mod_boss = 0>>
<<set $charm_base = 3>>
<<set $charm = ($charm_base + $bonus_charm_style + $bonus_charm_slut + $charm_mod_boss)>>\
<<set $base_energy = 4>> /* 4 base */
<<set $energy_mod_boss = 0>>
<<set $energy_mod_car = 0>>
<<set $energy = ($base_energy + $energy_mod_boss + $energy_mod_car)>>
<<set $stam = $energy>>
<<set $combat_base = 3>> /* 3 base */
<<set $combat_mod_boss = 0>>
<<set $combat_mod_training = 0>>
<<set $combat = ($combat_base + $combat_mod_boss + $combat_mod_training)>>
<<set $health_base = 30>> /* 30 base */
<<set $health_traits_mod = 0>>
<<set $health_training_mod = 0>>
<<set $p_hp_max = ($health_base + $health_traits_mod + $health_training_mod)>> /* for health meter */
<<set $p_hp = ($health_base + $health_traits_mod + $health_training_mod)>>
<<set $combat_stamina_base = 100>>
<<set $combat_stamina = $combat_stamina_base>>
<<set $adolesence = "">>
<<set $first_crime = "">>
<<set $last_crime = "">>
<<set $money = 0>>
<<set $dirty_money = 0>>
<<set $crowns = 0>>
<<set $p_pleasure = 10>>
<<set $p_depravity = 10>>
<<set $stylishness = 0>>
<<set $sluttyness = 0>>
<<set $chase_car_bonus = 0>>
<<set $chase_perk_bonus = 0>>
<<set $exp_percentage = 0>>
/* REPUTATION */
<<set $reputation = 0>>
<<set $pawnshop_rep = 0>>
<<set $hackers_rep = 0>>
<<set $p_traits = []>>
<<set $burglar_trait_progress = 0>>\
<<set $fitness_trait_progress = 0>>\
<<set $striptease_trait_progress = 0>>\
<<set $car_thief_trait_progress = 0>>\
<<set $observer_trait_progress = 0>>\
<<set $pickpocketer_trait_progress = 0>>\
<<set $melee_trait_progress = 0>>\
<<set $racer_trait_progress = 0>>\
<<set $anal_whore_trait_progress = 0>>\
<<set $gh_whore_trait_progress = 0>>\
<<set $seller_trait_progress = 0>>\
<<newinv $p_inv>>
/*<<pickup $p_inv "Old phone" 10 "Smartphone" 10 "Wallet" 25 "Lockpick" 10 "Golden Ring" 10 "Silver Ring" 10 "Junk" 10 "Golden Chain" 5 "Safe-cracking kit" 1 "Strange Note#1" 1 "Strange Note#2" 1 "Strange Note#3" 1 "Aphrodisiac" 500 "Car Opening Tools" 1 "Steroids" 1000 "Drugs" 2000 "Handheld Taser" 1 "Electrical Components" 20 "Kakoshicoin Farm Kit" 6 "Moonshine" 100>> */
<<newinv $garage_inv>>
/*<<pickup $garage_inv "SUV Car" 4 "Pickup Truck" 4 "Muscle Car" 4 "Sedan Car" 10 "Porter Car" 4 "Van Car" 4 "Sportcar" 4>> ALL CARS */
<<newinv $stash>>
<<newinv $p_range>>
/*<<pickup $p_range "Block 19" 10 "Saga-12" 10 "I16" 10>> ALL GUNS */
<<newinv $p_melee>>
/*<<pickup $p_melee "Stanley Knife" 10 "Brass Knuckles" 10 "Telescopic Baton" 2 "Spiked Knuckles" 10 "Baseball Bat" 10 "Butterfly Knife" 2 "Metal Chain" 2 "Crowbar" 2>> ALL MELEE */
<<set $weapon_equipped = "">>
<<newinv $p_craft>>
/*<<pickup $p_craft "Chems A" 3 "Chems B" 3 "Organic Materials" 10 "Materials for Encapsulation" 3 "Paper" 15 "Agricultural Products" 5>> */
/* knowledge */
<<set $gangs_base = false>>
<<set $gangs_met = 0>>
<<set $mafia_base = false>>
<<set $mafia_met = 0>>
<<set $cartel_base = false>>
<<set $cartel_met = 0>>
<<set $bikers_met = 0>>
<<set $hackers_met = 0>>
<<set $strange_note_1 = false>>
<<set $strange_note_2 = false>>
<<set $strange_note_3 = false>>
<<set $strange_note_4 = false>>
<<set $met_mechanic = 0>>
<<set $ring_information = false>>
<<set $autoshop_information = false>>
/* Events & States - some things are in "Shops NewDay", but don't forget that Shops NewDay have a further pos in InitPage than MC */
<<set $city_name = "Default Name">>
<<set $do_it_anyway = false>>
<<set $custody_term = 0>>
<<set $was_in_custody = 0>>
<<set $warden_seduced = 0>>
<<set $dm_cap = 0>>
<<set $dm_cap_too_much = false>>
<<set $orders_reset = 0>>
<<set $bar_moonshine_sold = false>>
<<set $outskirts_trade = false>>
<<set $downtown_bribe = false>>
<<set $downtown_rep = 0>>
<<set $suburbs_bribe = false>>
<<set $race_cd = 0>>
<<set $race_active = true>> /* true def */
<<set $mafia_blackjack = true>> /* true def */
<<set $police_connections = false>> /* false def */
<<set $harbor_gangbang = false>> /* false */
<<set $distributor_standoff = false>>
<<set $distributor_lewd = false>>
<<set $distributor_daily_sex = false>>
<<set $gangs_leaders_daily_sex = false>>
<<set $news_milestone_1 = false>>
<<set $news_milestone_2 = false>>
<<set $news_milestone_3 = false>>
<<set $news_milestone_band = false>>
<<set $forum_new = true>>
<<set $burglars_event = false>>
<<set $bleed_just_applied = false>>
<<set $volkov_money_roll = 0>>
<<set $pawnshop_cap = 0>>
<<set $brand_clothing = false>>
<<set $brand_clothing_construction = false>>
<<set $nc_striptease_cd = 0>>
<<set $trailer_call = false>>
/* Finances */
<<set $rent = 10>> /* default - 10 */
<<set $staff_payment = 0>>
/* Properties */
<<set $PC = true>>
<<set $taxmen_friend = false>>
<<set $car_1 = false>>
<<set $car_2 = false>>
<<set $car_3 = false>>
<<set $car = 0>>
<<set $home_type = 0>>
<<set $home_gym = false>>
<<set $home_swimming_pool = false>>
<<set $home_fence = 0>>
<<set $basement = 0>>
<<set $coins_farm_size = 0>>
<<set $farm_tax = 0>>
<<set $farm_earnings = 0>>
<<set $farm_mod = 1>>
<<set $installed_farm = 0>>
<<set $garage = 0>> /* Поменять на 0 когда придет время релизиться */
<<set $garage_size = 0>>\ /* Поменять на 0 когда придет время релизиться */
\
<<set $p_warehouse = 0>>
<<set $p_warehouse_size = 0>>
<<set $warehouse_rent = 0>>
<<set $warehouse_upgrades = []>>
<<set $warehouse_tax_upgrade = false>>
<<set $warehouse_span = 0>>
<<set $warehouse_cargo_window = false>>
<<set $warehouse_inv_window = false>>
<<set $warehouse_upgrades_window = false>>
<<set $warehouse_shipment_window = false>>
<<set $warehouse_supply_window = false>>
<<newinv $warehouse_inv>>
/* <<pickup $warehouse_inv "Drugs Shipment" 5 "Steroids Shipment" 5 "Stolen Goods Shipment" 5 "Aphrodisiac Shipment" 5 "Weapons Shipment" 5 "Electronic Shipment" 5 "Moonshine Shipment" 5 "Concealed Melee Shipment" 5 "Jewelry Shipment" 5>>ALL SHIPMENTS */
<<set $packing_speed = 120>> /* 120 is default */
\
<<set $p_lab = false>>
<<set $p_lab_nc_prod = false>>
<<set $lab_prod_upgrade = 0>>
<<set $chemist = 0>>
<<set $chemist_payment = 0>>
<<set $lab_tax = 0>>
<<set $lab_prod_drugs = false>> /* false default */
<<set $lab_market = 0>>
<<set $night_club = false>>
<<set $nc_name = "Swaying Bazongas">>
<<set $nc_tax = 0>>
<<set $nc_tax_upgrades = 0>>
<<set $nc_pop = 0>>
<<set $nc_pop_raise = 0>>
<<set $nc_risks = 0>>
<<set $nc_risk_percentage_mod = 0>>
<<set $nc_capacity_drinks = 0>>
<<set $nc_capacity_drinks_use = 0>>
<<set $nc_capacity_drugs = 0>>
<<set $nc_capacity_drugs_use = 0>>
<<set $nc_earnings = 0>>
<<set $nc_entrance_price = 10>> /* 10 def */
<<set $nc_drinks_autobuy = 0>>
<<set $nc_income = 0>>
<<set $nc_laundry = 0>>
<<set $nc_laundry_mod = 0>>
<<set $nc_oscillation = 0>>
<<set $nc_stripper_poles = false>>
<<set $nc_backrooms_deals = false>>
<<set $nc_extra_bouncers = false>>
<<set $nc_boss_order = false>>
<<set $nc_gambling_tables = false>>
<<set $nc_cctv = false>>
<<set $nc_drugdealer_event = false>>
<<set $nc_angry_event_cd = 0>>
<<set $brothel = false>>
<<set $brothel_sluts_max = 10>> /* 10 def */
<<set $brothel_sluts = 0>>
<<set $brothel_pop = 1>> /* 1 def */
<<set $brothel_clients_amount = 0>>
<<set $brothel_quality_mods = 0>>
<<set $brothel_quality = 0 + $brothel_quality_mods>>
<<set $brothel_quality_needed = 0>>
<<set $brothel_capacity_aphrodisiac = 1000>>
<<set $brothel_tax = 250>> /* 250 default */
<<set $brothel_restoration = false>>
<<set $brothel_vip = false>>
<<set $brothel_aphrodisiac_upgrade = false>>
<<set $brothel_more_rooms = false>>
<<set $brothel_hookas = false>>
<<set $moonshine_trailer = false>>
<<set $moonshine_mats = 0>>
<<set $moonshine_farmers = 0>>
<<set $moonshine_farmers_max = 3>> /* 3 def */
<<set $moonshine_prod_upgrade_1 = false>>
<<set $moonshine_prod_upgrade_2 = false>>
<<set $moonshine_extra_trailer = false>>
<<set $moonshine_camp = false>>
<<set $moonshine_autobuy = 0>>
<<set $moonshine_progress = 0>>
/* Production */
<<set $downtown_landlord = false>>
<<set $lab_prod_speed = 0>>
<<set $lab_production_mod = 25>> /* 25 def probably */
<<set $lab_production_mod_bt = 1>> /* 1 def */
<<set $lab_prod = 0>>
<<set $nc_lab_percentage = 0>>
<<set $moonshine_prod_speed = 0>>
<<set $moonshine_prod_mod = 1>>/*1 by default*/
<<set $nc_moonshine_percentage = 0>>
<<set $nc_moonshine_prod_speed = 0>>
<<set $nc_moonshine_prod = 0>>
<<set $nc_moonshine_amount = 0>>
<<set $dark_alleys_sluts = 0>>
/* Band */
<<set $p_boss = false>>
<<set $boss_type = "Bandit Boss">>
<<set $boss_rep_lose = 0>>
<<set $band_strength = 0>>
<<set $band_war_progress = 0>>
<<set $band_war_needed_progress = 0>>
<<set $band_war_max_progress = 0>>
<<set $band_war_progress_speed = 0>>
<<set $band_name = "Band">>
<<set $original_band_name = $band_name>>
<<set $band_type = "Street Gang">> /* Street Gang */
<<set $band_morale = 50>>
<<set $morale_mod = 1>>
<<set $band_morale_mod_payday = 0>>
<<set $band_morale_mod_bt = -1>>
<<set $band_morale_nc = 0>>
<<set $band_universal_mod = 0>>
<<set $right_hand = { name: "", nickname: "",}>>
<<set $band_right_hand = false>>
<<set $thiefs_amount = 0>>
<<set $scouts_amount = 0>>
<<set $drug_dealers_amount = 0>>
<<set $band_drug_dealers_auto = false>>
<<set $steroid_dealers_amount = 0>>
<<set $band_steroid_dealers_auto = false>>
<<set $coin_washers_amount = 0>>
<<set $hooks_on = true>>
<<set $hooks_amount = 0>>
<<set $hooks_productivity = 0>>
<<set $hook_progress = 0>>
<<set $scout_intel = 0>>
<<set $theft_progress = 0>>
<<set $thieves_productivity = 0>>
<<set $theft_bt = 1>>
<<set $band_payment = 60>>
<<set $code_cd = 0>>
<<set $chauffeur = false>>
<<set $sluts_bt = 1>>
<<set $sabo_active = false>>
<<set $sabo_type = "">>
<<set $enemy_sabo = 0>>
<<set $heist_progress_mod = 0>>
<<set $crew_driver = false>>
<<set $crew_driver_skill = 0>>
<<set $crew_main_gunner = false>>
<<set $crew_main_gunner_skill = 0>>
<<set $crew_second_gunner = false>>
<<set $crew_second_gunner_skill = 0>>
<<set $crew_safecracker = false>>
<<set $crew_safecracker_skill = 0>>
<<set $band_event_cd = 0>>
<<set $band_event = false>>
<<set $band_first_event = false>>
<<set $band_events = [
"solid_hustle", "den_problem", "arming", "argument", "troublemaker",
]>>
<<set $event_arming_on = false>>
<<set $warehouse_raid_cd = 0>>
/* Operations & Quests */
<<set $burglar_quest = 0>>
<<set $distributor_hackers = 0>>
<<set $gangs_racketeer = false>>
<<set $mafia_wreck = false>>
<<set $heist_progress = 0>>
<<set $heist_progress_needed = 0>>
<<set $heist_type = "">>
<<set $heist_difficulty = 0>>
<<set $heist_mistakes = 0>>
<<set $hackers_intel = false>>
<<set $banker_intel = false>>/* Misc */
<<newinv $pawnshop>>
<<newinv $melee_stash>>
<<newinv $range_stash>>
<<newinv $distributor>>
<<newinv $mafia_trade>>
<<newinv $farm_setup>>
<<pickup $farm_setup "Kakoshicoin Farm Kit" 1>>
<<newinv $dark_alleys_dealer>>
<<pickup $dark_alleys_dealer "Steroids" 1 "Drugs" 1 "Aphrodisiac" 1>>
<<newinv $heist_equipment_items>>
<<newinv $heist_equipment_cars>>
<<newinv $heist_equipment_range>>
<<newinv $heist_crew>>
<<newinv $heist_crew_needed>>
<<newinv $heist_equipment_craft_items>>
/* Craft */
<<newinv $drugs_craft>>
<<pickup $drugs_craft "Chems A" 2 "Chems B" 1 "Paper" 1>>
<<newinv $steroids_craft>>
<<pickup $steroids_craft "Chems B" 2 "Organic Materials" 1 "Materials for Encapsulation" 1>>
<<newinv $aphrodisiac_craft>>
<<pickup $aphrodisiac_craft "Chems A" 1 "Organic Materials" 2 "Materials for Encapsulation" 1>>
<<newinv $moonshine_craft>>
<<pickup $moonshine_craft "Organic Materials" 1 "Agricultural Products" 2>>
<<newinv $encapsulation_craft>>
<<pickup $encapsulation_craft "Agricultural Products" 2>>
/* for .compare so it always requires a minimum amount of items on hand. */
<<newinv $distributor_quest>>
<<pickup $distributor_quest "Electrical Components" 10>>
<<newinv $gym_steroids>>
<<pickup $gym_steroids "Steroids" 10>>
<<newinv $nightclub_drugs>>
<<pickup $nightclub_drugs "Drugs" 20>>
<<newinv $stripclub_aphrodisiac>>
<<pickup $stripclub_aphrodisiac "Aphrodisiac" 8>>
<<newinv $bar_moonshine>>
<<pickup $bar_moonshine "Moonshine" 5>>
/* random cargo order */
<<newinv $order_1_inv>>
<<newinv $order_2_inv>>
<<newinv $order_3_inv>>
/* UNUSED */
<<newinv $banana_republic_order>>
<<pickup $banana_republic_order "Weapons Shipment" 3>>
<<newinv $brothel_order>>
<<pickup $brothel_order "Aphrodisiac Shipment" 3>>
<<newinv $pimp_order>>
<<pickup $pimp_order "Aphrodisiac Shipment" 2 "Drugs Shipment" 2>>
<<newinv $sport_order>>
<<pickup $sport_order "Steroids Shipment" 3>>
<<newinv $ghetto_order>>
<<pickup $ghetto_order "Weapons Shipment" 1 "Drugs Shipment" 2 "Stolen Goods Shipment" 1>>
<<newinv $pawnshop_order>>
<<pickup $pawnshop_order "Stolen Good Shipment" 3>>
<<newinv $drugs_order>>
<<pickup $drugs_order "Aphrodisiac Shipment" 1 "Steroids Shipment" 1 "Drugs Shipment" 1>>
/* Stuff for NPC trading */
<<newinv $chemist_offer>>
<<pickup $chemist_offer "Chems A" 1 "Chems B" 1 "Materials for Encapsulation" 1>><<widget "money">>\
<<set $money = Math.clamp($money + _args[0], 0, Infinity)>>\
<<replace "#money">><<= $money>>$<</replace>>\
<</widget>>\
<<widget "moneynoreplace">>\
<<set $money = Math.clamp($money + _args[0], 0, Infinity)>>\
<</widget>>\
<<widget "clock">>\
<<run $gameDate.setMinutes($gameDate.getMinutes() + $args[0])>>\
<<replace ".sidebar_time">><<time24hr>>\<</replace>>\
<</widget>>\
<<widget "dirty_money">>\
<<set $dirty_money to Math.clamp($dirty_money + _args[0], 0, Infinity)>>\
<<if $dirty_money > 0>>\
<<replace "#dirty_money">><<=$dirty_money>>$<</replace>> \
<</if>>\
<</widget>>\
<<widget "count_morale_change">>\
<<set _morale_change = ($band_morale_mod_bt + $band_morale_mod_payday + $band_universal_mod + $band_morale_nc)>>\
<</widget>>\
<<widget "morale">>\
<<set $band_morale = Math.clamp($band_morale + _args[0], 0, 100)>>\
<</widget>>\
<<widget "nc_pop">>\
<<set $nc_pop = Math.clamp($nc_pop + _args[0], 0, 100)>>\
<</widget>>\
<<widget "nc_capacity_drinks">>\
<<set $nc_capacity_drinks = Math.clamp($nc_capacity_drinks + _args[0], 0, 10000)>>\
<</widget>>\
<<widget "nc_capacity_drugs">>\
<<set $nc_capacity_drugs = Math.clamp($nc_capacity_drugs + _args[0], 0, 10000)>>\
<</widget>>\
<<widget "brothel_capacity_aphrodisiac">>\
<<set $brothel_capacity_aphrodisiac = Math.clamp($brothel_capacity_aphrodisiac + _args[0], 0, 5000)>>\
<</widget>>\
<<widget "heist_progress">>\
<<set $heist_progress = Math.clamp($heist_progress + _args[0], 0, $heist_progress_needed)>>\
<</widget>>\
<<widget "mafia_str">>\
<<set $mafia_str = Math.clamp($mafia_str + _args[0], 7000, 10500)>>\
<</widget>>\
<<widget "gangs_str">>\
<<set $gangs_str = Math.clamp($gangs_str + _args[0], 2500, 5000)>>\
<</widget>>\
<<widget "bikers_str">>\
<<set $bikers_str = Math.clamp($bikers_str + _args[0], 14000, 20500)>>\
<</widget>>\
<<widget "stam">>\
<<set $stam = Math.clamp($stam + _args[0], 0, Infinity)>>\
<<replace "#stam">><<= $stam>><</replace>>\
<</widget>>\
<<widget "roll">>\
<<set _random = random(0, 20)>>\
<</widget>>\
<<widget "count_lab_production_speed">>\
<<silently>>\
<<if $p_lab_nc_prod == false>>
<<set $lab_prod_speed = ($chemist * $lab_production_mod) * $lab_production_mod_bt>>
<<elseif $p_lab_nc_prod == true>>
<<set $lab_prod_speed = ($chemist * $lab_production_mod) * $lab_production_mod_bt>>
<<set $nc_lab_prod = Math.trunc(($lab_prod_speed / 100) * $nc_lab_percentage)>>
<<set $lab_prod_speed = $lab_prod_speed - $nc_lab_prod>>
<</if>>
<</silently>>\
<</widget>>\
<<widget "depravity">>\
<<set $p_depravity = Math.clamp($p_depravity + _args[0], 0, 30)>>\
<</widget>>\
<<widget "count_war_progress_speed">>\
<<set $band_war_progress_speed = Math.trunc(($band_strength - $band_enemy_strength) / 15)>>\
<<set $band_war_progress_speed = Math.clamp($band_war_progress_speed, 0, $band_war_max_progress)>>\
<</widget>>\
<<widget "count_str">>\
<<set _amount_str = 0>>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<set _amount_str += $accomplices_list[_i].combat>>\
<<set $band_strength = _amount_str * 25>>\
<</for>>
<</widget>>\
<<widget "band_payday">>\
<<set _band_payday = 0>>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].pos>>\
<<switch $accomplices_list[_i].pos>>\
<<case "Right Hand">>\
<<set _band_payday += 100>>\
<<case "Thief">>\
<<set _band_payday += 110>>\
<<case "Chauffeur">>\
<<set _band_payday += 70>>\
<<case "Scout">>\
<<set _band_payday += 120>>\
<<case "Drug Dealer">>\
<<set _band_payday += 200>>\
<<case "Steroid Dealer">>\
<<set _band_payday += 250>>\
<<case "Coin Washer">>\
<<set _band_payday += 135>>\
<<case "Hook">>\
<<if $hooks_on == true>>\
<<set _band_payday += 140>>\
<</if>>\
<</switch>>\
<<else>>\
<<set _band_payday += $band_payment>>\
<</if>>\
<</for>>
<<set _band_payday = _band_payday * $morale_mod>>\
<<set _band_payday = Math.trunc(_band_payday)>>\
<</widget>>\
<<widget "money_penalty">>\
<<if $money >= 250000>>\
<<set _money_random = random(30000, 50000)>>\
You've lost _money_random​$.\
<<elseif $money >= 150000>>\
<<set _money_random = random(23000, 33000)>>\
You've lost _money_random​$.\
<<elseif $money >= 100000>>\
<<set _money_random = random(15000, 22000)>>\
You've lost _money_random​$.\
<<elseif $money >= 70000>>\
<<set _money_random = random(11000, 17000)>>\
You've lost _money_random​$.\
<<elseif $money >= 40000>>\
<<set _money_random = random(6000, 10000)>>\
You've lost _money_random​$.\
<<elseif $money >= 20000>>\
<<set _money_random = random(3000, 6000)>>\
You've lost _money_random​$.\
<<elseif $money >= 10000>>\
<<set _money_random = random(1000, 3000)>>\
You've lost _money_random​$.\
<<elseif $money >= 5000>>\
<<set _money_random = random(500, 1500)>>\
You've lost _money_random​$.\
<<elseif $money >= 2000>>\
<<set _money_random = random(400, 800)>>\
You've lost _money_random​$.\
<<else>>\
<<set _money_random = 0>>\
You have nothing to lose anyway...\
<</if>>\
<<money `-_money_random`>>\
<</widget>>\
<<widget "warehouse_penalty">>\
<<if $warehouse_inv.length >= 20>>\
<<set _lost_shipment_0 = either($warehouse_inv.array)>>\
<<drop $warehouse_inv _lost_shipment_0 1>>\
<<set _lost_shipment_1 = either($warehouse_inv.array)>>\
<<drop $warehouse_inv _lost_shipment_1 1>>\
<<set _lost_shipment_2 = either($warehouse_inv.array)>>\
<<drop $warehouse_inv _lost_shipment_2 1>>\
<<set _lost_shipment_3 = either($warehouse_inv.array)>>\
<<drop $warehouse_inv _lost_shipment_3 1>>\
You've lost _lost_shipment_0, _lost_shipment_1, _lost_shipment_2 and _lost_shipment_3.\
<<elseif $warehouse_inv.length >= 10>>\
<<set _lost_shipment_0 = either($warehouse_inv.array)>>\
<<drop $warehouse_inv _lost_shipment_0 1>>\
<<set _lost_shipment_1 = either($warehouse_inv.array)>>\
<<drop $warehouse_inv _lost_shipment_1 1>>\
<<set _lost_shipment_2 = either($warehouse_inv.array)>>\
<<drop $warehouse_inv _lost_shipment_2 1>>\
You've lost _lost_shipment_0, _lost_shipment_1 and _lost_shipment_2.\
<<elseif $warehouse_inv.length >= 5>>\
<<set _lost_shipment_0 = either($warehouse_inv.array)>>\
<<drop $warehouse_inv _lost_shipment_0 1>>\
<<set _lost_shipment_1 = either($warehouse_inv.array)>>\
<<drop $warehouse_inv _lost_shipment_1 1>>\
You've lost _lost_shipment_0 and _lost_shipment_1.\
<<elseif $warehouse_inv.length >= 1>>\
<<set _lost_shipment_0 = either($warehouse_inv.array)>>\
<<drop $warehouse_inv _lost_shipment_0 1>>\
You've lost _lost_shipment_0.\
<<else>>\
But there were no shipments in your warehouse anyway. \
<</if>>\
<</widget>>\
<<widget "rep_loss">>\
<<silently>>\
<<if $reputation >= 15000>>
<<set $reputation -= 800>>
<<elseif $reputation >= 10000>>
<<set $reputation -= 600>>
<<elseif $reputation >= 7000>>
<<set $reputation -= 400>>
<<elseif $reputation >= 4000>>
<<set $reputation -= 300>>
<<else>>
<<set $reputation -= 200>>
<</if>>\
<</silently>>\
<</widget>>\
<<widget "apply_all_stats">>\
<<set $energy = ($base_energy + $energy_mod_boss + $energy_mod_car)>>
<<set $stam = $energy>>
<<set $charm = ($charm_base + $bonus_charm_style + $bonus_charm_slut + $charm_mod_boss)>>\
<<set $cun = ($cun_base + $cun_mod_boss + $cun_scout_mod)>>
<<set $combat = ($combat_base + $combat_mod_boss + $combat_mod_training)>>
<<set $combat_stamina = $combat_stamina_base>>
<<set $p_hp_max = ($health_base + $health_traits_mod + $health_training_mod)>> /* for health meter */
<<set $p_hp = ($health_base + $health_traits_mod + $health_training_mod)>>
<</widget>>\
<<widget "recount_crypto">>\
<<silently>>\
<<set $farm_tax = $installed_farm * 40>>
<<set $farm_earnings = $installed_farm * 50>>
<<set _potential_income = (($farm_mod * 100) * $installed_farm)>>\
<</silently>>\
<</widget>>\<style>
body::before {
content: '';
background-image: url("img/background/home/sleep.webp");
inset: 0;
position: fixed;
background-size: cover;
filter:grayscale(90%);
}
</style>\
<<silently>>\
<<if $gigs_cd > 0>>
<<set $gigs_cd -= 1>>
<</if>>
<</silently>>\
<<include "Earnings and Spendings NewDay">>\
<<if $p_boss == true>>\
<<include "Band NewDay">>\
<</if>>
<<if $p_lab == true || $moonshine_trailer == true>>\
''Production'':
<<lab_production>>\
<<if _moonshine_autobuy_fail == false>>\
You bought _moonshine_autobuy_amount liters of mats for your moonshiners.
<<elseif _moonshine_autobuy_fail == true>>\
You didn't had enough money for moonshine mats autobuy.
<</if>>\
<<if _moonshine_cycle > 0>>\
Amount of moonshine production cycles: _moonshine_cycle.
<<if _moonshine_no_place == true>>\
''You have nowhere to stash your shipments! It was wasted!''
<</if>>\
<</if>>\
<<if _moonshine_no_mats == true>>\
''You have no mats for new moonshine cycle!''
<</if>>\
<<if _moonshine_club_no_mats == true>>\
''You have no mats for new moonshine cycle for your club!''
<</if>>\
<<if _nc_moonshine_cycle > 0>>\
<<set _amount_of_moonshine_delivered = _nc_moonshine_cycle * 250>>\
<<nc_capacity_drinks `_amount_of_moonshine_delivered`>>\
Amount of moonshine delivered to the $nc_name: _amount_of_moonshine_delivered liters.
<</if>>\
<</if>>\
''Misc info'':
<<if $equip.anus>>\
You feel yourself kinky.
<<else>>\
<<set $p_depravity -= 1>>\
<</if>>\
<<if $orders_reset > 0>>\
Days till new orders at outskirts Landing Strip: $orders_reset.
<</if>>\
<<if $money < 0 || $money == 0>>\
''You're out of money! Bank gave you an emergency 1000$ loan. You need to pay it asap or you'll gonna face a consequences!''
<<set $money = 1000>>\
<<set $total_gained += 1000>>\
<<set $bank_credit_1 = 1200>>\
<<if $p_boss == true>>\
<<morale `-10`>>\
<</if>>\
<</if>>\
<<if $money == 0 && $bank_credit_1 > 0>>\
''You failed to repay a bank loan. This severely damaged your reputation.''
<<set $reputation -= 1500>>\
<</if>>\
\
<<include "Shops NewDay">>\
<<include "NPC NewDay">>\
<<include "TraitsProgress">>\
<<if $custody_term == 0>>\
<<include "Player NewDay">>\
<<else>>\
<<include "Custody NewDay">>\
<</if>>\
<<set $total_gained = 0>>\
<<set $total_gained_dirty = 0>>\
<<set $total_loss = 0>>\
<<set $total_washed = 0>>\
<<notify 5s>>Autosaved.<</notify>> New City Center of $city_name. A sleek, modern district thrown together in record time, rising from old Downtown’s shadow. Bright lights, polished streets, and ever-watchful police keep everything in check. It’s the city’s new pride - clean and nice,
<<if $gameDate.getHours() >= 8 && $gameDate.getHours() <= 20>>\
<<in_link>><<link "Visit the <strong>city bank</strong>." "City Bank">>
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/bank.png"/></span><</in_link>>
<<else>>\
<span class="not_available">Bank is opened only during a day.</span>
<</if>>\
\
<<if $gameDate.getHours() >= 8 && $gameDate.getHours() <= 22>>\
<<in_link>><<link "Stroll around the local <strong>mall</strong>." "Mall">>
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/mall.png"/></span><</in_link>>
<<else>>\
<span class="not_available">Mall is opened only during a day.</span>
<</if>>\
\
<<if $money >= 30 && $reputation >= 500>>\
Pay 30$ and visit the <<in_link>><<link '"<strong>Greenie Park</strong>".' "Central Park">>
<<addmins 15>>\
<<money `-30`>>\
<</link>><span class="icon_link"><img src="img/UI/icons/park.png"/></span><</in_link>>
<<elseif $reputation < 500>>\
<span class="not_available"> Park area is closed right now. Some kind of high-profile crime took place on its territory.</span>
<<elseif $money < 30>>\
<span class="not_available"> You could visit the Greenie Park, the pride of the city... if you had atleast 30$. Yeah, its paywalled.</span>
<</if>>\
\
<<in_link>><<link 'You may try your luck in "<strong>Crown Casino</strong>."' "Casino">>
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/casino.png"/></span><</in_link>>
<<if $night_club == true>>\
Enter yours <<biz_link>><<link '"$nc_name"' "NightClub PC">>
<<addmins 15>>\
<</link>><span class="icon_link"><img src="img/UI/icons/discoball.png"/></span><</biz_link>>
<<else>>\
<span class="not_available">There’s also a building with a dimmed neon sign that reads "Swaying Bazongas", clearly a former nightclub, you see the</span><<action_link>><span class="action_link"><<link "number of landlord.">><<script>> Dialog.setup("Call"); Dialog.wiki(Story.get("Construction Call 2").processText()); Dialog.open(); <</script>><</link>></span><</action_link>>
<</if>>\
\
<<if $gameDate.getHours() >= 22 || $gameDate.getHours() <= 4>>\
<<if $p_inv.has("Car Opening Tools") && $stam >= 1>>\
You may <<cun_link>><<link "try to steal a car" "Motor Vehicle Theft">><<stam `-1`>><<addhours 1>><<set $target_car = $center_cars.array.random()>><</link>><</cun_link>> from parking lots.
<<if $gig_car_steal_active == true>>\
<<cun_link>><<link "Try to find your target-car.">>\
<<if $gig_car_steal_loc == "center">>\
<<addhours 1>>\
<<stam `-1`>>\
<<goto "Motor Vehicle Theft Gig">>\
<<else>>\
<<addhours 1>>\
<<run Engine.show()>>\
<<notify 4s>>Seems like it's a wrong district, you just lost some time and that's it...<</notify>>\
<</if>>\
<</link>><</cun_link>>
<</if>>\
<<else>>\
<span class="not_available">You are either too tired or don't have a tools for a car theft.</span>
<</if>>\
<<else>>\
<span class="not_available">Wait for the night if you wanna try a car theft. Don't forget your tools.</span>
<</if>>\
<<out_link>><<link "Get back home" "Home">>
<<addmins 30>>
<</link>><</out_link>>
<<open_map>><<set $name = ["Max", "Zak", "Freddie", "Nicholas", "Jonathan", "Juan", "Jerome", "Alfredo", "Ayaan", "Jude", "Henry", "Arthur", "Taylor", "Beckett", "Sania", "Luka", "Jaxton", "Andrey", "Lawson", "Gibson", "Anton", "Andrew", "Riley", "Joshua", "Ollie", "Dominique", "Ari", "Solomon", "Andy", "Timmy", "Finley", "James", "Ethan", "Lucas", "Jackson", "Logan", "Mason", "Oliver", "Benjamin", "Elijah", "Aiden", "Daniel", "Matthew", "Henry", "Joseph", "David", "Michael", "John", "William", "Alexander", "Sebastian", "Jack", "Owen", "Jacob", "Samuel", "Evan", "Isaiah", "Charles", "Ryan", "Caleb", "Levi", "Luke", "Nolan", "Asher", "Gabriel", "Isaac", "Liam", "Matthew", "Maverick", "Zachary", "Theo", "Julian", "Hudson", "Austin", "Xavier", "Adrian", "Grayson", "Wyatt", "Santiago", "Connor", "Jaxon", "Dylan", "Kai", "Carter", "Anthony", "Jasper", "Leo", "Nathan", "Robert", "Eli", "Joshua", "Miles", "Andrew", "Christian", "Thomas", "Henry", "Landon", "Jameson", "Maddox", "Cameron", "Silas", "Emmett", "Gage", "Sawyer", "Harrison", "Jaxon", "Bentley", "Braxton", "Ezekiel", "Xander", "Kai", "Brody", "Jaxson", "Paxton", "Ryder", "Colton", "Everett", "Riley", "Elliot", "Waylon", "Reed", "Theo", "Eli", "George", "Zane", "Tucker", "Easton", "Kaden", "Nash", "Huck", "Bennett", "Sullivan", "Graham", "Brayden", "Beau", "Ronan", "Weston", "Dawson", "Rhett", "Finley", "Cullen", "Cash", "Jude", "Vance", "Huxley", "Kellan", "Jett", "Zachariah", "Wesley", "Milo", "Knox", "Jasper", "Brooks", "Quinn", "Phoenix", "Kai", "Landry", "Wilder", "Stellan", "Duke", "Wayne", "Crew", "Reagan", "Archer", "Nolan", "Zane", "Brandon", "Dominic", "Felix", "Marcus", "Lorenzo", "Roman", "Axel", "Damian", "Elias", "Gavin", "Theo", "Vincent", "Tobias", "Grant", "Dean", "Clark", "Simon", "Ezra", "Matteo", "Oscar", "Diego", "Leandro", "Troy", "Chase", "Alec", "Jonas", "Marshall", "Colin", "Keegan", "Spencer", "Reid", "Dante", "Malcolm", "Blaine", "Orion", "Finn", "Curtis", "Derek", "Kairos", "Rafael", "Tanner", "Myles", "Sergio", "Kobe", "Mitchell", "Tate", "Dustin", "Raymond", "Barrett", "Russell", "Abram", "Bennett", "Cedric", "Dorian", "Franklin", "Grady", "Harvey", "Jeremiah", "Kian", "Lawrence", "Maximus", "Nico", "Quentin", "Sterling", "Trevor", "Victor", "Warren", "Zeke", "Zander", "Emerson", "Orlando", "Pierce", "Sebastien", "Tristan", "Ulysses", "Wilson", "Zion", "Abram", "Bo", "Cedric", "Dalton", "Edwin", "Frank", "Geoffrey", "Harley", "Ismael", "Jared", "Keith", "Lachlan", "Marco", "Nathaniel", "Otto", "Preston", "Ronin", "Santos", "Tobias", "Vaughn", "Walker", "Xander", "Yusuf", "Zacharias", "Vasya", "Roma", "Vlad", "Ivan", "Anton", "Kostyan", "Pahom", "Oleg", "Danil", "Abel", "Adriel", "Alaric", "Amos", "Anders", "Apollo", "August", "Basil", "Beckham", "Blake", "Boone", "Briggs", "Callum", "Caspian", "Cassius", "Cillian", "Cyrus", "Damon", "Desmond", "Douglas", "Duke", "Edgar", "Edison", "Emil", "Erik", "Fletcher", "Forrest", "Frederick", "Gideon", "Giovanni", "Greyson", "Hector", "Hugh", "Ibrahim", "Irvin", "Ivan", "Jalen", "Javier", "Jay", "Joaquin", "Kane", "Kenzo", "Killian", "Kingsley", "Kirk", "Kolton", "Kyler", "Langston", "Leif", "Leon", "Louis", "Lucian", "Magnus", "Marvin", "Maverick", "Maxwell", "Micah", "Montgomery", "Nehemiah", "Nelson", "Nixon", "Oakley", "Odin", "Orson", "Pablo", "Patton", "Porter", "Quincy", "Ramon", "Remington", "Rhett", "Ridge", "Rio", "Robin", "Rocco", "Roland", "Royce", "Samson", "Saul", "Skylar", "Soren", "Stetson", "Sylas", "Toby", "Tomas", "Turner", "Tyson", "Uriah", "Vicente", "Westley", "Winston", "Xavi", "Yahir", "Zaid", "Zyon", "Zebulon", ]>>
<<set $name_fem = ["Emma", "Olivia", "Ava", "Isabella", "Sophia", "Mia", "Charlotte", "Amelia", "Harper", "Evelyn", "Abigail", "Emily", "Ella", "Elizabeth", "Camila", "Luna", "Sofia", "Avery", "Mila", "Aria", "Scarlett", "Penelope", "Layla", "Chloe", "Victoria", "Madison", "Eleanor", "Grace", "Nora", "Riley", "Zoey", "Hannah", "Hazel", "Lily", "Ellie", "Violet", "Lillian", "Addison", "Willow", "Lucy", "Paisley", "Stella", "Natalie", "Zoe", "Leah", "Audrey", "Brooklyn", "Savannah", "Bella", "Claire", "Skylar", "Aaliyah", "Sadie", "Genesis", "Allison", "Gabriella", "Anna", "Serenity", "Autumn", "Ruby", "Ariana", "Caroline", "Aurora", "Madelyn", "Cora", "Melanie", "Eva", "Naomi", "Alice", "Ivy", "Kinsley", "Hailey", "Elena", "Sarah", "Ariel", "Piper", "Quinn", "Juliana", "Jade", "Delilah", "Sophie", "Josephine", "Clara", "Vivian", "Nevaeh", "Eliana", "Maya", "Madeline", "Brielle", "Reagan", "Peyton", "Rylee", "Samantha", "Liliana", "Adeline", "Lydia", "Jasmine", "Isla", "Taylor", "Charlie", "Esther", "Genevieve", "Valentina", "Raelynn", "Arya", "Aubrey", "Brianna", "Mackenzie", "Brooke", "Leilani", "Sydney", "Eliza", "Georgia", "Reese", "Iris", "Ximena", "Amaya", "Anastasia", "Isabel", "Margot", "Emery", "Alyssa", "Maria", "Kimberly", "Juniper", "Eden", "Fiona", "Sienna", "Angela", "Rosalie", "Adriana", "Ainsley", "Alana", "Alina", "Amira", "Anaya", "Angelina", "Annabelle", "Annalise", "Arabella", "Ariella", "Ashlyn", "Aspen", "Bianca", "Blake", "Bridget", "Brynn", "Cali", "Callie", "Carmen", "Cassidy", "Catalina", "Cecilia", "Celeste", "Chelsea", "Colette", "Dahlia", "Daniella", "Daphne", "Demi", "Diana", "Dixie", "Emelia", "Esme", "Esmeralda", "Evangeline", "Francesca", "Freya", "Gianna", "Giselle", "Gracie", "Greta", "Hadley", "Haley", "Harlow", "Harmony", "Hattie", "Heidi", "Holly", "Hope", "Ingrid", "Jacqueline", "Jayla", "Jemma", "Jessica", "Joanna", "Joy", "Juliette", "Kaia", "Kaitlyn", "Kalani", "Kara", "Kathryn", "Kayla", "Keira", "Kendall", "Kenzie", "Kira", "Lainey", "Lana", "Laura", "Lauren", "Leila", "Lexi", "Lila", "Lilliana", "Logan", "Lorelai", "Louisa", "Lucille", "Luna", "Mae", "Maisie", "Mallory", "Mara", "Margaret", "Mariana", "Marlee", "Marley", "Mckenna", "Megan", "Miranda", "Molly", "Noelle", "Nyla", "Olive", "Ophelia", "Paige", "Paloma", "Phoebe", "Raven", "Regina", "Remi", "Rosa", "Rose", "Rosie", "Rowan", "Ruth", "Sabrina", "Selena", "Serena", "Shelby", "Skye", "Talia", "Teagan", "Tessa", "Thea", "Trinity", "Vera", "Veronica", "Violet", "Viviana", "Winter", "Wren", "Yara", "Zara", "Abby", "Adele", "Alayah", "Alejandra", "Alessandra", "Aliyah", "Alondra", "Amelie", "Amina", "Ana", "Angelica", "Anika", "Annika", "Arden", "Arielle", "Aubriella", "Bailey", "Baylor", "Beatrice", "Blair", "Bria", "Brittany", "Cambria", "Camille", "Cara", "Carina", "Carla", "Carly", "Carter", "Charlee", "Chelsea", "Chloe", "Christina", "Ciara", "Clarissa", "Corinne", "Dakota", "Daleyza", "Danica", "Danielle", "Darian", "Daya", "Dior", "Drew", "Eden", "Eileen", "Elisa", "Ellianna", "Elsa", "Elyse", "Ember", "Emory", "Erin", "Estella", "Evie", "Farrah", "Fernanda", "Frida", "Galilea", "Gemma", "Gloria", "Grecia", "Guadalupe", "Gwen", "Halle", "Helena", "Holland", "Iliana", "Irene", "Itzel", "Ivanna", "Ivory", "Jada", "Jaliyah", "Janelle", "Jayda", "Jayleen", "Jaylin", "Jazlyn", "Jocelyn", "Julissa", "Justice", "Kalia", "Karla", "Kayleigh", "Kaylie", "Kiana", "Kimora", "Kinslee", "Kira", "Kylee", "Kyra", "Lacey", "Landry", "Laney", "Lennon", "Leslie", "Libby", "Lilia", "Lillie", "Liv", "Loretta", "Lucia", "Lyric", "Mabel", "Madelynn", "Maeve", "Maia", "Makenna", "Malaysia", "Marceline", "Marguerite", "Matilda", "Mavis", "Meadow", "Meredith", "Millie", "Monica", "Myla", "Nadia", "Nancy", "Naya", "Neriah", "Noemi", "Oakley", "Octavia", "Patricia", "Perla", "Presley", "Raegan", "Raquel", "Rayna", "Reina", "Renata", "Roselyn", "Saoirse", "Scout", "Shay", "Shiloh", "Sierra", "Simone", "Stevie", "Sylvia", "Tatiana", "Tiffany", "Vada", "Vienna", "Whitney", "Xiomara", "Yaretzi", "Yesenia", "Yvette", "Zelda", "Zuri", "Zoie",]>>
<<set $surname = ["Wright", "Hamilton", "Stone", "Bennet", "Pizdec", "Roberts", "Mckee", "Bentley", "Gilbert", "Santos", "Wade", "Graves", "Warner", "Peterson", "Kelly", "Allen", "Saunders", "Baker", "Potter", "Miner", "Goodman", "Miller", "Wood", "Smith", "Johnson", "Williams", "Jones", "Brown", "Davis", "Miller", "Wilson", "Moore", "Taylor", "Anderson", "Thomas", "Jackson", "White", "Harris", "Martin", "Thompson", "Garcia", "Martinez", "Robinson", "Clark", "Rodriguez", "Lewis", "Lee", "Walker", "Hall", "Allen", "Young", "Hernandez", "King", "Wright", "Lopez", "Hill", "Scott", "Green", "Adams", "Baker", "Gonzalez", "Nelson", "Carter", "Mitchell", "Perez", "Roberts", "Turner", "Phillips", "Campbell", "Parker", "Evans", "Edwards", "Collins", "Stewart", "Morris", "Rogers", "Reed", "Cook", "Morgan", "Bell", "Murphy", "Bailey", "Rivera", "Cooper", "Richardson", "Cox", "Howard", "Ward", "Torres", "Peterson", "Gray", "Ramirez", "James", "Watson", "Brooks", "Kelly", "Sanders", "Price", "Bennett", "Wood", "Barnes", "Ross", "Henderson", "Cole", "Jenkins", "Perry", "Powell", "Long", "Patterson", "Hughes", "Flores", "Washington", "Butler", "Simmons", "Foster", "Gonzales", "Bryant", "Alexander", "Russell", "Griffin", "Diaz", "Hayes", "Myers", "Freeman", "Webb", "Wells", "Woods", "Jordan", "Sullivan", "Kennedy", "Warren", "Coleman", "West", "Jordan", "Hunter", "Hicks", "Crawford", "Barnett", "Armstrong", "Barber", "Black", "Blair", "Boone", "Bradley", "Burns", "Carlson", "Chapman", "Curtis", "Daniels", "Delgado", "Dixon", "Douglas", "Duncan", "Elliott", "Ferguson", "Fleming", "Ford", "Franklin", "Glover", "Graham", "Griffith", "Hanson", "Hardy", "Hart", "Hawkins", "Holland", "Hopkins", "Hudson", "Ingram", "Jennings", "Knight", "Lambert", "Lawrence", "Lloyd", "Lynch", "Matthews", "McDonald", "McKenzie", "Mendoza", "Moss", "Newman", "Newton", "Norris", "Ortiz", "Palmer", "Payne", "Porter", "Ramsey", "Reeves", "Rhodes", "Rice", "Romero", "Schneider", "Sharp", "Shelton", "Sherman", "Simon", "Snyder", "Spencer", "Stanley", "Swanson", "Tate", "Thornton", "Todd", "Vargas", "Vaughn", "Walsh", "Weaver", "Wilkins", "Williamson", "Wise", "Wolfe", "York", "Zimmerman", "Alvarez", "Andreev", "Antonov", "Barrera", "Baranov", "Beltran", "Bogdanov", "Borisov", "Castillo", "Chernov", "Cisneros", "Dominguez", "Dragunov", "Duarte", "Espinoza", "Fedorov", "Fernandez", "Galarza", "Gerasimov", "Gomez", "Gonzalo", "Grigorev", "Guerrero", "Hernandez", "Iglesias", "Ivanov", "Jimenez", "Kozlov", "Kuznetsov", "Lazarev", "Lebedev", "Lozano", "Luna", "Makarov", "Maldonado", "Medina", "Melendez", "Melnikov", "Mikhailov", "Molotov", "Morales", "Moreno", "Navarro", "Nikolaev", "Ortega", "Pavlov", "Pereira", "Pineda", "Ponce", "Popov", "Ramos", "Rangel", "Resendez", "Rivas", "Rodrigues", "Romanov", "Salazar", "Santiago", "Sidorov", "Silva", "Sokolov", "Solano", "Sorokin", "Suarez", "Tarasov", "Trejo", "Trujillo", "Ulyanov", "Valdez", "Vargas", "Vasilyev", "Vega", "Velasquez", "Vera", "Volkov", "Yakovlev", "Zamora", "Zarate", "Zhukov", "Zubkov",]>>
<<set $thug_nickname = ["Blaze", "Ramba", "Rambo", "Razor", "Viper", "Maverick", "Shadow", "Rebel", "Scorpion", "Tank", "Ace", "Rogue", "Smokey", "Jinx", "Steel", "Slash", "Nitro", "Bandit", "Gunsmoke", "Havoc", "Voodoo", "Striker", "Rattler", "Drake", "Ghost", "Frost", "Rage", "Savage", "Grim", "Bullet", "Crusher", "Hawk", "Slick", "Wolf", "Machete", "Spike", "Brimstone", "Dagger", "Fury", "Blitz", "Ryder", "Ninja", "Jaguar", "Shark", "Storm", "Phantom", "Hood", "Rusty", "Cobra", "Vandal", "Wraith", "Brawler", "Mondo", "Riot", "Jagger", "Vandal", "Mercenary", "Grit", "Talon", "Rampage", "Terror", "Rex", "Knuckles", "Outlaw", "Bones", "Razorback", "Havoc", "Slade", "Dynamo", "Grave", "Frostbite", "Torque", "Blade", "Shadow", "Nail", "Grit", "Havoc", "Stryker", "Debil", "Bashka", "Kosti", "Gvozd", "Terminator", "Pulya", "Vasyan", "Gigashpala", "Dolboyob", "Ubiyca", "Mavrusha", "Akula", "Serb", "Dronya", "Kulak", "Fist", "Geshka", "Pacanchik", "Muha", "Akkumulator", "Tuz", "Zliden", "Zloy", "Dyadya", "Papanya", "Prapor", "Antipetuh", "El Diablo", "Sombra", "El Lobo", "Fuego", "Toro", "Rayo", "El Halcón", "Bravo", "El Chacal", "Furia", "Rápido", "El Fantasma", "El Jefe", "Zorro", "El Fénix", "El Sádico", "Veneno", "Espada", "El Rápido", "Pupa", "Lupa", "Doter", "Andruha", "Zabiyaka", "Doter", "Terminator", "Ognemet", "Polkovnik", "Private", "Colonel", "Ice 9", "Killer228", "Domino", "Fishsticks", "Six", "Zero", "Voldemort", "Chillguy", "Eblan", "Mutant", "Robot-Dolbayob", ]>>
<<set $thief_nickname = ["Alohomora", "Lockpick", "Hood", "Flicker", "Murk", "Medvejatnik", "Safecracker", "Cracker", "Loot", "Wires", "Latchlock", "Vault", "Backdoor", "Keys", "Knob", "Nails", "Lift", "Vor", "Skimp", "Jammer", "Tapper", "Lockjaw", "Skyrim", "Borrower", "Sneaky Pete", "Snag", "Pocket Rocket", "The Decoy", "The Wiz", "Johnny Snatch", "Pocketwatch", "Five-finger", "Peek-a-boo", "Mr. Gone", "Tap and Go", "Elusive Joe", "Bag Grab", "Fleecy", "Mr. Pockets", "Whisk", "Handsfree", "Loose Change", "WaltzOff", "Flash Jack", "Glovey", "The Clip", "FastCash", "QuickFix", "Quickster", "Bag Nab", "Skedaddle", "Money Magnet", "Burgle Bill", "Nicker", "Picker", "Lightlift", "Pincher", "Slippery", "Heister", "Looter-grabber", "Pockettino", "Brodyaga", "Quick Creep", "Swiper", "Peek Thief", "Pickster", "Jiff Jack", "Zakonnik", "Ocular",]>>
<<set $slut_nickname = ["Angel", "Bella", "Sapphire", "Jade", "Raven", "Coco", "Luna", "Bliss", "Vixen", "Foxy", "Ruby", "Ava", "Paris", "Skye", "Misty", "Heaven", "Star", "Summer", "Lexi", "Nikki", "Roxy", "Honey", "Serena", "Lola", "Aria", "Sienna", "Daisy", "Jasmine", "Gigi", "Bambi", "Kiara", "Lia", "Diamond", "Cherry", "Chanel", "Kiki", "Nova", "Peaches", "Scarlett", "Roxanne", "Mia", "Ella", "Venus", "Savannah", "Ember", "Sasha", "Trixie", "Monroe", "Kitty", "Bianca", "Selena", "Zoey", "Jewel", "Dahlia", "Rosie", "Marina", "Nina", "Zara", "Alana", "Mandy", "Giselle", "Aurora", "Selene", "Tatiana", "Eve", "Vanessa", "Carmen", "Delilah", "Faye", "Harlow", "Juliette", "Leila", "Melody", "Sabrina", "Valeria", "Amber", "Electra", "Harmony", "Jayla", "Lila", "Marley", "Noelle", "Piper", "Raine", "Soleil", "Talia", "Valentina", "Zara", "Yara", "Esme", "Lilith", "Trinity", "Yasmine", "Ivory", "Baby", "Stella", "Amara", "Brandy", "Cassie", "Desiree", "Eden", "Felicity", "Gia", "Harper", "Ivy", "Jolene", "Kara", "Lacey", "Mila", "Naya", "Opal", "Pandora", "Quinn", "Ravenna", "Selina", "Tara", "Uma", "Valencia", "Wendy", "Xena", "Yvette", "Zinnia", "Ariel", "Britney", "Crystal", "Dakota", "Elyse", "Fawn", "Ginger", "Harley", "Imani", "Jessa", "Kendall", "Lillith", "Monica", "Natasha", "Olivia", "Paisley", "Queenie", "Rosalyn", "Samara", "Tiana", "Ursula", "Violet", "Willa", "Xandra", "Yasmin", "Zoelle", "Aspen", "Bree", "Celeste", "Demi", "Emilia", "Farrah", "Greta", "Hazel", "India", "Joy", "Kiera", "Lyric", "Maya", "Nicolette", "Odette", "Poppy", "Quiana", "Rhea", "Sable", "Thea", "Una", "Vera", "Willow", "Xia", "Zara", "Aurora", "Blythe", "Coral", "Dulce", "Elara", "Fiona", "Gloria", "Haven", "Indigo", "Jade", "Kylie", "Lulu", "Marlowe", "Neve", "Orchid", "Primrose", "Quincy", "Rihanna", "Simone", "Tessa", "Ulani", "Venus", "Winter", "Xylia", "Yara", "Zola"]>>
<<set $trait_downtown = ["Thug", "Nothing", "Thief"]>>
<<set $job_downtown = ["Taxi-driver", "Builder", "Salesman", "Farmer", "Jobless",]>>
<<set $job_fem_downtown = ["Saleswoman", "Hostess", "Jobless", "Barista", "Waitress",]>>
<<set $dt_mob_name = ["Thug", "Mob", "Cutthroat",]>>
<<set $trait_suburbs = ["Thug", "Nothing"]>>
<<set $job_suburbs = ["Taxi-driver", "Builder", "Salesman", "Hardware Engineer"]>>
<<set $gym_mob_name = ["Boxer", "Jock", "Athlete",]>>
<<set $trait_harbor = ["Thug", "Nothing", "Traveler", "Thief"]>>
<<set $job_harbor = ["Taxi-driver", "Builder", "Salesman", "Sailor", "Farmer", "Loader",]>>
<<set $darkalleys_mob_name = ["Narc", "Junkie", "Freak", "Junky", "Hophead"]>>
<<set $trait_center = ["Nothing", "Traveler"]>>
<<set $job_center = ["Lawyer", "Taxmen", "Salesman", "Chemist", "Hardware Engineer", "Businessman", "Banker"]>>
<<set $job_fem_center = ["Lawyer", "Saleswoman", "Chemist", "Model", "Nurse", "Writer", "Banker"]>>
<<set $npc_list = []>>
<<set $npc_fem_list = []>>
<<set $accomplices_list = []>>
<<set $sluts_list = []>>
<<set $active_npc ={}>>
<<set $jail_list = []>>
<<set $payment_reasons = ["student loan", "rental loan", "mortgage loan", "auto loan", "business loan", "HELOC", "credit loan", "bridge loan"]>>
<<set $male_npc_low_depravity = ["Hey... I don’t usually talk to strangers, but you seemed approachable.", "Hi. Sorry, I’m not great at this, but you looked like someone worth saying hi to.", "Uh, hey there. I was just wondering if you’re new around here?", "Hi... This place can feel a bit overwhelming sometimes, don’t you think?", "Hello. You seem like someone who knows their way around here. Any tips for a newcomer?", "Hey, I just thought I’d introduce myself. You don’t mind, do you?", "Hello... You’ve got a calm vibe. That’s rare in places like this.", "Hi. I’m not much of a socializer, but... here I am, giving it a shot.", "Hey... Do you ever feel like this place is louder than it needs to be?", "Hi there. Just thought I’d say hello. No pressure or anything.", "Hello... You’ve got that kind of energy that makes a place feel more chaotic.", "Hey. Do you usually come here alone, or am I lucky to catch you tonight?", "Hi there. I’m usually a quiet guy, but you seemed worth stepping out of my shell for.", "Hello. Just curious - what brings you to a place like this?", "Hey... You seem like someone who’d make a decent conversation partner. Am I right?", ]>>
<<set $fem_npc_low_depravity = ["Oh, hi... I’m not really used to striking up conversations, but you looked friendly.", "Hi there. Do you mind if I join you? It’s a bit crowded over there.", "Hello... Sorry if I’m interrupting. I just thought you seemed interesting.", "Hi. I’m not very good at this, but... how’s your night going so far?", "Hey... I’m new here. You seem like someone who might know the good spots.", "Hi... This place can be a bit much sometimes. Do you feel the same?", "Oh, hi. Sorry, I don’t mean to bother you. Just thought I’d say hi.", "Hello. I usually keep to myself, but you seemed like someone worth meeting.", "Hi there. You’ve got a nice vibe - mind if I sit here?", "Hi... Sorry, I don’t usually do this, but you seemed approachable.", "Oh, hi. You looked like someone who’s good at making strangers feel welcome.", "Hey there. Do you mind if I ask what brings you here tonight?", "Hello... I’m usually not this forward, but you seemed like someone I’d regret not meeting.", ]>>
<<set $male_npc_high_depravity = ["Hey there. You’ve got that ‘ready for trouble’ look. Am I wrong?", "Hi, gorgeous. What’s someone like you doing here all alone?", "Hey, you. Care for a little chat? Or should we skip straight to the good part?", "Well, well... Aren’t you a sight for sore eyes? Got time to chat?", "Hey, darling. You look like you could use a little fun tonight.", "Hi there. You’ve got that vibe I just couldn’t ignore. Care to join me?", "Hey, beautiful. What’s your poison tonight? Maybe I’ll make it worth your while.", "Well, hello there. You seem like someone who knows how to have a good time.", "Hey. This night just got better. Care to make it even more interesting?", "Hi. You’ve got that spark... like someone who knows how to make things exciting.", "Hey, gorgeous. You and I should make this night unforgettable.", "Hi there. I can’t promise much, but I bet we’d have a great time.", "Hey. You’ve got a look that says you’re as fun as you are stunning.", "Hi, sweetheart. How about we turn this ordinary day into something memorable?",]>>
<<set $fem_npc_high_depravity = ["Hey there, darling. What’s a day like this without someone like you?", "Hi, pretty. You’ve got the look of someone who knows how to have fun.", "Hey, cutie. Care to tell me what kind of trouble you’re looking for tonight?", "Well, hello there. You’ve got my attention - now, what are you going to do with it?", "Hi, sweetie. How about we skip the formalities and get to the fun part?", "Hey there. You seem like someone who knows how to keep things exciting.", "Hi, sugar. You look like you could use a partner in crime tonight.", "Hi there. You’ve got a spark I couldn’t resist. What’s your story?", "Hey. I’ve got a feeling you and I could make this day unforgettable.", "Hi, darling. How about we turn some heads together tonight?", "Hey, cutie. I bet you’ve got stories worth hearing - care to share one with me?", "Hi, sweetie. You’re just the kind of excitement this place was missing.", "Hey there. You’ve got a confidence that’s hard to ignore. Care to back it up?", "Hi, gorgeous. You seem like someone who knows how to have a good time - care to prove it?", ]>>
<<set $thug_yapping = ["You want advice? Never owe anyone. If you do, pay up quick. The streets don’t do IOUs.", "Someone called me a thug once. I said, 'Thanks for noticing,' then showed 'em why.", "Listen, I don't just rough people up for fun. Okay, maybe a little fun, but it's mostly business, you know?", "You ever seen a guy get decked so hard he forgot his own name? That was me last week. Poor guy’s probably still out cold.", "Used to be this old geezer who ran a second pawnshop in Old Downtown. Said he was untouchable. Guess who touched him?", "Life's simple. You see a problem? Hit it. If it still moves, hit it again. If it stops moving, job done.", "You know what they say: 'He who punches first laughs last.' No? Well, I say it.", "This jacket? Yeah, it’s real leather. Took it off some guy who didn’t need it anymore. Don’t ask why.", "The trick to looking tough? Always glare like someone just stepped on your new boots.", "I don’t start fights, but I sure as hell finish ’em. Usually with a broken chair or two.", "People think thuggin’ is just about muscle, but there’s an art to it. Like knowing when to shut someone up for good.", "You ever see someone fold like a cheap deck chair? That’s what happens when they cross me.", "Got this scar in a brawl. Don’t even remember what it was about, but I know I won. That’s what matters.",]>>
<<set $thief_yapping = ["Locks are just puzzles, and I’m really good at solving puzzles.", "You’d be amazed how many people don’t notice when their pockets get lighter.", "They say crime doesn’t pay, but they’ve clearly never met me.", "The best heists are the ones where nobody even knows they’ve been robbed - until it’s too late.", "You ever break into a place so secure even the owner doesn’t have the key? Yeah, I’ve done that.", "I don’t steal for fun. Okay, maybe sometimes, but it’s mostly about the challenge.", "Never trust a locked door. That’s where people hide the good stuff.", "I’ve got this rule: if you can’t carry it, it ain’t worth stealing.", "The adrenaline of sneaking through a place you’re not supposed to be? That’s better than any drug.", "You can call it stealing. I call it redistributing wealth to a more deserving party - me.", "People always assume thieves are broke. I’m not broke; I’m just smart about where I keep my money.", "The trick isn’t just stealing - it’s making sure no one even realizes it’s gone.", "I’m not proud of everything I’ve taken, but let’s be honest, most of it was just lying around begging to be stolen.", "If you ever see me walking away from a place, don’t ask why. Just know I’ve probably got something I didn’t come in with.", "Every job has risks, but for me, the reward always outweighs them. Who needs a safety net when you’ve got skill?", ]>>
<<set $traveler_yapping = ["You can learn more from a road than you can from any book. Trust me, I’ve tried both.", "Every city’s got its secrets, but the real treasures are the people you meet along the way.", "The best meals I’ve ever had came from street vendors. You haven’t lived till you’ve risked food poisoning for a great bite.", "You know what’s funny? The more places I go, the more I realize people are all the same - just trying to get by.", "I once slept under the stars in the desert. Woke up to a scorpion on my boot. Still worth it.", "Ever been to a market in the middle of nowhere? They’ve got the weirdest stuff, but the best stories.", "I’ve walked through snow, sand, and jungle. Every step teaches you something new - usually to pack lighter.", "The trick to blending in? Walk like you’ve been there before, even if you haven’t.", "The best part about traveling is the freedom. No rules, no roots, just the open road.", "Once, I hitched a ride with a farmer who didn’t speak a word of my language. Still had the best conversation of my life.", "People always ask me where I’m headed. I tell ’em, ‘Wherever the wind takes me.’ It’s cheesy, but it works.", "Maps are great and all, but the best adventures happen when you’re lost.", "Every scar I’ve got tells a story. Some are funny; others remind me to never trust a rusty bridge.", "If you ever feel stuck, just pick a direction and start walking. You’ll be surprised what you find.", ]>>
<<set $nothing_yapping = ["You heard about that new drug, ‘Aphrodisiac’? No hangover, no comedown. Makes you wonder what they’re putting in it, huh?", "Old Downtown’s a mess these days. You can’t swing a stick without hitting some wannabe gangster.", "Harbor used to be about shipping and fishing. Now? It’s all about moving ‘product,’ if you catch my drift.", "They say the Suburbs are safe. Yeah, if you ignore the chop shops and the ‘family businesses’ running out of garages.", "City Center’s still shining bright, but step one block too far, and you’re in a whole other world.", "I saw cops hauling out crates from a warehouse in the Outskirts last week. Bet they left behind more than they took.", "Everyone’s talking about the raid, but give it a few weeks. This city doesn’t stay clean for long.", "You know what’s weird? The bikers and the mafia are keeping quiet lately. Makes me think something big’s brewing.", "You ever hear the Harbor at night? Chains clinking, boats creaking... sounds like a ghost town, but busier.", "A guy tried to sell me ‘Aphrodisiac’ in Old Downtown. Told him I didn’t need any help getting into trouble.", "Suburbs used to be where people went to escape the crime. Now it’s where they go to hide it.", "Bikers took over a bar in the Outskirts. Call it their clubhouse now. Bet it’s louder than the highway at night.", "I saw a gang fight near Old Downtown the other day. They don’t even bother hiding it anymore.", "Someone told me there’s a lab cooking ‘Aphrodisiac’ in the Harbor. Makes sense, with all those chemicals lying around.", "The raid was supposed to clean things up, but all it did was make room for new players. This city’s like that.", ]>>
<<set $fem_yapping = ["Did you hear? Some guy tried to smuggle ‘Aphrodisiac’ in coffee cans through the Harbor. Bold, but stupid.", "The boutique in City Center got robbed again. Third time this month! Guess luxury is a risky business.", "I saw a biker arguing with a cop near the Outskirts. Not sure who looked angrier.", "They say a new gang’s trying to take over Old Downtown. Like we don’t have enough of them already.", "Rumor has it, the raid didn’t touch the big fish. They’re still swimming around, planning their next move.", "The Suburbs are getting sketchy. I heard gunshots last night, and no one even called the cops.", "Did you notice all the security cameras going up in City Center? Makes you wonder what they’re expecting.", "A friend of mine swears she saw a mafia guy eating at a diner like a regular person. Weird, right?", "There’s a rumor that ‘Aphrodisiac’ doesn’t even come from this city. It’s shipped in from somewhere far.", "Apparently, the Suburbs has a new underground fight ring. People are betting big money on it.", "Did you see the sky last night? The stars looked amazing, even with all the city lights.", "I swear, the seagulls at the Harbor are getting bigger. One almost stole my sandwich yesterday.", "Why is it so windy lately? I had to chase my hat halfway down the street this morning.", "There’s a guy in Old Downtown selling ‘authentic antiques.’ Pretty sure I saw one of those vases at a thrift store last week.", "They finally fixed the potholes near the Suburbs. Took them long enough, but it’s like driving on a racetrack now.", "I saw a cat sitting on a police cruiser in City Center. Looked like it was the one giving orders.",]>>
<<set $high_d_pickup_line = ["Careful. Keep looking at me like that, and I might start thinking you want something.", "I could say something smooth, but honestly? You’d look even better messing up my sheets.", "I’d offer you a ride, but I’m not sure whether to start with my car or my lap.", "You’re playing a dangerous game making eye contact with me, darling.", "You look like someone who knows how to have fun. Care to prove me right?", "If we keep making eye contact like this, I’m gonna start charging you rent.", "Tell me - are you always this tempting, or am I just lucky tonight?", "We could keep flirting, or we could do something about it. Your call.", "I’d compliment your outfit, but I’d rather see it on my floor.", "Let’s be honest, we both know where this conversation is going.", "You keep looking at me like that, and I might have to make it worth your while.", "I don’t do love songs, but I could make you sing a little.", "You can sit there looking irresistible, or you can come over here and do something about it.", "Why don’t we skip the part where we pretend this isn’t happening?", "You wearing that on purpose, or are you just naturally that distracting?", ]>>
<<set $low_d_pickup_line = ["Y-You must be really strong… because I’m struggling to lift this conversation.", "I was gonna say something flirty, but now my brain just… left the building.", "If I were a cat, I'd… uh… sit near you. Not on you! That would be weird! Just… y'know… close.", "Do you like bad boys? No? Phew, good… 'cause I, uh, pay my taxes and stuff.", "I read somewhere that compliments work, so… um… you have… nice… clothes?", "I was trying to come up with a smooth pickup line, but all I got is… ‘Hi.’", "I’d ask you out, but statistically, rejection rates are… um… quite high, so… I’ll just stand here awkwardly instead.", "I was gonna impress you with a joke, but… uh… I forgot the punchline. And the setup. And why I even started talking.", "Hey, uh… if you were a vegetable, you’d be… um… ah, never mind, this was a bad idea.", "I swear I had a great pickup line ready, but then you looked at me and… poof, gone.", "I was gonna compliment you, but then I thought—what if it’s weird? And now I’m overthinking it, so… yeah.", "I… uh… like your vibe. Is that a normal thing to say? No? Crap.", "If awkwardness was a sport, I’d be winning gold right now.", "You have a really nice aura. Or energy. Or… something. It’s nice.", "If I had a dollar for every time I thought about talking to you, I could probably afford therapy.", "I was going to come up with something clever, but you’re kind of distracting.", "I read that confidence is attractive, so I’m confidently standing here. Is it working?", "You’re way out of my league, but I’m already here, so might as well shoot my shot.",]>>
/* Fem Descriptions */
<<set $beauty_1 = "1">>
<<set $beauty_2 = "2">>
<<set $beauty_3 = "3">>
<<set $body_1 = "1">>
<<set $body_2 = "2">>
<<set $body_3 = "3">>
<<set $clothes_1 = "1">>
<<set $clothes_2 = "2">>
<<set $clothes_3 = "3">><style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/bar.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $gangs_base === false>>\
<<set _roll = random(0, 20)>>\
<<if _roll > 14>>\
You've met a quite suspicious guy that tells you that he can tell you a location of Street Gangs hub... for a quick buck. Price is 400$.
<br>\
<<if $money >= 400>>\
<<link "Pay 400$ for info." "Downtown Bar">>
<<money `-400`>>\
<<set $gangs_base = true>>\
<</link>>\
<br>\
<<else>>\
<span class="not_available"> You don't have enough money. <br></span>\
<</if>>\
<<charm_link>><<link '"How about a quick fuck?"' "Downtown Bar Quickie Info">>\
<<set $p_depravity += 2>>\
<<set $gangs_base = true>>\
<</link>><</charm_link>>
<<link "Decline his very generous offer." "Downtown Bar">>\
<</link>>\
<<else>>\
<<createnpc_dt>>\
<<depravity_talk>>\
You've met _name _surname, he is a _job.
<<if $p_traits.includes("observer")>>\
You're pretty sure that he's trait is... _trait.
<<observer_combat_temp>>\
<<if $p_traits.includes("observer_2")>>\
<<observer_driving_temp>>\
<<observer_cun_temp>>\
<</if>>\
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly what his abilities are.</span>
<</if>>\
<br>\
Add to contacts?
<<link "Yes" "Downtown Bar">>
<<addnpc>>
<</link>>
<<link "No" "Downtown Bar">><</link>>
<</if>>\
<<else>>\
<<set _gender_roll = random(0, 10)>>\
<<if _gender_roll > 3>>\
<<createnpc_dt>>\
<<depravity_talk>>\
You've met _name _surname, he is a _job.
<<if $p_traits.includes("observer")>>\
You're pretty sure that he's trait is... _trait.
<<observer_combat_temp>>\
<<if $p_traits.includes("observer_2")>>\
<<observer_driving_temp>>\
<<observer_cun_temp>>\
<</if>>\
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly what his abilities are.</span>
<</if>>\
<<if $money >= 150>>\
<<link "Pay for his drinks 150$ and add him to contacts." "Downtown Bar">>
<<set _npc.friendship += $charm * 1>>\
<<money `-150`>>\
<<addnpc>>\
<</link>>
<</if>>\
<br>\
Add to contacts?
<<link "Yes" "Downtown Bar">>
<<addnpc>>
<</link>>
<<link "No" "Downtown Bar">><</link>>
<<else>>\
<<createnpc_fem_dt>>\
<<depravity_talk>>\
You've met _name _surname, she's a _job.
You can rate her at _rate out of 10.
<<moral_desc_temp>>
<<if $p_traits.includes("observer")>>\
She's <<beauty_desc_temp>> her clothes are <<clothes_desc_temp>> and body is <<body_desc_temp>>
<<depravity_desc_temp>>
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly why you rate her like that...</span>
<</if>>\
<<if $money >= 150>>\
<<link "Pay for her drinks 150$ and add her to contacts." "Downtown Bar">>
<<set _npc.friendship += $charm * 1>>\
<<money `-150`>>\
<<addnpc_fem>>\
<</link>>
<</if>>\
<br>\
Add to contacts?
<<link "Yes" "Downtown Bar">>
<<addnpc_fem>>\
<</link>>
<<link "No" "Downtown Bar">><</link>>
<</if>>\
<</if>><span id="contacts"></span>\
<<button "M">>\
<<if _people === false || !_people>>\
<<replace "#people">><<include "People Male">><</replace>>
<<set _people = true>>\
<<else>>\
<<replace "#people">><</replace>>\
<<set _people = false>>\
<</if>>\
<</button>>\
<span id="people"></span>\
<<button "F">>\
<<if _people_fem === false || !_people_fem>>\
<<replace "#people_fem">><<include "People Fem">><</replace>>
<<set _people_fem = true>>\
<<else>>\
<<replace "#people_fem">><</replace>>\
<<set _people_fem = false>>\
<</if>>\
<</button>>\
<span id="people_fem"></span>\
<<if $accomplices_list.length > 0>>\
<<button "Your accomplices">>\
<<if _accomplices === false || !_accomplices>>\
<<replace "#accomplices">><<include "Accomplices">><</replace>>
<<set _accomplices = true>>\
<<else>>\
<<replace "#accomplices">><</replace>>\
<<set _accomplices = false>>\
<</if>>\
<</button>>
<span id="accomplices"></span>\
\
<</if>>\
<<if $sluts_list.length > 0>>\
<<button "Sluts">>\
<<if _sluts === false || !_sluts>>\
<<replace "#sluts">><<include "Sluts">><</replace>>
<<set _sluts = true>>\
<<else>>\
<<replace "#sluts">><</replace>>\
<<set _sluts = false>>\
<</if>>\
<</button>>
<span id="sluts"></span>\
<</if>>\
\
<<if $jail_list.length > 0>>\
<<button "Jail">>\
<<if _jail === false || !_jail>>\
<<replace "#jail">><<include "JailList">><</replace>>
<<set _jail = true>>\
<<else>>\
<<replace "#jail">><</replace>>\
<<set _jail = false>>\
<</if>>\
<</button>>
<span id="jail"></span>\
<</if>>\
[[Close contacts->Home]] Name: $active_npc.name
Surname: $active_npc.surname
Phone number: $active_npc.id
$active_npc.job\
<<if $active_npc.friendship >= 50 || $p_traits.includes("observer")>>\
<br>\
His trait is $active_npc.trait.
<<observer_combat>>\
<</if>>\
<<if $active_npc.friendship >= 70 || $p_traits.includes("observer_2")>>\
<<observer_driving>>\
<<observer_cun>>\
<</if>>\
<<if $active_npc.hadSex > 0>>\
<br>\
Had sex with you $active_npc.hadSex times.
<</if>>\
<<friendship_check>>\
<<job_check>>\
<<trait_check>>\
<<bar_check>>\
\
<<talk_check>>
<<button "Close">>
<<set $active_npc = "">>\
<<script>>
Dialog.close();
<</script>>
<</button>>
<<button "Forget about this contact.">>
<<if _remove_check == true>>\
<<removeNpc>>\
<<set $active_npc = "">>\
<<script>>
Dialog.close();
<</script>>
<<run Engine.show()>>
<</if>>\
<</button>>
<<checkbox "_remove_check" false true>> Are you sure?<<silently>>\
<<for _i = 0; _i < $npc_list.length; _i = _i + 1>>
<<set $npc_list[_i].bar = true>>
<<set $npc_list[_i].talk = true>>
<<set $npc_list[_i].chemist_trade = true>>
<<set $npc_list[_i].engineer_trade = true>>
<<set $npc_list[_i].farmer_trade = true>>
<</for>>
<<for _i = 0; _i < $npc_fem_list.length; _i = _i + 1>>
<<set $npc_fem_list[_i].talk = true>>
<<set $npc_fem_list[_i].asked_today = true>>
<<if $npc_fem_list[_i].job == "Chemist">>
<<set $npc_fem_list[_i].chemist_trade = true>>
<</if>>
<</for>>
<<set $dm_cap = 0>>
<<set $dm_cap_too_much = false>>
<<set $distributor_daily_sex = false>>
<<set $gangs_leaders_daily_sex = false>>
\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>
<<if $accomplices_list[_i].inTraining > 0>>
<<set $accomplices_list[_i].inTraining -= 1>>
<</if>>
<</for>>
<</silently>>\<style>
body::before {
content: '';
background-image: url("img/background/home/pc.webp");
inset: 0;
position: fixed;
background-size: 96vw 100vh;
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
}
</style>\
<<button "Web Market">>
<<if _page != 1 || !_page>>\
<<replace "#web_page">><br><<include "Web Market">><br><</replace>>\
<<set _page = 1>>\
<<else>>\
<<replace "#web_page">><</replace>>\
<<set _page = 0>>\
<</if>>\
<</button>>\
\
<<if $forum_new == true>>\
<<button "City Forum (something new)">>\
<<if _page != 2 || !_page>>\
<<replace "#web_page">><br><<include "Web Forum">><br><</replace>>\
<<set _page = 2>>\
<<set $forum_new = false>>\
<<else>>\
<<replace "#web_page">><</replace>>\
<<set _page = 0>>\
<</if>>\
<</button>>\
<<else>>\
<<button "City Forum">>\
<<if _page != 2 || !_page>>\
<<replace "#web_page">><br><<include "Web Forum">><br><</replace>>\
<<set _page = 2>>\
<<else>>\
<<replace "#web_page">><</replace>>\
<<set _page = 0>>\
<</if>>\
<</button>>\
<</if>>\
/*<<button "Gig.gles">>\
<<if _page != 3 || !_page>>\
<<replace "#web_page">><br><<include "Gig.Gles">><br><</replace>>\
<<set _page = 3>>\
<<else>>\
<<replace "#web_page">><</replace>>\
<<set _page = 0>>\
<</if>>\
<</button>>\*/
<span id="web_page"></span>\
<<button "Turn PC off">>
<<goto "Home">>
<</button>><<silently>>
<<set _attack_roll = random(0, 10)>>\
<<if _attack_roll > 8 && $downtown_bribe == false && $downtown_state == false>>
<<goto "Downtown Attack">>
<</if>>
<</silently>>\
<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/residential.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Your default projects. You may see here any kind of people.
<<if $downtown_landlord == false>>\
You see an ad that someone is selling an apartment in this complex. Not the best place for your operation base, but you may try yourself in rental business. Pricetag is 5000$. <<if $money >= 5000>> <<link "Buy an apartment." "Residential Complex">>
<<set $downtown_landlord = true>>\
<<set $downtown_rent = 40>>\
<<set $downtown_land_occupied = false>>\
<<set $downtown_land_level = 1>>\
<<money `-5000`>>\
<</link>><</if>>\
<</if>>\
\
<<if $downtown_landlord == true>>\
<<if $downtown_land_level == 1>>\
You may want to buy some furniture for your apartment, right now it looks quite bleak and no one's gonna pay you a lot for it. You can make a request through internet.
<</if>>\
<<if $downtown_land_level == 2>>\
There's still plenty of room for impromevent in your apartment, quite literally.
<</if>>\
<<if $downtown_land_level == 3>>\
Great apartment you have right here. Just be sure that you've been paid well for it.
<</if>>\
<</if>>
\
<<if $downtown_landlord == true && $downtown_land_occupied == false>>\
<<action_link>><span class="action_link"><<link "Look for potential tenants" "Downtown Tenants Search">>\
<<addhours 1>>\
<</link>></span><</action_link>>\
<</if>>\
\
<<if $downtown_land_occupied == true>>\
<<action_link>><span class="action_link"><<link "Visit a tenant" "Tenant">>
<<addmins 10>>\
<</link>></span><</action_link>>\
<</if>>\
<<if $p_inv.has("Lockpick") && $stam >= 1>>\
You may <<cun_link>><<link "use your lockpick" "Complex Burglary">><<stam `-1`>><<set $reputation += 50>><<drop $p_inv "Lockpick" 1>><<addmins 20>><</link>><</cun_link>> to try yourself in burglary craft.
<<else>><span class="not_available">You are either too tired or don't have a lockpicks to try your luck in burglary.</span>
<</if>>\
<<out_link>><<link "Get back to the main street of Downtown" "Downtown">>\
<<addmins 15>>\
<</link>><</out_link>>\<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/residential.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<set _name = $name.random()>>\
<<set _surname = $surname.random()>>\
<<set _payment_flat = random(25, 60)>>\
<<set _payment = _payment_flat * $downtown_land_level>>\
<<set _land_level = $downtown_land_level>>\
\
You've met _name _surname and his offer is _payment. Do you accept him as a tenant?
<<link "Yes" "Residential Complex">>
<<set $tenant_downtown = {name: _name, surname: _surname, payment: _payment, payment_flat: _payment_flat, land_level: _land_level}>>\
<<set $downtown_land_occupied = true>>\
<</link>>
<<link "No" "Residential Complex">><</link>>
<<link "No, look for another one" "Downtown Tenants Search">>
<<addhours 1>>\
<</link>><style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/residential.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
$tenant_downtown.name $tenant_downtown.surname - your tenant.
He pays you $tenant_downtown.payment​$ daily.
ETO TUPA HUYNYA I BUDER REWORKNUTO, RUDIMENT PROSHLOGO PLOHA RABOTAUSHIY
<<if $tenant_downtown.land_level < $downtown_land_level>>\
<<linkreplace "You may tell the tenant about higher payment for flat because of apartment renovation.">>
<<set $tenant_downtown.land_level = $downtown_land_level>>\
<<set $tenant_downtown.payment = $tenant_downtown.payment_flat * $tenant_downtown.land_level>>\
$tenant_downtown.name has raised his daily payments to $tenant_downtown.payment dollars.
<</linkreplace>>\
<</if>>\
\
[[Get back to lobby->Residential Complex DEPRECATED]] <style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/residential.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
The walls are thin, and the noise is thick - bass-heavy music from one side, a screaming match from the other. You can hear laughter and muffled conversations through the walls, a constant reminder that privacy isn’t exactly a luxury here. Keep your ears sharp, this place doesn’t go quiet for long.
<<set _roll_safe = random(0, 11) + $cun>>\
<<if $p_traits.includes("burglar")>>\
<<set _alert = random(4, 5)>>\
<<else>>\
<<set _alert = random(2, 4)>>\
<</if>>\
<span id="alert-display"><<display "Downtown Alert">></span><span id="noice"></span>\
\
<<dt_burglary>>\
<<dt_burglary>>\
<<dt_burglary>>\
<<dt_burglary>>\
<<dt_burglary>>\
<<if _roll_safe > 10>>
There's a safe...\
<<if $p_inv.has("Safe-cracking kit")>>\
<<safe_cracking_dt>>\
<<else>>\
but you lack any suitable tools for it...\
<</if>>\
<</if>>\
<span id="downtown-getaway"><<display "Downtown Getaway">></span><<if _alert >= 3>>\
It's quiet.
<</if>>\
<<if _alert === 2>>\
You think you've alerted someone.
<</if>>\
<<if _alert === 1>>\
Someone is coming, run!
<</if>>\
<<if _alert === 0>>\
<<burglar_fail>>\
<<goto "Downtown Burglary Caught">>
<</if>>2. By using two passages with <<display>> and <<replace>>. (I'm referring to SugarCube's <<replace>> macro here, not Leon's)
For example:
Passage "Carrot": (you link to this one)
<span id="carrot-display"><<display "Display Carrots">></span>
<<click "Refresh, with more carrot-y goodness">>
/% modify your variables %/
<<set $carrots++>>
/% replace the sub-passage display %/
<<replace "#carrot-display">><<display "Display Carrots">><</replace>>
<</click>>
Passage "Display Carrots": (you don't link to this one)
You have <<print $carrots>> carrots.<<if _alert >= 2>>
<span class="out_link"><<link "Leave this place" "Downtown">>\
<<addmins 15>>\
<<burglar_success>>\
<</link>></span>
<<else>>
<span class="out_link"><<link "Run away" "Downtown">>\
<<addmins 15>>\
<<stam `-3`>>\
<<burglar_success>>\
<</link>></span>
<</if>>\<<set $exchange_booth = false>>
<<set $exchange_cap = 0>>
<<set $exchange_cap_max = 100 * $cun>>
<<set $furniture = ["a wardrobe", "a drawers", "a cupboards", "a bookcase", "a shelves", "a desk", "a racks", "a lockers", "a closet", "a buffet"]>>
<<set $exchange_mafia = false>>
<<set $extortion_rate = 0>>
<<set $furniture_warehouse = ["a crate", "some crates", "a closet", "a bale", "a shelves", "a pallets", "a stashbox", "a bin", "a kit", "a packing case", "a container"]>>
<<set $bank_credit_1 = 0>>
<<set $bank_credit_1_paid = false>>
<<set $bank_credit_2 = 0>>
<<set $bank_credit_2_paid = false>>
<<set $bank_credit_3 = 0>>
<<set $bank_credit_3_paid = false>>
<<set $bank_credit_4 = 0>>
<<set $bank_credit_4_paid = false>>
<<set $tax_code_0 = 0>>
<<set $tax_code_1 = 0>>
<<set $tax_code_2 = 0>>
<<set $tax_code_3 = 0>>
<<set $tax_code_full = []>>
<<set $tax_code_input_0 = 0>>
<<set $tax_code_input_1 = 0>>
<<set $tax_code_input_2 = 0>>
<<set $tax_code_input_3 = 0>>
<<set $tax_evasion_timer = 0>>
<<set $ft_locked = false>>
<<set $wardrobe_on = false>>
<<set $amount_wallets = 0>>
<<set $total_gained = 0>>
<<set $total_gained_dirty = 0>>
<<set $total_loss = 0>>
<<set $total_washed = 0>>
<<set $changing_room_pervert = true>>
<<set $mechanic_advice = ["If you ever happen to lose control during your job - just try to focus. Don't forget about focusing, oki?", "Our biz is really hard to establish. You need a secluded garage for stolen cars and some specific contacts to sell vehicles. I'm not gonna tell you which contacts exactly, but believe me, it's a people with very special traits, if you know what i mean.", "Well, it's obvious, but more you do one thing the better you are at it. And this applies to a car thieving too.", "I've heard about a shady underground ring somewhere in the suburbs... Prolly it's tied to local gym, I can’t think of a better place for it."]>>
<<set $distributor_yapping = ["Mind you, all payments are in dirty money, don't you dare use this money for anything, you're gonna put us both in jail. Launder your money by distributing it in small portions in any legal business.", "Some of the materials can be bought on market or even from private shippers, if you happen to friend with them, and some of it can be stealed. Just don't cross the Cartel.", "You won't be able to open your own laboratory //inside// the city borders, i'm assure you, our services is the only thing you ever need in this sphere.", "Have you already met all gangs leaders? What a bunch of loosers, huh?", "If you want to make a huge profit in $city_name, focus on opening your own enterprise.", "Don't let small mistakes break you - they're just part of the business.", "Hope you're visiting me for a reason. I'm up for chit-chat tho.", "If you're fed up with the high crime rates in this city and want to secure your money at home, consider some safety measures - thieves are really bold around here.",]>>
<<set $romano_yapping = ["Ah, bella! You've graced me with your presence again!", "Look who decided to drop by! My favorite partner in crime.", "Ciao, cara mia! Ready to make some money today?", "Ah, the streets must be quiet if you’re here, no?", "Heyya! You must be craving some action, sì?", "Benvenuta! What can I do for you today, tesoro?", "Ready to roll the dice again, bella? You know I'm always up for a gamble.", "Ecco! My lucky charm walks through the door!", "Ecco! The streets must be too boring for you if you’ve come to see me.", "Welcome back, cara mia! Got another job in mind?", "Benvenuta! You know I can’t resist helping a talent like you.", "Look who’s here! My favorite hustler, pronta per l’azione?",]>>
<<set $romano_yapping_boss = ["Ah, capo! An honor as always to see you.", "Ciao, boss! What brings the queen of the streets to my humble abode?", "Ah, the one who runs the whole show! Prego, signora!", "Boss! I hope my work has been up to your... impeccable standards.", "Ah, my favorite criminal genius! What’s the plan today?", "Ecco! The boss herself. I knew today was going to be lucky!", "Benvenuta, capo! You honor me with your presence, as always.", "Boss! Let me know how I can make your empire even greater!", "My boss, my inspiration! How can I serve you today?", "Ah, la regina del crimine! Always a pleasure to have you here.", "Boss, your empire is the envy of us all. I’m just happy to play my part.", "Capo dei capi! You’ve made quite the name for yourself, haven’t you?",]>>
<<set $romano_blackjack = ["Feeling lucky, cara mia? Because I sure am!", "Nothing like a good game of blackjack to get the blood pumping.", "Remember, it’s not just about the cards. It’s about how you play them.", "Ah, the thrill of the game! Nothing like it, vero?", "Luck is a fickle mistress, don’t you think? But I have a feeling she’s on my side.", "You know, blackjack is all about reading people. I can see you’re holding back, tesoro.", "Don’t look so nervous, amica. It’s just a game... with some stakes."]>>
<<set $sixth_yapping = ["There you are.", "Back again, I see. Got some parts to trade?", "Sup.", "Well, look who the cat dragged in. Got any surprises for me today?", "Another day, another altcoin hitting the moon...", "DeFi platforms are all the rage. Too risky for my taste.", "Mining rigs are getting more expensive. Wonder if it’s worth it.", "Every dip feels like an opportunity... or a trap.", "Heard about the latest NFT craze? Who’s buying that stuff?", "Wires, bro.", "Remember, cryptobros are not your bros."]>>
<<set $biggie_yapping = ["Bruh, I’m too dead for this. Can’t someone else deal with it? I’m literally just tryna vibe here.", "You know what I always say... Slow and steady, like a chill vibe, keeps the turf solid.", "Ain’t nothin’ worth me gettin’ off this couch today, I swear. It’s all cringe out there.", "Yo, you got any snacks? I’m tryna get a little pick-me-up, feel me?", "Downtown’s like a big ol’ couch, and I’m just here to keep it comfy, ya dig?", "If it ain't broke, don’t fix it. And if it is... meh, maybe fix it later. No cap.", "Ever think ‘bout just chillin’ for a day? I do. Like, every day. It’s the vibe.","Hustle all you want, just don’t make me hustle too, alright? I ain’t tryna do too much.", "Yeah, yeah, I got it... just lemme take this nap first, fam.",]>>
<<set $biggie_yapping_boss = ["Man, I’m too tired for this. Can’t someone else deal with it? Maybe under $band_name it’d be less sus...", "You know what I always say... Slow and steady keeps the turf. But then... well, it didn’t work at all, did it? Big yikes.", "Ain’t nothin’ worth gettin’ up for today, boss. I’m just vibin’ here.", "Yo, boss, you got any snacks? I’m in desperate need of a pick-me-up, for real.", "Downtown’s like a big ol’ sofa, and I’m just here to keep it comfy for you, boss. Chill vibes.", "If it ain't broke, don’t fix it. And if it is... well, maybe we can fix it... tomorrow, yeah?", "You ever think about takin’ a day off, boss? ‘Cause I do. Every damn day.", "Heeey, boss, please don’t make me hustle too much. Like, I’m already on low riz right now.", "Yeah, yeah, I got it... but, like, right after my nap. No cap, boss.",]>>
<<set $slick_trick_yapping = ["I swear, one more squealer and I’m gonna need a new knife.", "You gotta stay sharp out here. Dull ain’t no good.", "A little trick here, a little trick there, keeps everyone on their toes.", "If you ain’t slick, you stick. That’s the rule.", "A good hustle’s all in the wrist, you know what I mean?", "You think you're slick? Ha, you ain't seen nothin' yet."]>>
<<set $slick_trick_yapping_boss = ["I swear, one more squealer and I’m gonna need a new knife.", "You gotta stay sharp out here. Dull ain’t no good, though you’ve already proven you’re the sharpest around.", "A little trick here, a little trick there, keeps everyone on their toes.", "If you ain’t slick, you stick. That’s the rule. But you're the rulebreaker, huh, boss?", "A good hustle’s all in the wrist, you know what I mean?", "You think you're slick? Yeah, i guess i have to agree, boss."]>>
<<set $dizzy_yapping = ["Heh, heh... that’s the stuff.", "Anyone got a light? Lost mine... again.", "Nah... no need... chill...", "Mmmm... Yeah... whatever, man.", "Mmm... yeah... that’s cool.", "S’like... what if... we’re all just... you know... here, man?", "Feels good... just to sit... and think, ya know?", "World’s spinnin’... and I’m just... sittin’...",]>>
/* Things for Motor Theft */
<<set $starting_timer_vehicle = 40>>
<<set $theft_solutions_needed = 3>>
<<set $right_solution_vehicle = 0>>
<<set $car_theft_problem = "">>
<<set $timer_seconds = $starting_timer_vehicle>>
<<set $target_car = "">>
<<set $vehicle_problem = ["Radio turns on", "Someone is watching you", "You can't find an ignition cabel", "Car alarm turns on"]>>
<<set $radio_problem = ["Hit something", "Try to break something", "Find a stereo volume control", "Scream", "Shoo at it"]>>
<<set $someone_problem = ["Start threatening them", "Pretend that it is your car", "Show inappropriate signs", "Honk on them"]>>
<<set $ignition_problem = ["Focus", "Turn the steering wheel", "Start threatening the car", "Press all pedals", "Hit the steering wheel"]>>
<<set $alarm_problem = ["Sing something", "Pull car's alarm wires", "Break the glass", "Honk melodiously", "Hit the subwoofer"]>>
<<set $vehicle_fail = ["You've done something wrong...", "It couldnt be worse than that, right?", "Damn, it made everything even worse!", "Oops...", "Mistakes were made...", "Oof, that's no right!", "Argh, stupid car!"]>>
/* Orders */
<<set $orders = ["Order from Banana Republic", "Order from brothel", "Order from pimp", "Order from sport team", "Order from ghetto", "Order from pawnshop", "Order from drugdealer", "Order from hackers", "Order for party", "Order from IT company",]>>
<<set $escort_orders_generated = false>>
<<set $escort_order = ["Deep Blowjob", "Gangbang", "Anal", "Arm Pillow", "Talisman"]>>
<<set $escort_description = ["Dude just wants to hang out", "Not the freshest man came to win", "Drunkyard just hit wits end and you're gonna end his wallet", "Gambler gonna gamble, he's asking for a talisman or mascot for his wins", "Middle aged man with kinda mid requests from his life. Better for you, i guess", "Partygoer that already bothered the rest of the girls", "Handsome, rich, gambling type. Perfect target"]>>
/* Car chase things - have to be configured before start of the chase, default value is 0 and "" */
<<set $chase_timer = 0>>
<<set $chase_success = 0>>
<<set $chase_hp = 0>>
<<set $chase_type = "race">>
<<set $chase_direction = "">>
<<set $chase_right_dir = []>>
<<set $chase_problems = ["A car suddenly appears on the right side!", "A car is tailgating you from the right side!", "There’s a sharp turn to the right coming up!", "A car is reversing out of a driveway on the right!", "A group of cyclists is riding on the right side!", "A ramp is visible on the right!", "A clear path is visible through the roadwork on the right!", "The right side has a clear path through the debris!", "You can see an opening through the traffic jam on the right!", "A food truck is parked in the middle of the street, but there's a clear path on the right!",
"The road ahead is filled with debris!", "A large pothole is straight ahead!", "A pedestrian is crossing the road in front of you!", "Construction work is blocking the road straight ahead!", "A car is abruptly stopping in front of you!", "There's an unobstructed route visible up ahead!", "There is some kind of rally going on here, you can only drive ahead!", "A street performer is drawing a crowd, blocking the road, but the way ahead is open!", "A flash mob is dancing in the street, but there's the way up ahead!",
"A fallen tree is blocking the left lane!", "There’s an unexpected curve to the left coming up!", "A broken-down vehicle is blocking the left lane!", "A large truck is overtaking you on the left!", "The road is under construction with cones blocking the left side!", "The road ahead is congested, but the left lane is clear!", "A wide opening is available in the left lane!", "The left side of the road has a safe passage!", "The left lane is open and free of cars!"]>>
/* Names and shit */
<<set $band_names = ["GANG", "Just Another Gang", "It's a gang bro", "Band name", "Name of the band", "Band of the random hustler", "Gang band", "Yo it's a gang", "We", "Our", "Better cartel", "Better gang", "Better bikers", "Better mafia", "Who", "Random name", "Dawg", "Swag", "Liquidity", "Syndicate", "Triad of the Hustle", "Crew", "Clan of the City", "Faction", "Interesting clique", "Circle of mobs", "Association", "Ring", "Crime Family", "Network", "Posse",]>>
/* Combat stuff */
<<set $enemy_hp = 0>>
<<set $enemy_combat = 0>>
<<set $enemy_name = "John Doe">>
<<set $enemy = false>>
<<set $intent = "Nothing">>
<<set $p_log = "">>
<<set $enemy_log = "">>
<<set $damage_done = 0>>
<<set $pure_damage = 0>>
<<set $enemy_damage = 0>>
<<set $bleed_timer = 0>>
<<set $enemy_bleed = 0>>
<<set $skill_cd = 0>>
<<set $refresh_cd = 0>>
<<set $enemy_skill_cd = 0>>
<<set $knuckles_buff = false>>
<<set $chain_buff = false>>
<<set $enemy_stun = 0>>
<<set $stun_timer = 0>>
<<set $fresh_bleed = false>>
<<set $money_or_your_life = false>>
<<set $moyl_money = 0>>
<<set $random_amount = 0>>
<<set $ring_fight_desc = ["They exchange a flurry of punches, neither backing down.", "They lock up in a clinch, struggling for control.", "One throws a powerful punch, while the other counters with a low kick.", "They circle each other, looking for an opening.", "A swift jab is met with a counter hook, and they break apart.", "They trade a series of body blows, each trying to wear the other down.", "They grapple momentarily, then separate and exchange sharp punches.", "A high kick is deflected, and they engage in a brief wrestling match.", "They both go for a takedown, but neither succeeds.", "A quick right cross connects, and they go into a clinch.", "One lands a solid punch, followed by a series of rapid jabs from the opponent.", "They trade kicks and punches, each trying to land a decisive blow.", "They exchange a rapid series of strikes, with neither able to gain the upper hand.",]>>
<<set $nc_risk_desc = ["A couple of overenthusiastic dancers knocked over a stage light.", "A brawl broke out in the bar section. One of your bouncers wasn’t quick enough to stop it, and now you've got a shattered bottle and a very unhappy customer.", "A group of rowdy guests decided to take a shortcut across the dance floor, and now there’s a broken speaker system to replace.", "One of your regulars decided the bathroom was an excellent place for a little... graffiti.", "A security guard forgot to lock up the back door, and now there’s a minor theft to deal with. Looks like someone made off with your club’s latest sound equipment.", "A couple of overly enthusiastic guests thought it would be cool to start a dance-off in the middle of the bar, and now the floor’s covered in broken glass and spilled liquor.", "A group of partygoers decided to play a ‘game’ with the club’s fire extinguisher. Now there’s foam everywhere, and the air is a little too fresh.", "A wild guest spilled an entire tray of cocktails into your brand-new sound system. The speakers are short-circuiting, and the crowd isn’t happy.", "An overeager bartender mixed up the bottles, and now some unlucky guests are sipping on something that’s definitely not whiskey.", "Someone managed to sneak in a pet ferret, and it’s caused chaos all over the club.", "A group of new guests tried to ‘impress’ the crowd with a fireworks show inside the club. Guess who’s cleaning up the smoke damage?",]>>
<<set $city_name_array = [
"Crookstown", "Felony Falls", "Shadyside", "Viceport", "Rackettown", "Noirhaven", "Sincliff", "Hustleton", "Grimborough", "Outlaw Springs", "Vendetta Bay", "Grafton", "Shadowridge", "Bluff City", "Scamford", "Bloodhollow", "Rogueport", "Blackvale", "Corrupton", "Hoodwick", "Smuggler's Cove", "Hitman's Hollow", "Heistburg", "Deadend", "Thugton", "Bribeville", "Havoc Heights", "Getaway Gulch", "Shanktown", "Misdeed Metropolis", "Griftburg", "Backstab Bay", "Outlaw Junction", "Mugger's Hollow", "Carjack City", "Felonfield", "Blackjack Bluff", "Contraband Coast", "Extortown", "Scoundrel Springs", "Shifty Sands", "Racketeer Ridge", "Vandal Vale", "Crimewave Cove", "Gunrunner Gulch", "Vicehaven", "Bandit Bay", "Forgery Falls", "Warranton", "Smuggler's Haven", "Conville", "Bailout Borough", "Fugitive Flats", "Larceny Landing", "Hitjob Hills", "Daggerpoint", "Bribery Bluff", "Goonport", "Whisperwind", "Perdition Pines", "Kickback Keys", "Ambush Alley", "Gravesend", "Bootleg Bend", "Henchman's Hollow", "No Honor Hills", "Skullduggery Springs", "Havoc Harbor", "Contrivance Creek", "Hoodlum Heights", "Bloodmoney Bay", "Jackknife Junction", "Pistol Point", "Syndicate Shores", "Shady Pines", "Gallows Grove", "Outcast Oasis", "Thieves' Thicket", "False Alibi Flats", "Vendetta Valley",
]>>
<<set $nc_angry_reasons = [
"someone spilled drink on me", "someone stole my wallet", "bartender broke a glass near me", "the music's too loud", "the bouncer was rude", "my favorite drink is out of stock", "someone bumped into me without saying sorry", "the line at the bar is too long",
]>>
<<set $argument_theme = [
"who screwed up the last job", "who owes who money", "whose spot where is", "who's the better shot", "who's got the better car", "who snitched", "who's more feared on the streets", "who gets to call the shots, after boss of course", "who's the real tough guy here", "who did time in a tougher prison", "who handled the cops better", "who pulled off the biggest score", "who's more loyal to the crew", "who took the bigger risk last job",
]>>
/* Giggles */
<<set $gigs_cd = 0>>
<<set $gig_rep_scale = 1>>
<<set $gig_rep_scale_second = 1>>
<<set $gig_needed_item = "">>\
<<set $gig_item_amount = 0>>\
<<set $gig_item_reward = 0>>
<<set $gig_item_type = "">> /* Material / Item */
<<set $gig_item_completion = false>>
<<set $gig_needed_weapon = "">>\
<<set $gig_weapon_amount = 0>>\
<<set $gig_weapon_reward = 0>>\
<<set $gig_weapon_completion = false>>
<<set $gig_car_steal = false>>
<<set $gig_car_steal_loc = "">>
<<set $gig_car_steal_reward = 0>>
<<set $gig_fight = false>>
<<set $gig_fight_difficulty = 0>>
<<set $gig_fight_loc = "">>
<<set $gig_fight_reward = 0>>
<<set $gig_frame = false>>
<<set $gig_frame_character = "">> /* Bold/shy */
<<set $gig_frame_desc ="">>
<<set $gig_frame_reward = 0>>
<<set $gig_frame_loc ="">>
<<set $gig_car_steal_active = false>>
<<set $gig_frame_active = false>>
<<set $gig_fight_active = false>>
<<set $gig_1 = "">>
<<set $gig_2 = "">>
<<set $gig_3 = "">>
<<set $gig_4 = "">>
<<set $gig_5 = "">>
<<set $gig_6 = "">>
<<set $gigs_fluff = ["roasted_nails", "wanted_alien", "question", "help",]>>
<<set $gigs_nofluff = ["find_item_gig", "find_weapon", "car_steal", "fight", "frame",]>>
<<set $gig_frame_character_bold = ["daring", "fearless", "courageous", "brave", "audacious", "valiant", "intrepid", "dauntless", "adventurous", "unflinching", "gutsy", "resolute", "undaunted", "confident", "heroic", "spunky", "unafraid", "spirited", "lionhearted", "stouthearted",]>>
<<set $gig_frame_character_shy = ["timid", "bashful", "reticent", "reserved", "introverted", "withdrawn", "meek", "self-conscious", "diffident", "quiet", "hesitant", "coy", "demure", "unassertive", "sheepish", "nervous", "faint-hearted", "apprehensive", "subdued", "mousy",]>><style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/residential.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $do_it_anyway == true>>\
- "Oh, okay." The atmosphere shifted abruptly.
<</if>>\
Okay, it's too late to run. Door opens, it's time to fase a consequences...
<<if $reputation >= 5000 && $do_it_anyway == false>>\
<span class="male_text">- "Oh, it's you... Sorry, I didn't mean to bother you. I'm not going to stand in your way. But please refrain from trying to rob my flat..."</span>
<<link "That's right." "Downtown">>
<</link>> - your reputation speaks for itself!
<<link "Tell him to go ahead and do what he was planning to do with you... You're not gonna hold a grudge.">>\
<<set $do_it_anyway = true>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
<<set _roll = random(0, 20)>>\
<<if _roll >= 10>>\
The dude stumbled in very sloppy manner into the room.
The owner of this place is obviously on drugs. Actually, you can tell on what exactly - brand new™ aphrodisiac. You can see how pills are scattering across the floor by dropping right from his pocket... of course he's in hurry, someone is sneaking around his home. \
<br>\
And he definitely wants to punish you for this intrusion. Either that, or he's calling a police.
<br>\
<<link "No way." "Custody">>\
<<set $do_it_anyway = false>>\
<<addhours 1>>\
<</link>> It's better to surrender to the police than that. \
<br>\
<<charm_link>><<link 'Take some scattered pills and accept your "punishment"' 'Complex Quickie'>>
<<set $do_it_anyway = false>>\
<<addhours 1>>\
<<sex_rep_check>>\
<<pickup $p_inv "Aphrodisiac" 3>>\
<<stam `-1`>>\
<<depravity `1`>>\
<</link>><</charm_link>>\
<<if $p_inv.has("Handheld Taser")>>\
<br>\
<<link "Use a taser and run away." "Downtown">>\
<<set $do_it_anyway = false>>\
<<drop $p_inv "Handheld Taser" 1>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> If only you had a taser... </span>\
<</if>>\
<<if $p_traits.includes("fitness_2")>>\
<br>\
<<link "Push him off and run away." "Downtown">>
<<set $do_it_anyway = false>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> Sadly, you're not strong enough to just push him away. </span>\
<</if>>\
<<else>>\
A man armed with a bat burst into the room.
The owner of the place acted wisely, immediately calling the police and asking for backup from the neighbors. Just when you thought you could get out of this situation, you got busted.
<<link "Sigh" "Custody">>
<<set $do_it_anyway = false>>\
<<addhours 1>>\
<</link>>\
<</if>>\
<</if>>\<span id="clock"><<date>>
Time:<<time24hr>></span><style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/streetgangs.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
This street is a canvas of graffiti, every wall tagged with colors and claims. Music blasts from open windows and passing cars, mixing with the chatter of gangsters who treat the pavement like their living room.
\
<<if $reputation >= 1000>>\
<<in_link>><<link "Visit the gangs leaders." "Gangs Leaders DT">>
<</link>><</in_link>>
<<else>>\
<span class="not_available">No one's letting you into their leaders nest. You should work on your rep. </span>
<</if>>\
<<include "Susguy">>\
<<out_link>><<link "Get back to the main street of Downtown" "Downtown">>\
<<addmins 15>>\
<</link>><</out_link>>\<<if $burglar_trait_progress >= 100 && !$p_traits.includes("burglar")>>\
''Your past experience has sharpened your skills! Your thievery is now a cut above the rest.''
<<run $p_traits.push("burglar")>>\
<</if>>\
\
<<if $burglar_trait_progress >= 200 && !$p_traits.includes("burglar_2")>>\
''Your past exploits have honed your craft! Your thievery now stands above the rest even higher. +1 cunning.''
<<run $p_traits.push("burglar_2")>>\
<<set $cun_base += 1>>\
<</if>>\
\
<<if $car_thief_trait_progress >= 50 && !$p_traits.includes("car_thief_1")>>\
''Your past experience has made you a better car thief!''
<<run $p_traits.push("car_thief_1")>>\
<<set $starting_timer_vehicle += 10>>\
<</if>>\
\
<<if $car_thief_trait_progress >= 125 && !$p_traits.includes("car_thief_2")>>\
''Your past experience has made you an even better car thief! And, overall, your thievery mastery is greater.''
<<run $p_traits.push("car_thief_2")>>\
<<set $starting_timer_vehicle += 10>>\
<<set $cun_base += 1>>\
<</if>>\
\
<<if $fitness_trait_progress >= 50 && !$p_traits.includes("fitness_1")>>\
''You feel yourself stronger than before.''
<<run $p_traits.push("fitness_1")>>\
<<set $base_energy += 1>>\
<</if>>\
\
<<if $fitness_trait_progress >= 150 && !$p_traits.includes("fitness_2")>>\
''You feel yourself much stronger than before.''
<<run $p_traits.push("fitness_2")>>\
<<set $base_energy += 1>>\
<</if>>\
\
<<if $fitness_trait_progress >= 300 && !$p_traits.includes("fitness_3")>>\
''You think you can move mountains from now and your body looks like a damn shrine. Might be your cap tho.''
<<run $p_traits.push("fitness_3")>>\
<<set $base_energy += 1>>\
<<set $charm_base += 1>>\
<</if>>\
\
<<if $striptease_trait_progress >= 50 && !$p_traits.includes("strip_1")>>\
''You can think of a couple of dancing moves. Seems like you've become better at it.''
<<run $p_traits.push("strip_1")>>\
<</if>>\
\
<<if $striptease_trait_progress >= 150 && !$p_traits.includes("strip_2")>>\
''You feel how agile your body become by constant dancing.''
<<run $p_traits.push("strip_2")>>\
<<set $charm_base += 1>>\
<</if>>\
\
<<if $striptease_trait_progress >= 300 && !$p_traits.includes("strip_3")>>\
''You've mastered an art of striptease. And feel yourself even more sexual that before.''
<<run $p_traits.push("strip_3")>>\
<<set $charm_base += 1>>\
<</if>>\
\
<<if $observer_trait_progress >= 100 && !$p_traits.includes("observer")>>\
"You've met enough people to say that now you can determine their traits just by looking at them."
<<run $p_traits.push("observer")>>\
<</if>>\
\
<<if $observer_trait_progress >= 250 && !$p_traits.includes("observer_2")>>\
"You are really observant. You've seen so much people that you learn how to discern many characteristics of people just from a photograph."
<<run $p_traits.push("observer_2")>>\
<</if>>\
\
<<if $pickpocketer_trait_progress >= 100 && !$p_traits.includes("pickpocketer")>>\
''Pickpocketing is not that hard as you've imagined, you should go for a bigger score. And you certainly became faster. +1 cunning.''
<<run $p_traits.push("pickpocketer")>>\
<<set $cun_base += 1>>\
<</if>>\
\
<<if $melee_trait_progress >= 125 && !$p_traits.includes("melee_1")>>\
"Your previous battles have taught you exactly where and how to strike to get wanted results. ''You've learned the skill "Go for the Jugular"'' - x2 attack, 4 turns CD, 25 STA. Do not requires any weapons. Bypasses enemy defense."
<<run $p_traits.push("melee_1")>>\
<</if>>\
\
<<if $melee_trait_progress >= 300 && !$p_traits.includes("melee_2")>>\
"You feel yourself much more confident in fights now. Let them try to mess with you. +1 combat."
<<run $p_traits.push("melee_2")>>\
<<set $combat_base += 1>>\
<</if>>\
\
<<if $melee_trait_progress >= 500 && !$p_traits.includes("melee_3")>>\
"Your past battles have taught you that the first one to run out of steam is the one who falls. Sometimes, you need to take a breather. You’ve learned a ''new ability, "Deep Breath"'', which fully restores your stamina and has a personal cooldown of 5 turns. +5 HP."
<<run $p_traits.push("melee_3")>>\
<<set $health_base += 5>>\
<</if>>\
\
<<if $melee_trait_progress >= 750 && !$p_traits.includes("melee_4")>>\
"Numerous victories in battle have greatly boosted your ego. You feel unstoppable. +1 combat."
<<run $p_traits.push("melee_4")>>\
<<set $combat_base += 1>>\
<</if>>\
\
<<if $melee_trait_progress >= 1000 && !$p_traits.includes("melee_5")>>\
"Anyone who crosses you will deeply regret it. And people know it. You've gained a ''new ability: "Money or Your Life"'' - which forces your opponent to hand over their cash. Can be done only once per fight, effectiveness depends on your cunning, 3 turns CD, 50 STA. +1 combat and +5 HP."
<<run $p_traits.push("melee_5")>>\
<<set $combat_base += 1>>\
<<set $health_base += 5>>\
<</if>>\
\
<<if $racer_trait_progress >= 100 && !$p_traits.includes("racer_1")>>\
"You’ve been in some adrenaline-pumping situations on the road, but here you are, sleeping peacefully and alive. +10 seconds in car chases."
<<run $p_traits.push("racer_1")>>\
<<set $chase_perk_bonus += 10>>\
<</if>>\
\
<<if $racer_trait_progress >= 300 && !$p_traits.includes("racer_2")>>\
"In times of need, time seems to slow down for you. You developed this skill during extreme driving. +10 more seconds in car chases and +1 cunning."
<<run $p_traits.push("racer_2")>>\
<<set $chase_perk_bonus += 10>>\
<<set $cun_base += 1>>\
<</if>>\
\
<<if $racer_trait_progress >= 600 && !$p_traits.includes("racer_3")>>\
"You've been in a lot of scrapes on the road, but you're not so easy to catch. You're an excellent "escape artist". +10 even more seconds in car chases and +5 health."
<<run $p_traits.push("racer_3")>>\
<<set $chase_perk_bonus += 10>>\
<<set $health_base += 5>>\
<</if>>\
\
<<if $anal_whore_trait_progress >= 100 && !$p_traits.includes("anal_whore")>>\
"Whew, your ass has been through a lot of escapades lately. +3 combat HP."
<<run $p_traits.push("anal_whore")>>\
<<set $health_traits_bonus += 3>>\
<</if>>\
\
<<if $anal_whore_trait_progress >= 200 && !$p_traits.includes("anal_whore_2")>>\
"You took a dirty talk about being used to anal very personally. Now, well, you are really used to it? Another +4 combat HP."
<<run $p_traits.push("anal_whore_2")>>\
<<set $health_traits_bonus += 4>>\
<</if>>\
\
<<if $gh_whore_trait_progress >= 100 && !$p_traits.includes("gh_whore")>>\
"Hours of dick servicing taught you how to pleasure your """partner""" fast enough, so he can free space for another one. It just came naturally right now. And you're not afraid to show off your skills in your body language. +1 charm."
<<run $p_traits.push("gh_whore")>>\
<<set $charm_base += 1>>\
<</if>>\
\
<<if $seller_trait_progress >= 100 && !$p_traits.includes("seller")>>\
"You’ve sold enough wares to call yourself a professional dealer. Lying in bed, you catch yourself thinking up new catchphrases and sales tactics - it’s second nature now. +1 cunning."
<<run $p_traits.push("seller")>>\
<<set $cun_base += 1>>\
<</if>>\
\
<<if $seller_trait_progress >= 250 && !$p_traits.includes("seller_2")>>\
"You've sold A LOT of stuff lately. It’s become second nature to think about profit - nothing else matters. And there’s no profit without convincing people you’re right. Good thing you’re so good at it. +1 charm."
<<run $p_traits.push("seller_2")>>\
<<set $charm_base += 1>>\
<</if>>\
\
<<if $equip.anus>>\
<<depravity `2`>>\
<</if>>\/* media should be inserted in [] */
<<set $buttplug_remove = [
"img/media/sex_actions/misc/bp_r_0.webm",
"img/media/sex_actions/misc/bp_r_1.webm",
"img/media/sex_actions/misc/bp_r_2.webm",
]>>
/*Foreplay NPC*/
<<set $ass_slapping = [
"img/media/sex_actions/foreplay/a_s_0.webm",
"img/media/sex_actions/foreplay/a_s_1.webm",
"img/media/sex_actions/foreplay/a_s_2.webm",
"img/media/sex_actions/foreplay/a_s_3.webm",
]>>
<<set $groping = [
"img/media/sex_actions/foreplay/g_0.webm",
"img/media/sex_actions/foreplay/g_1.webm",
"img/media/sex_actions/foreplay/g_2.webm",
"img/media/sex_actions/foreplay/g_3.webm",
"img/media/sex_actions/foreplay/g_4.webm",
]>>
<<set $tits_groping = [
"img/media/sex_actions/foreplay/t_g_0.webm",
"img/media/sex_actions/foreplay/t_g_1.webm",
"img/media/sex_actions/foreplay/t_g_2.webm",
"img/media/sex_actions/foreplay/t_g_3.webm",
"img/media/sex_actions/foreplay/t_g_4.webm",
]>>
<<set $kissing = [
"img/media/sex_actions/foreplay/k_0.webm",
"img/media/sex_actions/foreplay/k_1.webm",
"img/media/sex_actions/foreplay/k_2.webm",
"img/media/sex_actions/foreplay/k_3.webm",
"img/media/sex_actions/foreplay/k_4.webm",
"img/media/sex_actions/foreplay/k_5.webm",
"img/media/sex_actions/foreplay/k_6.webm",
"img/media/sex_actions/foreplay/k_7.webm",
]>>
<<set $buttplug_poking = [
"img/media/sex_actions/foreplay/bp_p_0.webm",
"img/media/sex_actions/foreplay/bp_p_1.webm",
"img/media/sex_actions/foreplay/bp_p_2.webm",
]>>
*/Foreplay PC*/
<<set $crotch_groping = [
"img/media/sex_actions/foreplay/c_g_0.webm",
"img/media/sex_actions/foreplay/c_g_1.webm",
"img/media/sex_actions/foreplay/c_g_2.webm",
"img/media/sex_actions/foreplay/c_g_3.webm",
]>>
<<set $tease = [
"img/media/sex_actions/foreplay/t_0.webm",
"img/media/sex_actions/foreplay/t_1.webm",
"img/media/sex_actions/foreplay/t_2.webm",
"img/media/sex_actions/foreplay/t_3.webm",
"img/media/sex_actions/foreplay/t_4.webm",
"img/media/sex_actions/foreplay/t_5.webm",
]>>
*/Idles*/
<<set $foreplay_idle = [
"img/media/sex_actions/idles/f_0.webp",
"img/media/sex_actions/idles/f_1.webp",
"img/media/sex_actions/idles/f_2.webp",
"img/media/sex_actions/idles/f_3.webp",
"img/media/sex_actions/idles/f_4.webp",
"img/media/sex_actions/idles/f_5.webp",
"img/media/sex_actions/idles/f_6.webp",
"img/media/sex_actions/idles/f_7.webp",
"img/media/sex_actions/idles/f_8.webp",
"img/media/sex_actions/idles/f_9.webp",
]>>
<<set $blowjob_idle = [
"img/media/sex_actions/idles/bj_0.webp",
"img/media/sex_actions/idles/bj_1.webp",
"img/media/sex_actions/idles/bj_2.webp",
"img/media/sex_actions/idles/bj_3.webp",
"img/media/sex_actions/idles/bj_4.webp",
"img/media/sex_actions/idles/bj_5.webp",
"img/media/sex_actions/idles/bj_6.webp",
"img/media/sex_actions/idles/bj_7.webp",
"img/media/sex_actions/idles/bj_8.webp",
]>>
<<set $doggystyle_idle = [
"img/media/sex_actions/idles/d_0.webp",
"img/media/sex_actions/idles/d_1.webp",
"img/media/sex_actions/idles/d_2.webp",
"img/media/sex_actions/idles/d_3.webp",
"img/media/sex_actions/idles/d_4.webp",
"img/media/sex_actions/idles/d_5.webp",
"img/media/sex_actions/idles/d_6.webp",
"img/media/sex_actions/idles/d_7.webp",
"img/media/sex_actions/idles/d_8.webp",
]>>
<<set $missionary_idle = [
"img/media/sex_actions/idles/m_0.webp",
"img/media/sex_actions/idles/m_1.webp",
"img/media/sex_actions/idles/m_2.webp",
"img/media/sex_actions/idles/m_3.webp",
"img/media/sex_actions/idles/m_4.webp",
"img/media/sex_actions/idles/m_5.webp",
"img/media/sex_actions/idles/m_6.webp",
"img/media/sex_actions/idles/m_7.webp",
]>>
*/Blowjob*/
<<set $blowjob_basic = [
"img/media/indoors/bj/0.webm", "img/media/indoors/bj/1.webm", "img/media/indoors/bj/2.webm", "img/media/indoors/bj/3.webm", "img/media/indoors/bj/4.webm", "img/media/indoors/bj/5.webm", "img/media/indoors/bj/6.webm", "img/media/indoors/bj/7.webm", "img/media/indoors/bj/8.webm", "img/media/indoors/bj/9.webm",
"img/media/indoors/bj/10.webm",
"img/media/indoors/bj/11.webm",
"img/media/indoors/bj/12.webm",
"img/media/indoors/bj/13.webm",
"img/media/indoors/bj/14.webm",
"img/media/indoors/bj/15.webm",
"img/media/indoors/bj/16.webm",
"img/media/indoors/bj/17.webm",
"img/media/indoors/bj/18.webm",
"img/media/indoors/bj/19.webm",
"img/media/indoors/bj/20.webm",
"img/media/indoors/bj/21.webm",
"img/media/indoors/bj/22.webm",
]>>
<<set $blowjob_licking = [
"img/media/sex_actions/bj/l_0.webm",
"img/media/sex_actions/bj/l_1.webm",
"img/media/sex_actions/bj/l_2.webm", "img/media/sex_actions/bj/l_3.webm",
"img/media/sex_actions/bj/l_4.webm",
"img/media/sex_actions/bj/l_5.webm",
"img/media/sex_actions/bj/l_6.webm",
]>>
<<set $blowjob_deepthroat = [
"img/media/sex_actions/bj/dt_0.webm",
"img/media/sex_actions/bj/dt_1.webm",
"img/media/sex_actions/bj/dt_2.webm", "img/media/sex_actions/bj/dt_3.webm",
"img/media/sex_actions/bj/dt_4.webm",
"img/media/sex_actions/bj/dt_5.webm",
"img/media/sex_actions/bj/dt_6.webm",
]>>
<<set $blowjob_balls = [
"img/media/sex_actions/bj/bl_0.webm",
"img/media/sex_actions/bj/bl_1.webm",
"img/media/sex_actions/bj/bl_2.webm",
"img/media/sex_actions/bj/bl_3.webm",
"img/media/sex_actions/bj/bl_4.webm",
]>>
<<set $blowjob_cockslapping = [
"img/media/sex_actions/bj/cs_0.webm",
"img/media/sex_actions/bj/cs_1.webm",
"img/media/sex_actions/bj/cs_2.webm",
"img/media/sex_actions/bj/cs_3.webm",
"img/media/sex_actions/bj/cs_4.webm",
"img/media/sex_actions/bj/cs_5.webm",
"img/media/sex_actions/bj/cs_6.webm",
]>>
<<set $blowjob_facefuck = [
"img/media/sex_actions/bj/ff_0.webm",
"img/media/sex_actions/bj/ff_1.webm",
"img/media/sex_actions/bj/ff_2.webm",
"img/media/sex_actions/bj/ff_3.webm",
"img/media/sex_actions/bj/ff_4.webm",
"img/media/sex_actions/bj/ff_5.webm",
]>>
*/Doggystyle*/
<<set $doggystyle_basic = [
"img/media/indoors/vanilla/doggy/0.webm", "img/media/indoors/vanilla/doggy/1.webm", "img/media/indoors/vanilla/doggy/2.webm", "img/media/indoors/vanilla/doggy/3.webm", "img/media/indoors/vanilla/doggy/4.webm", "img/media/indoors/vanilla/doggy/5.webm", "img/media/indoors/vanilla/doggy/6.webm", "img/media/indoors/vanilla/doggy/7.webm", "img/media/indoors/vanilla/doggy/8.webm", "img/media/indoors/vanilla/doggy/9.webm", "img/media/indoors/vanilla/doggy/10.webm",
"img/media/indoors/vanilla/doggy/11.webm",
"img/media/indoors/vanilla/doggy/12.webm",
"img/media/indoors/vanilla/doggy/13.webm",
"img/media/indoors/vanilla/doggy/14.webm",
]>>
<<set $doggystyle_shaking = [
"img/media/sex_actions/doggy/s_0.webm",
"img/media/sex_actions/doggy/s_1.webm",
"img/media/sex_actions/doggy/s_2.webm",
]>>
<<set $doggystyle_assslap = [
"img/media/sex_actions/doggy/as_0.webm",
"img/media/sex_actions/doggy/as_1.webm",
"img/media/sex_actions/doggy/as_2.webm",
"img/media/sex_actions/doggy/as_3.webm",
"img/media/sex_actions/doggy/as_4.webm",
]>>
<<set $doggystyle_hair = [
"img/media/sex_actions/doggy/hp_0.webm",
"img/media/sex_actions/doggy/hp_1.webm",
"img/media/sex_actions/doggy/hp_2.webm",
"img/media/sex_actions/doggy/hp_3.webm",
]>>
<<set $doggystyle_basic_a = [
"img/media/indoors/anal/doggy/0.webm", "img/media/indoors/anal/doggy/1.webm", "img/media/indoors/anal/doggy/2.webm", "img/media/indoors/anal/doggy/3.webm", "img/media/indoors/anal/doggy/4.webm", "img/media/indoors/anal/doggy/5.webm", "img/media/indoors/anal/doggy/6.webm", "img/media/indoors/anal/doggy/7.webm", "img/media/indoors/anal/doggy/8.webm",
"img/media/indoors/anal/doggy/9.webm",
"img/media/indoors/anal/doggy/10.webm",
"img/media/indoors/anal/doggy/11.webm",
"img/media/indoors/anal/doggy/12.webm",
"img/media/indoors/anal/doggy/13.webm",
"img/media/indoors/anal/doggy/14.webm",
]>>
<<set $doggystyle_shaking_a = [
"img/media/sex_actions/doggy/a_s_0.webm",
"img/media/sex_actions/doggy/a_s_1.webm",
"img/media/sex_actions/doggy/a_s_2.webm",
]>>
<<set $doggystyle_assslap_a = [
"img/media/sex_actions/doggy/a_as_0.webm",
"img/media/sex_actions/doggy/a_as_1.webm",
"img/media/sex_actions/doggy/a_as_2.webm",
"img/media/sex_actions/doggy/a_as_3.webm",
]>>
<<set $doggystyle_hair_a = [
"img/media/sex_actions/doggy/a_hp_0.webm",
"img/media/sex_actions/doggy/a_hp_1.webm",
"img/media/sex_actions/doggy/a_hp_2.webm",
"img/media/sex_actions/doggy/a_hp_3.webm",
]>>
*/Missionary*/
<<set $missionary_basic = [
"img/media/indoors/vanilla/missionary/0.webm",
"img/media/indoors/vanilla/missionary/1.webm",
"img/media/indoors/vanilla/missionary/2.webm",
"img/media/indoors/vanilla/missionary/3.webm",
"img/media/indoors/vanilla/missionary/4.webm",
"img/media/indoors/vanilla/missionary/5.webm",
"img/media/indoors/vanilla/missionary/6.webm",
"img/media/indoors/vanilla/missionary/7.webm",
"img/media/indoors/vanilla/missionary/8.webm",
"img/media/indoors/vanilla/missionary/9.webm",
]>>
<<set $missionary_choke = [
"img/media/sex_actions/missionary/c_0.webm",
"img/media/sex_actions/missionary/c_1.webm",
"img/media/sex_actions/missionary/c_2.webm",
"img/media/sex_actions/missionary/c_3.webm",
"img/media/sex_actions/missionary/c_4.webm",
]>>
<<set $missionary_basic_a = [
"img/media/indoors/anal/missionary/0.webm",
"img/media/indoors/anal/missionary/1.webm",
"img/media/indoors/anal/missionary/2.webm",
"img/media/indoors/anal/missionary/3.webm",
"img/media/indoors/anal/missionary/4.webm",
"img/media/indoors/anal/missionary/5.webm",
"img/media/indoors/anal/missionary/6.webm",
"img/media/indoors/anal/missionary/7.webm",
]>>
*/Finishers*/
<<set $climax_face = [
"img/media/f_c/0.webm",
"img/media/f_c/1.webm",
"img/media/f_c/2.webm",
"img/media/f_c/3.webm",
"img/media/f_c/4.webm",
"img/media/f_c/5.webm",
"img/media/f_c/6.webm",
]>>
<<set $climax_body = [
"img/media/b_c/0.webm",
"img/media/b_c/1.webm",
"img/media/b_c/2.webm",
"img/media/b_c/3.webm",
]>>
<<set $climax_creampie = [
"img/media/v_c/0.webm",
"img/media/v_c/1.webm",
"img/media/v_c/2.webm",
"img/media/v_c/3.webm",
"img/media/v_c/4.webm",
]>>
<<set $climax_creampie_a = [
"img/media/a_c/0.webm",
"img/media/a_c/1.webm",
"img/media/a_c/2.webm",
"img/media/a_c/3.webm",
"img/media/a_c/4.webm",
"img/media/a_c/5.webm",
]>>
*/ LESBIAN */
<<set $lesbian_idle = [
"img/media/sex_actions/idles/l_0.webp",
"img/media/sex_actions/idles/l_1.webp",
"img/media/sex_actions/idles/l_2.webp",
"img/media/sex_actions/idles/l_3.webp",
"img/media/sex_actions/idles/l_4.webp",
]>>
<<set $lesbian_foreplay = [
"img/media/lesbian/foreplay/f_0.webm",
"img/media/lesbian/foreplay/f_1.webm",
"img/media/lesbian/foreplay/f_2.webm",
"img/media/lesbian/foreplay/f_3.webm",
"img/media/lesbian/foreplay/f_4.webm",
"img/media/lesbian/foreplay/f_5.webm",
"img/media/lesbian/foreplay/f_6.webm",
"img/media/lesbian/foreplay/f_7.webm",
"img/media/lesbian/foreplay/f_8.webm",
"img/media/lesbian/foreplay/f_9.webm",
"img/media/lesbian/foreplay/f_10.webm",
"img/media/lesbian/foreplay/f_11.webm",
]>>
<<set $lesbian_ass_slapping = [
"img/media/lesbian/foreplay/a_0.webm",
"img/media/lesbian/foreplay/a_1.webm",
"img/media/lesbian/foreplay/a_2.webm",
"img/media/lesbian/foreplay/a_3.webm",
"img/media/lesbian/foreplay/a_4.webm",
]>>
<<set $lesbian_tits_playing = [
"img/media/lesbian/foreplay/t_0.webm",
"img/media/lesbian/foreplay/t_1.webm",
"img/media/lesbian/foreplay/t_2.webm",
"img/media/lesbian/foreplay/t_3.webm",
"img/media/lesbian/foreplay/t_4.webm",
"img/media/lesbian/foreplay/t_5.webm",
"img/media/lesbian/foreplay/t_6.webm",
"img/media/lesbian/foreplay/t_7.webm",
"img/media/lesbian/foreplay/t_8.webm",
]>>
<<set $lesbian_oral = [
"img/media/lesbian/sex/o_0.webm",
"img/media/lesbian/sex/o_1.webm",
"img/media/lesbian/sex/o_2.webm",
"img/media/lesbian/sex/o_3.webm",
"img/media/lesbian/sex/o_4.webm",
"img/media/lesbian/sex/o_5.webm",
"img/media/lesbian/sex/o_6.webm",
]>>
<<set $lesbian_toys_vag = [
"img/media/lesbian/sex/d_0.webm",
"img/media/lesbian/sex/d_1.webm",
"img/media/lesbian/sex/d_2.webm",
"img/media/lesbian/sex/d_3.webm",
"img/media/lesbian/sex/d_4.webm",
"img/media/lesbian/sex/d_5.webm",
]>>
<<set $lesbian_toys_anal =[
"img/media/lesbian/sex/a_d_0.webm",
"img/media/lesbian/sex/a_d_1.webm",
"img/media/lesbian/sex/a_d_2.webm",
"img/media/lesbian/sex/a_d_3.webm",
"img/media/lesbian/sex/a_d_4.webm",
"img/media/lesbian/sex/a_d_5.webm",
"img/media/lesbian/sex/a_d_6.webm",
]>>
<<set $lesbian_fingering = [
"img/media/lesbian/sex/f_0.webm",
"img/media/lesbian/sex/f_1.webm",
"img/media/lesbian/sex/f_2.webm",
"img/media/lesbian/sex/f_3.webm",
"img/media/lesbian/sex/f_4.webm",
"img/media/lesbian/sex/f_5.webm",
]>>
<<set $lesbian_strapon_vag = [
"img/media/lesbian/sex/s_0.webm",
"img/media/lesbian/sex/s_1.webm",
"img/media/lesbian/sex/s_2.webm",
"img/media/lesbian/sex/s_3.webm",
"img/media/lesbian/sex/s_4.webm",
"img/media/lesbian/sex/s_5.webm",
"img/media/lesbian/sex/s_6.webm",
"img/media/lesbian/sex/s_7.webm",
"img/media/lesbian/sex/s_8.webm",
"img/media/lesbian/sex/s_9.webm",
]>>
<<set $lesbian_strapon_anal = [
"img/media/lesbian/sex/a_s_0.webm",
"img/media/lesbian/sex/a_s_1.webm",
"img/media/lesbian/sex/a_s_2.webm",
"img/media/lesbian/sex/a_s_3.webm",
"img/media/lesbian/sex/a_s_4.webm",
"img/media/lesbian/sex/a_s_5.webm",
]>>
<<set $lesbian_orgasm = [
"img/media/lesbian/o_0.webm",
"img/media/lesbian/o_1.webm",
"img/media/lesbian/o_2.webm",
"img/media/lesbian/o_3.webm",
"img/media/lesbian/o_4.webm",
"img/media/lesbian/o_5.webm",
]>><<set_bedroom_bg_sex>>\
<<set $active_media = $foreplay_idle.random()>>\
<center>\
<span class="pic"><img @src ="$active_media"></span>
<<sex_pleasure_meter>>\
<<if $p_pleasure >= 1>>\
<<link "Tease him a little" "Foreplay Turn">>
<<set _v = "tease">>\
<<foreplay_turn_fem>>\
<</link>>
<<link "Kiss" "Foreplay Turn">>
<<set _v = "kissing">>\
<<foreplay_turn_fem>>\
<</link>>
<<if $p_depravity >= 14>>\
<<link "Touch his bulge" "Foreplay Turn">>
<<set _v = "crotch_groping">>\
<<foreplay_turn_fem>>\
<</link>>
<<link "Quick sex.">>\
<<sex_skip>>\
<</link>>
<</if>>\
<<else>>\
<<link "You've had enough." "Home">><</link>>
<</if>>\
<<if $shamed == true && $p_pleasure > 0>>\
<<link "Shame him for using you as a slut." "Foreplay Turn">>\
<<set $active_media = $foreplay_idle.random()>>\
<<set $shamed = false>>\
<<set $turn_sex = "female">>\
<<set $active_npc.pleasure -= 10>>\
<<set _roll = random(0, 20)>>\
<<if _roll > 10 - $charm>>\
<<set $active_npc.depravity -= 2>>\
<<set $p_depravity -= 2>>\
<<set $reaction = "$npc_name listens to you. But still, it's kinda turn off to hear such a thing during sex.">>\
<<else>>\
<<set $reaction = "$npc_name doesn't care about your screaching.">>\
<</if>>\
<</link>>
<</if>>\
/* Pose changes */\
\
<<if $active_npc.pleasure >= 30 && $p_pleasure > 20>>\
<<link "Get on the knees" "Blowjob F">>\
<<set $oral = true>>\
<</link>>
<</if>>\
<<if $active_npc.pleasure >= 50 && $p_pleasure > 40>>
<<link "Get on all four" "Doggystyle F">>\
<<set $pose = "doggystyle">>\
<</link>>
<<link "Lay on your back" "Missionary F">>\
<<set $pose = "missionary">>\
<</link>>
<</if>>\
<<link "Stop this." "Home">>
<<set $active_npc.friendship -= 30>>\
<<sex_reset>>\
<</link>>\
</center>\<<set_bedroom_bg_sex>>\
<<set $active_media = $foreplay_idle.random()>>\
<center>\
<span class="pic"><img @src ="$active_media"></span>
<<sex_pleasure_meter>>\
<<if $active_npc.depravity < 12>>\
<<set _action = $foreplay_male.random()>>\
<<elseif $active_npc.depravity >= 12 && $equip.anus>>\
<<set _roll_plug = random(0, 20)>>\
<<if _roll_plug >= 14>>\
<<set _action = $foreplay_male_buttplug.random()>>\
<<else>>\
<<set _action = $foreplay_male_depraved.random()>>\
<</if>>\
<<else>>\
<<set _action = $foreplay_male_depraved.random()>>\
<</if>>\
\
<<if $active_npc.pleasure <= 0>>\
<<link "He had enough." "Home">><</link>>\
/* Chance to switch to bj on >30 pleasure. Without <= npc gonna ignore code till penetration poses */ \
<<elseif $active_npc.pleasure >= 30 && $active_npc.pleasure <= 50>>\
<<set _roll = random(0, 20)>>\
<<if _roll > 10>>\
<<link "He's pushing you on your knees." "Blowjob M">>\
<</link>>\
<<else>>
/* DEFAULT BEHAVIOR if not bj*/ \
<<linkreplace "He's thinking about...">>\
<<set _v = _action>>\
<<actiondesc_f>>\
<<link "_desc" "Foreplay Turn">>\
<<media_f>>\
<<depravity_check_player>>\
<<set $turn_sex = "male">>\
<<set $p_pleasure += 1 + $npc_charm>>\
<</link>>\
<</linkreplace>>\
<</if>>\
<<elseif $active_npc.pleasure >= 50>>\
<<set _roll = random(0, 20)>>\
<<if _roll > 10>>\
<<link "He's putting you on all four" "Doggystyle M">>\
<</link>>\
<<else>>\
<<link "He's putting you on your back." "Missionary M">>\
<</link>>\
<</if>>
<<else>>\
/* Default behavior */ \
<<linkreplace "He's thinking about...">>\
<<set _v = _action>>\
<<actiondesc_f>>\
<<link "_desc" "Foreplay Turn">>\
<<media_f>>\
<<depravity_check_player>>\
<<set $turn_sex = "male">>\
<<set $p_pleasure += 1 + $npc_charm>>\
<</link>>\
<</linkreplace>>
<</if>>
</center>\<<set_bedroom_bg_sex>>\
<center>\
<<if $active_media.endsWith(".webp")>>\
<span class="pic"><img @src ="$active_media"></span>
<<elseif $active_media.endsWith(".webm")>>\
<video @src="$active_media" autoplay loop muted controls width="600" height="350"></video>
<</if>>\
$reaction
\
<<switch $turn_sex>>\
<<case "female">>\
<<link "Proceed" "Foreplay M">>\
<</link>>\
<<case "male">>\
<<link "Proceed" "Foreplay F">>\
<</link>>\
<</switch>>
\
\
</center>\/* if _action = action-name (misc)
then set $active_media = $media_array_name.random()*/
<<widget "depravity_check_player">>\
<<if _v == "ass_slapping" && $p_depravity <= 14>>\
<<set $reaction = "He begin slapping your bum. And you're not used to that at all! Ouch!">>\
<<set $p_depravity += 1>>\
<<set $p_pleasure -= 15>>\
<<set $shamed = true>>\
<</if>>\
<<if _v == "crotch_groping_male" && $p_depravity <= 14>>\
<<set $reaction = "He's groping you too tight! That's not really a pleasant experience...">>\
<<set $p_depravity += 1>>\
<<set $p_pleasure -= 15>>\
<<set $shamed = true>>\
<</if>>\
<<if _v == "balls_focus_male" && $p_depravity <= 14>>\
<<set $reaction = "He yanked the dick out of your mouth and brought his balls close to your face. Yikes! Its hairy!">>\
<<set $p_depravity += 1>>\
<<set $p_pleasure -= 15>>\
<<set $shamed = true>>\
<</if>>\
<<if _v == "deepthroat_male" && $p_depravity <= 14>>\
<<set $reaction = "He grabbed your head and started pushing his dick right into your throat. Too deep for you! Too deep...">>\
<<set $p_depravity += 1>>\
<<set $p_pleasure -= 15>>\
<<set $shamed = true>>\
<</if>>\
<<if _v == "cock-slapping" && $p_depravity <= 14>>\
<<set $reaction = "He yanked the cock out of your hands and started slapping you with it. Ouch! You played along but didn't really expected that...">>\
<<set $p_depravity += 1>>\
<<set $p_pleasure -= 15>>\
<<set $shamed = true>>\
<</if>>\
<<if _v == "facefuck" && $p_depravity <= 14>>\
<<set $reaction = "He grabbed your head and begin relentlessly facefucking you. Thats too much for you!">>\
<<set $p_depravity += 1>>\
<<set $p_pleasure -= 15>>\
<<set $shamed = true>>\
<</if>>\
<</widget>>\
<<widget "depravity_check_npc">>\
<<if _v == "crotch_groping_fem" && $active_npc.depravity <=14>>\
<<set $reaction = "You've tried to feel the partner's pleasure by groping his crotch, but seems like this made him feel uncomfortable.">>'
<<set $active_npc.depravity += 1>>\
<<set $active_npc.pleasure -= 15>>\
<</if>>
<<if _v == "deepthroat_fem" && $active_npc.depravity <=14>>\
<<set $reaction = "You took a deep breath and pushed yourself down on his shaft, feeling his cock hit the back of your throat as you deepthroated him. You can tell that he's not used to such treatment... Either way he likes that.">>'
<<set $active_npc.depravity += 1>>\
<</if>>
<<if _v == "balls_focus_fem" && $active_npc.depravity <=14>>\
<<set $reaction = "You stroked his shaft with your hand as you sucked his balls, feeling them tighten in your mouth. You can tell that he's not used to such treatment... Either way he likes that.">>'
<<set $active_npc.depravity += 1>>\
<</if>>
<</widget>>
<<widget climax>>\
<<if $anal_sex == true && $active_npc.depravity > 15>>
<<set _climax_roll = random(0, 20)>>\
<<if _climax_roll > 10>>\
<<set $active_media = $climax_face.random()>>\
<<goto "Climax Face">>\
<<else>>\
<<set $active_media = $climax_creampie_a.random()>>\
<<goto "Climax Anal Creampie">>\
<</if>>\
<<elseif $active_npc.depravity > 15 && $oral == true>>\
<<set $active_media = $climax_face.random()>>\
<<goto "Climax Face">>\
<<elseif $active_npc.depravity > 15 && $oral == false>>\
<<set _climax_roll = random(0, 20)>>\
<<if _climax_roll > 10>>\
<<set $active_media = $climax_creampie.random()>>\
<<goto "Climax Creampie">>\
<<else>>\
<<set $active_media = $climax_face.random()>>\
<<goto "Climax Face">>\
<</if>>\
<<elseif $oral == false>>\
<<set _climax_roll = random(0, 20)>>\
<<if _climax_roll > 10>>\
<<set $active_media = $climax_creampie.random()>>\
<<goto "Climax Creampie">>\
<<else>>
<<set $active_media = $climax_body.random()>>\
<<goto "Climax OnBody">>\
<</if>>
<<else>>
<<set $active_media = $climax_body.random()>>\
<<goto "Climax OnBody">>\
<</if>>\
<</widget>>\
<<widget "media_f">>\
\*Female*\
<<if _v == "crotch_groping">>\
<<set $active_media = $crotch_groping.random()>>\
<</if>>\
<<if _v == "kissing">>\
<<set $active_media = $kissing.random()>>
<</if>>\
<<if _v == "tease">>\
<<set $active_media = $tease.random()>>\
<</if>>\
\*Male *\
<<if _v == "poke">>\
<<set $active_media = $buttplug_poking.random()>>\
<</if>>\
<<if _v == "ass_slapping">>\
<<set $active_media = $ass_slapping.random()>>\
<</if>>\
<<if _v == "groping">>\
<<set $active_media = $groping.random()>>\
<</if>>\
<<if _v == "tits_groping">>\
<<set $active_media = $tits_groping.random()>>\
<</if>>\
<</widget>>\
<<widget "actiondesc_f">>\
<<if _v == "crotch_groping">>\
<<set _desc = "Groping his crotch...">>\
<<set $reaction = "You reached out and grabbed his crotch, feeling his hardness through his pants as you squeezed gently.">>\
<</if>>\
<<if _v == "kissing">>\
<<set _desc = "Kissing...">>\
<<set $reaction = "Your lips met in a passionate kiss, your tongues twisting together as you tasted each other deeply.">>\
<</if>>\
<<if _v == "tease">>\
<<set _desc = "Tease him a little...">>\
<<set $reaction = "Your body moving in time as you teased him with your movements.">>\
<</if>>\
<<if _v == "ass_slapping">>\
<<set _desc = "Slapping your ass.">>\
<<set $reaction = "You yelped as he slapped your ass, the sting making you gasp with pleasure as he massaged the sore spot.">>\
<</if>>\
<<if _v == "groping">>\
<<set _desc = "Grope you.">>\
<<set $reaction = "You felt his hand squeeze you, pulling you closer, tingling sensation spreads throughout you.">>\
<</if>>\
<<if _v == "tits_groping">>\
<<set _desc = "Groping your tits.">>\
<<set $reaction = "You gasped as he cupped your breasts, his thumbs brushing over your nipples as he teased them into hard peaks.">>\
<</if>>\
<<if _v == "poke">>\
<<set _desc = "Poke with your buttplug.">>\
<<set $reaction = "You moaned as he poked and played alittle with your buttplug, feeling it fill you up as he began to move it in and out of you.">>\
<</if>>\
<</widget>>\
<<widget "media_bj">>\
<<switch _v>>\
<<case "suck_fem">>\
<<set $active_media = $blowjob_basic.random()>>\
<<case "suck_male">>\
<<set $active_media = $blowjob_basic.random()>>\
<<case "lick_fem">>\
<<set $active_media = $blowjob_licking.random()>>\
<<case "lick_male">>\
<<set $active_media = $blowjob_licking.random()>>\
<<case "deepthroat_fem">>\
<<set $active_media = $blowjob_deepthroat.random()>>\
<<case "deepthroat_male">>\
<<set $active_media = $blowjob_deepthroat.random()>>\
<<case "balls_focus_fem">>\
<<set $active_media = $blowjob_balls.random()>>\
<<case "balls_focus_male">>\
<<set $active_media = $blowjob_balls.random()>>\
<<case "cock-slapping">>
<<set $active_media = $blowjob_cockslapping.random()>>\
<<case "facefuck">>\
<<set $active_media = $blowjob_facefuck.random()>>\
<</switch>>
<</widget>>\\
<<widget "actiondesc_bj">>\
<<switch _v>>\
<<case "suck_fem">>\
<<set _desc = "Sucking his cock.">>\
<<set $reaction = "You wrapped your lips around his cock, sucking him deep into your mouth as you stroked his shaft with your hand.">>\
<<case "suck_male">>\
<<set _desc = "Enjoying himself.">>\
<<set $reaction = "He thrust his hips using your mouth for pleasure.">>\
<<case "lick_fem">>\
<<set _desc = "About licking his cock.">>\
<<set $reaction = "You licked and sucked at his cock, teasing the head with your tongue as you stroked him with your hand.">>\
<<case "lick_male">>\
<<set _desc = "Using your tongue.">>\
<<set $reaction = "He pulled out of your mouth and begin pressing his dick to you, forcing you to lick and suck anywhere he presses.">>\
<<case "deepthroat_fem">>\
<<set _desc = "Using your throat.">>\
<<set $reaction = "You took a deep breath and pushed down on his shaft, feeling his cock hit the back of your throat as you took him all in.">>\
<<case "deepthroat_male">>\
<<set _desc = "Going for deepthroating.">>\
<<set $reaction = "He pushed your head down, forcing your throat to swallow his cock as he held you still, his balls slapping against your chin.">>\
<<case "balls_focus_fem">>\
<<set _desc = "Focusing his balls.">>\
<<set $reaction = "You stroked his shaft with your hand as you sucked his balls, feeling them tighten in your mouth.">>\
<<case "balls_focus_male">>\
<<set _desc = "Giving you a taste of his balls.">>\
<<set $reaction = "He pulled out of your mouth and pushed your head down, forcing your mouth onto his balls as he made you lick and suck at them.">>\
<<case "cock-slapping">>\
<<set _desc = "Cock-slapping.">>\
<<set $reaction = "He pulled the cock out of your hands and slapped your face with it, leaving a red mark on your cheek.">>\
<<case "facefuck">>\
<<set _desc = "Facefucking">>\
<<set $reaction = "He grabbed your head and began to fuck your mouth, his hips thrusting hard as he forced your head back and forth on his cock.">>\
<</switch>>\
<</widget>>\
<<widget "actiondesc_ds">>\
<<switch _v>>\
<<case "take_it">>\
<<set _desc = "Taking it...">>\
<<set $reaction = "You arched your back and pushed your hips back, taking him deep inside you as he began to thrust.">>\
<<case "shaking">>\
<<set _desc = "Shaking your ass.">>\
<<set $reaction = "You ground your hips back against him, feeling his cock rub against your spot as you moaned with pleasure.">>\
<<case "keep_on">>\
<<set _desc = "Keep on.">>\
<<set $reaction = "He kept on thrusting, his cock filling you up as you moaned with pleasure.">>\
<<case "ass_slap">>\
<<set _desc = "Slapping your ass.">>\
<<set $reaction = "He slapped your ass, the sting making you gasp with pleasure as he continued to fuck you.">>\
<<case "hair_pull">>\
<<set _desc = "Pulling your hair.">>\
<<set $reaction = "He grabbed a handful of your hair and pulled, forcing your head back as he fucked you harder in such dominant position.">>\
<<case "take_it_a">>\
<<set _desc = "Taking it into ass...">>\
<<set $reaction = "You relaxed your muscles and pushed back, taking him deep inside your ass as he began to thrust.">>\
<<case "shaking_a">>\
<<set _desc = "Shaking your ass on his dick.">>\
<<set $reaction = "You ground your hips back against him, feeling his cock rub against your spot as you moaned with pleasure.">>\
<<case "keep_on_a">>\
<<set _desc = "Continuing fucking your ass.">>\
<<set $reaction = "He kept on thrusting, his cock filling your ass up as you moaned with pleasure.">>\
<<case "ass_slap_a">>\
<<set _desc = "Slapping your ass.">>\
<<set $reaction = "He slapped your ass, the sting making you gasp with pleasure as he continued to fuck your ass.">>\
<<case "hair_pull_a">>\
<<set _desc = "Pulling your hair while pounding your backdoor.">>\
<<set $reaction = "He grabbed a handful of your hair and pulled, forcing your head back as he fucked your butt harder in such dominant position.">>\
<</switch>>\
<</widget>>\
<<widget "media_ds">>\
<<switch _v>>\
<<case "take_it">>\
<<set $active_media = $doggystyle_basic.random()>>\
<<case "shaking">>\
<<set $active_media = $doggystyle_shaking.random()>>\
<<case "keep_on">>\
<<set $active_media = $doggystyle_basic.random()>>\
<<case "ass_slap">>\
<<set $active_media = $doggystyle_assslap.random()>>\
<<case "hair_pull">>\
<<set $active_media = $doggystyle_hair.random()>>\
<<case "take_it_a">>\
<<set $active_media = $doggystyle_basic_a.random()>>\
<<case "shaking_a">>\
<<set $active_media = $doggystyle_shaking_a.random()>>\
<<case "keep_on_a">>\
<<set $active_media = $doggystyle_basic_a.random()>>\
<<case "ass_slap_a">>\
<<set $active_media = $doggystyle_assslap_a.random()>>\
<<case "hair_pull_a">>\
<<set $active_media = $doggystyle_hair_a.random()>>\
<</switch>>
<</widget>>\\
<<widget actiondesc_miss>>\
<<switch _v>>\
<<case "take_it">>\
<<set _desc = "Taking it..">>\
<<set $reaction = "You wrapped your legs around him, pulling him deeper inside you as he thrusts.">>\
<<case "ask_tempo">>\
<<set _desc = "Asking $npc_name to speed it up!">>\
<<set $reaction = "You begged him to fuck you harder, moaning as you ground your hips against him.">>\
<<case "keep_on">>\
<<set _desc = "Keep on.">>\
<<set $reaction = "He kept on thrusting, his cock filling you up as you moaned with pleasure.">>\
<<case "tempo">>\
<<set _desc = "To fuck you hard.">>\
<<set $reaction = "He grabbed your hips and began to fuck you harder and quicker, his cock pounding into you as you moan by each thrust.">>\
<<case "choke">>\
<<set _desc = "To choke you a lil bit..">>\
<<set _reaction = "He grabbed your neck squeezing it a bit as he fucked you harder, his hips thrusting against yours.">>\
<<case "take_it_a">>\
<<set _desc = "Taking it into ass..">>\
<<set $reaction = "You relaxed your muscles and pulled him closer, taking him deep inside your ass as he thrusts.">>\
<<case "ask_tempo_a">>\
<<set _desc = "Asking $npc_name to fuck your ass really hard...">>\
<<set $reaction = "You begged him to fuck your ass harder, moaning as you ground your hips against him.">>\
<<case "keep_on_a">>\
<<set _desc = "Continuing fucking your ass.">>\
<<set $reaction = "He kept on thrusting, his cock filling your ass up as you moaned with pleasure.">>\
<<case "tempo_a">>\
<<set _desc = "To fuck your ass really hard.">>\
<<set $reaction = "He grabbed your hips and began to fuck your butt harder and quicker, his cock pounding into you as you moan by each thrust.">>\
<</switch>>\
<</widget>>\
<<widget "media_miss">>\
<<switch _v>>\
<<case "take_it">>\
<<set $active_media = $missionary_basic.random()>>\
<<case "ask_tempo">>\
<<set $active_media = $missionary_tempo.random()>>\
<<case "keep_on">>\
<<set $active_media = $missionary_basic.random()>>\
<<case "choke">>\
<<set $active_media = $missionary_choke.random()>>\
<<case "take_it_a">>\
<<set $active_media = $missionary_basic_a.random()>>\
<<case "ask_tempo_a">>
<<set $active_media = $missionary_tempo_a.random()>>\
<<case "keep_on_a">>\
<<set $active_media = $missionary_basic_a.random()>>\
<<case "tempo_a">>\
<<set $active_media = $missionary_tempo_a.random()>>\
<</switch>>
<</widget>>\
<<widget "sex_reset">>
<<set $anal_sex = false>>\
<<set $asked_for_anal = false>>\
<<set $p_pleasure = 10>>\
<<set $pc_active = true>>\
<<set $sex_mistakes = 0>>\
<<set $active_npc.hadSex += 1>>\
<<set $active_npc.pleasure = 10>>\
<<setNpc>>\
<<set $active_npc = "">>\
<<addhours 1>>\
<</widget>>\
<<widget "foreplay_turn_fem">>
<<actiondesc_f>>\
<<media_f>>\
<<depravity_check_npc>>\
<<set $turn_sex = "female">>\
<<set $active_npc.pleasure = Math.clamp($active_npc.pleasure + $charm, 0, 35)>>\>>\
<</widget>>\
<<widget "bj_turn_fem">>
<<actiondesc_bj>>\
<<media_bj>>\
<<depravity_check_npc>>\
<<set $turn_sex = "female">>\
<<set _random_number = random(0, 3)>>\
<<set $active_npc.pleasure += _random_number + $charm>>\
<</widget>>\
<<widget "ds_turn_fem">>
<<actiondesc_ds>>\
<<media_ds>>\
<<depravity_check_npc>>\
<<set $turn_sex = "female">>\
<<set _random_number = random(0, 5)>>\
<<set $active_npc.pleasure += _random_number + $charm>>\
<</widget>>\
<<widget "miss_turn_fem">>
<<actiondesc_miss>>\
<<media_miss>>\
<<depravity_check_npc>>\
<<set $turn_sex = "female">>\
<<set _random_number = random(0, 5)>>\
<<set $active_npc.pleasure += _random_number + $charm>>\
<</widget>>\
<<widget "sex_cd_check">>
<<silently>>\
<<if $pose_change_cd > 0>>
<<set $pose_change_cd -= 1>>
<</if>>
<</silently>>\
<</widget>>\
<<widget "sex_pleasure_meter">>\
<<if $active_npc.pleasure >= 30 && $active_npc.pleasure < 80>>\
Main stage.
<<elseif $active_npc.pleasure >= 80>>\
Main stage. It's easy to tell that he's very close to orgasm.
<<elseif $active_npc.pleasure < 30>>\
Foreplay.
<</if>>\
<<if $p_pleasure < 15>>\
A few more dirty moves from him, and that's it - you’re not putting up with this any longer.
<</if>>\
<</widget>>\<<set $foreplay_male = [
"kissing",
"groping",
"tits_groping",
]>>
<<set $foreplay_male_buttplug = [
"poke",
]>>
<<set $foreplay_male_depraved = [
"kissing",
"groping",
"tits_groping",
"ass_slapping",
]>>
<<set $foreplay_fem = [
"kissing",
"tease",
]>>
<<set $foreplay_fem_depraved = [
"kissing",
"tease",
"crotch_groping",
]>>
<<set $blowjob_fem = [
"suck_fem",
"lick_fem",
]>>
<<set $blowjob_fem_depraved = [
"suck_fem",
"lick_fem",
"deepthroat_fem",
"balls_focus_fem",
]>>
<<set $blowjob_male = [
"suck_male",
"lick_male",
]>>
<<set $blowjob_male_depraved = [
"suck_male",
"cock-slapping",
"balls_focus_male",
"facefuck",
"deepthroat_male",
]>>
<<set $doggystyle_fem = [
"take_it",
"shaking",
]>>
<<set $doggystyle_fem_depraved = [
"take_it",
"shaking",
]>>
<<set $doggystyle_male = [
"keep_on",
]>>
<<set $doggystyle_male_depraved = [
"keep_on",
"ass_slap",
"hair_pull",
]>>
<<set $doggystyle_fem_anal = [
"take_it_a",
"shaking_a",
]>>
<<set $doggystyle_male_anal = [
"keep_on_a",
"ass_slap_a",
"hair_pull_a",
]>>
<<set $buttplug_remove = [
"pull out",
]>>
<<set $missionary_fem = [
"take_it",
]>>
<<set $missionary_fem_depraved = [
"take_it",
]>>
<<set $missionary_fem_anal = [
"take_it_a",
]>>
<<set $missionary_male = [
"keep_on",
]>>
<<set $missionary_male_depraved = [
"keep_on",
"choke",
]>>
<<set $missionary_male_anal = [
"keep_on_a",
]>><<set_bedroom_bg_sex>>\
<<set $active_media = $blowjob_idle.random()>>\
<center>\
<span class="pic"><img @src ="$active_media"></span>
<<sex_pleasure_meter>>\
<<if $p_pleasure >= 20>>\
<<link "Proceed as usual" "Blowjob Turn">>
<<set _v = "suck_fem">>\
<<bj_turn_fem>>\
<</link>>
<<link "Focus on licking" "Blowjob Turn">>
<<set _v = "lick_fem">>\
<<bj_turn_fem>>\
<</link>>
<<if $p_depravity >= 14>>\
<<link "Deepthroat" "Blowjob Turn">>
<<set _v = "deepthroat_fem">>\
<<bj_turn_fem>>\
<</link>>
<<link "Focus on balls" "Blowjob Turn">>
<<set _v = "balls_focus_fem">>\
<<bj_turn_fem>>\
<</link>>
<<link "Quick sex.">>\
<<sex_skip>>\
<</link>>
<</if>>\
<<else>>\
<<link "You've had enough." "Home">><</link>>
<</if>>
<<if $shamed == true && $p_pleasure > 15>>\
<<link "Shame him for his behavior." "Blowjob Turn">>\
<<set $active_media = $blowjob_idle.random()>>\
<<set $shamed = false>>\
<<set $turn_sex = "female">>\
<<set $active_npc.pleasure -= 10>>\
<<set _roll = random(0, 20)>>\
<<if _roll > 10 - $charm>>\
<<set $active_npc.depravity -= 2>>\
<<set $p_depravity -= 2>>\
<<set $reaction = "$npc_name listens to you. But still, it's kinda turn off to hear such a thing during sex.">>\
<<else>>\
<<set $reaction = "$npc_name is don't care about your screaching.>>\
<</if>>\
<</link>>
<</if>>\
\
<<if $active_npc.pleasure >= 50 && $p_pleasure > 30>>\
<<link "Get on all four" "Doggystyle F">>
<<set $pose_change_cd = random(1, 4)>>\
<</link>>
<<link "Lay on back" "Missionary F">>
<<set $pose_change_cd = random(1, 4)>>\
<</link>>
<</if>>\
<<link "Stop this." "Home">>
<<set $active_npc.friendship -= 30>>\
<<sex_reset>>\
<</link>>\
</center>\<<silently>>
<<switch $active_npc.trait>>
<<case "Thug">>
<<set _yapping = $thug_yapping.random()>>
<<case "Thief">>
<<set _yapping = $thief_yapping.random()>>
<<case "Traveler">>
<<set _yapping = $traveler_yapping.random()>>
<<case "Nothing">>
<<set _yapping = $nothing_yapping.random()>>
<</switch>>
<<if $active_npc.depravity < 14>>
<<set _pickup_line = $low_d_pickup_line.random()>>
<<else>>
<<set _pickup_line = $high_d_pickup_line.random()>>
<</if>>
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/background/home/talk_npc.webp");
inset: 0;
position: fixed;
filter:grayscale(100%);
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 91%);
background-size: cover;
}
</style>\
<span class="male_text">- "_yapping"</span>
You and $active_npc.name spent some time together, enjoying each other's company.
<<if $charm >= $active_npc.charm>>\
He's obviously checking you out, and avoiding eye contact is becoming impossible.
<span class="male_text">- "_pickup_line"</span>
<<charm_link>><<link "Invite him over." "Foreplay F">>
<<set $npc_name = $active_npc.name>>\
<<set $npc_charm = $active_npc.charm>>\
<<set $active_npc.pleasure = 10>>\
<<sex_rep_check>>\
<</link>><</charm_link>>
<<charm_link>><<link "Let's do it quick." "NPC Quickie">>
<<set $npc_name = $active_npc.name>>\
<<set $npc_charm = $active_npc.charm>>\
<<sex_rep_check>>\
<</link>><</charm_link>>
<</if>>\
<<link "Say goodbye." "Contacts">>
<<set $active_npc = "">>\
<</link>>\<style>
body.downtown::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/downtown/wc.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center><<set _media_bj = $wc_blow.random()>>\
<<set_blowjob_desc>>\
Your counter business proposal amused him greatly. With a smug smirk, he took you to the most "appropriate" place for your "deal" in these parts - the bar's restroom.
You were worried if it was really worth getting your knees dirty to save a mere sum, but it’s your lucky day because this place is clean as a whistle!
Your partner locked the door behind you and began unzipping his pants with a very suggestive look.
<<linkappend "Get yourself on the knees.">>
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
_blowjob_desc
<<linkappend "He positioned you as desired and prepared himself for penetration.">>\
<br>\
<<roll_penetration>>\
<<if _penetration == "anal">>\
<<set _media_sex = $wc_anal.random()>>\
<<anal_whore_progress>>\
<<else>>\
<<set _media_sex = $wc_vag.random()>>\
<</if>>\
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<<set_event_desc>>\
_event_desc
<<linkappend "It wasnt really long before you heard a grunts of incoming orgasm from the guy.">>\
<<finisher>>
It took you awhile to clean yourself before you decided <<link "to move on" "Downtown Bar">><</link>>. The guy kept his promise and gave you the address of the Street Gang's main turf. Now you can visit them from Downtown's main street.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
\
</center><<set_bedroom_bg>>\
Your inventory:
<<give $p_inv $stash use drop inspect stack all>>
Stash for items:
<<give $stash $p_inv use drop inspect stack all>>
Range weapons on you:
<<give $p_range $range_stash use drop inspect stack all>>
Stash for range weapons:
<<give $range_stash $p_range use drop inspect stack all>>
Melee weapons on you:
<<give $p_melee $melee_stash use drop inspect stack all>>
Stash for melee weapons:
<<give $melee_stash $p_melee use drop inspect stack all>>
\
[[Get back to bedroom->Bedroom]]
[[Get back to main room->Home]]<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/nightclub.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
filter:brightness(70%);
background-size: cover;
}
</style>\
"The Getaway Groove." "Dance like nobody’s watching - and if they are, they’re not telling." - Yeah, of course. You’re not going to embarrass yourself with dancing for sure. Once this was a hotspot for the elite, now a refuge for the lost. The music pounds so hard it drowns out thoughts, the dance floor packed with drifters, burnouts, and those looking to forget.
<<if !$gameDate.getHours() >= 20 || !$gameDate.getHours() <= 3>>\
It's not a prime time right now for a such place, there's only a few people here and there.
<<else>>\
It's a prime time right now. Club is crowded with people.
<</if>>\
<span id="nightclub"></span>\
<<action_link>><span class="action_link"><<link "Chill out while trying to meet someone." "Nightclub Meeting">>
<<observer_progress>>\
<<addmins 30>>\
<</link>></span><</action_link>>
\
<<if $p_inv.compare($nightclub_drugs)>>\
<<cun_link>><<link "Start selling drugs to the nightgoers.">>\
<<roll>>\
<<if _random > 1>>\
<<set $random_amount = random(5, 20)>>\
<<set _cun_bonus = $cun * 2>>
<<seller_progress>>\
<<set $got_money = (3 + _cun_bonus) * $random_amount>>\
<<money `$got_money`>>\
<<addhours 1>>\
<<set $reputation += 20>>\
<<drop $p_inv "Drugs" $random_amount>>\
<<run Engine.show()>>\
<<replace "#nightclub">> You've sold $random_amount pieces of drugs and got $got_money​$.<br><</replace>>\
<<else>>\
<<goto "Nightclub Quickie Caught">>\
<</if>>\
<</link>><</cun_link>>\
<<else>>\
<span class="not_available">You definitely could try to sell some drugs to the visitors of this club if you had atleast 20 pcs on you.</span>\
<</if>>
<<out_link>><<link "Get back to the main street of Downtown" "Downtown">>\
<<addmins 15>>\
<</link>><</out_link>>\<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/nightclub.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $gangs_base === false>>\
<<set _roll = random(0, 20)>>\
<<if _roll > 14>>\
Some random drunked guy rolled over to you and started whispering various vulgarities in your ear... He's trying to convience you to go with him <<charm_link>><<link "somewhere semi-private." "Nightclub Quickie Info">><<set $gangs_base = true>><<set $p_depravity += 2>><</link>></span>
It's not too hard to discern in his murmur that he has a lot of friends among Street Gangs... definitely you can lure info about their location out off him.
<<link "Turn him off." "Nightclub">><</link>>\
<<else>>\
<<createnpc_dt>>\
<<depravity_talk>>\
You've met _name _surname, _job.
<<if $p_traits.includes("observer")>>\
You're pretty sure that he's trait is... _trait.
<<observer_combat_temp>>\
<<if $p_traits.includes("observer_2")>>\
<<observer_driving_temp>>\
<<observer_cun_temp>>\
<</if>>\
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly what his abilities are.</span>
<</if>>\
<br>\
Add to contacts?
<<link "Yes" "Nightclub">>
<<addnpc>>
<</link>>
<<link "No" "Nightclub">><</link>>
<</if>>\
<<else>>\
<<set _gender_roll = random(0, 10)>>\
<<if _gender_roll > 3>>\
<<createnpc_dt>>\
<<depravity_talk>>\
You've met _name _surname, _job.
<<if $p_traits.includes("observer")>>\
You're pretty sure that he's trait is... _trait.
<<observer_combat_temp>>\
<<if $p_traits.includes("observer_2")>>\
<<observer_driving_temp>>\
<<observer_cun_temp>>\
<</if>>\
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly what his abilities are.</span>
<</if>>\
<<if _depravity >= 15>>\
<span class="male_text">- "So, how about we're gonna rock it tonight?"</span>
<<charm_link>><<link "Move somewhere more private." "Nightclub Quickie">>
<<set _npc.friendship += $charm * 3>>\
<<set _npc.hadSex = 1>>\
<<sex_rep_check>>\
<<addnpc>>\
<</link>><</charm_link>>
<</if>>\
<br>\
Add to contacts?
<<link "Yes" "Nightclub">>
<<addnpc>>
<</link>>
<<link "No" "Nightclub">><</link>>
<<else>>\
<<createnpc_fem_dt>>\
<<depravity_talk>>\
You've met _name _surname, she's a _job.
You can rate her at _rate out of 10.
<<moral_desc_temp>>
<<if $p_traits.includes("observer")>>\
She's <<beauty_desc_temp>> her clothes are <<clothes_desc_temp>> and body is <<body_desc_temp>>
<<depravity_desc_temp>>
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly why you rate her like that...</span>
<</if>>\
<br>\
Add to contacts?
<<link "Yes" "Nightclub">>
<<addnpc_fem>>\
<</link>>
<<link "No" "Nightclub">><</link>>
<</if>>\
<</if>><style>
body.downtown::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/downtown/wc.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<set_wc_talks>>\
<center><<set _media_bj = $wc_blow.random()>>\
He leads you into the club's WC. When you enter the bathroom, you smell a subtle haze of smoke and perfume. This "sacred" place has its own vibe that nightlife goers probably like a lot. This is a perfect spot to fresh yourself up, to take a smoke with a friend, maybe even to have a drug or... to fuck. And latter is the reason why are you here.
Seems like your fuckbuddy has the same thoughts, it took him a moment after door to the club closes before he starts making out with you. But you didn't expect that he's wanna to have sex with you right in front of other club patrons... Surprisingly, nobody seems to be astonished or shocked by your performance. Is it a normal thing in here? What a strange place...
Your partner has already unbuttoned his pants and begins to urgently put pressure on your shoulders, without any fear of the crowd.
<<linkappend "Get yourself on the knees.">>
<span id="public_gray">"_random_talk_1" - you hear a whispers from the crowd...</span>
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
<<linkappend "He has putted you into desired position and prepared himself for penetration.">>\
<<if _penetration == "anal">>\
<br>\
<<roll_penetration>>\
<<set _media_sex = $wc_anal.random()>>\
<<anal_whore_progress>>\
<<else>>\
<<set _media_sex = $wc_vag.random()>>\
<</if>>\
<span id="public_gray">"_random_talk_2" - they do not whisper anymore...</span>
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<<set_event_desc>>\
_event_desc
<span id="public_gray">"_random_talk_3" - people are attentively watch your performance...</span>
<<linkappend "It wasnt really long before you heard a grunts of incoming orgasm from the guy.">>\
<<finisher>>
You sit together for a while and talk about various things. Well, actually, its mostly your partner who were talking. He's a big yapper, and somehow all his babble led to bragging about his gang membership in one way or another. It was easy to get information about their hometurf from him. When you got the info that you were needed, you just told him that you're gonna get a drink and you're gonna be right back. And then you <<link "left the scene" "Nightclub">><</link>>.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
\
</center><style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/suburbsburglary.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Quiet halls, typical house of suburban monotony. Family photos line the walls, their smiling faces frozen in time, oblivious to your presence. The creak of the floorboards feels deafening - every shadow a potential witness. Time to work quick and clean.
<<set _roll_safe = random(0, 11) + $cun>>\
<<if $p_traits.includes("burglar")>>\
<<set _alert = random(3, 4)>>\
<<else>>\
<<set _alert = random(2, 3)>>\
<</if>>\
<span id="alert-display"><<display "Suburbs Alert">></span><span id="noice"></span> \
\
<<suburbs_burglary>>\
<<suburbs_burglary>>\
<<suburbs_burglary>>\
<<suburbs_burglary>>\
<<suburbs_burglary>>\
<<suburbs_burglary>>\
<<if _roll_safe > 10>>
There's a safe...\
<<if $p_inv.has("Safe-cracking kit")>>\
<<safe_cracking_suburbs>>\
<<else>>\
but you lack any suitable tools for it...\
<</if>>\
<</if>>\
<span id="suburbs-getaway"><<display "Suburbs Getaway">></span><<if _alert >= 2>>
<span class="out_link"><<link "Leave this place" "Suburbs">>\
<<addmins 15>>\
<<burglar_success>>\
<</link>></span>
<<else>>
<span class="out_link"><<link "Flee through fences" "Suburbs">>\
<<addmins 15>>\
<<stam `-3`>>\
<<burglar_success>>\
<</link>></span>
<</if>>\<<if _alert >= 3>>\
It's quiet.
<</if>>\
<<if _alert === 2>>\
You hear a dogs barking outside...
<</if>>\
<<if _alert === 1>>\
Someone is coming, run!
<</if>>\
<<if _alert === 0>>\
<<burglar_fail>>\
<<goto "Suburbs Burglary Caught">>
<</if>><style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/suburbsburglary.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $do_it_anyway == true>>\
- "Oh, okay." The atmosphere shifted abruptly.
<</if>>\
Okay, it's too late to run. Door opens, it's time to fase a consequences...
<<if $reputation >= 6000 && $do_it_anyway == false>>\
<span class="male_text">- "Oh, it's you... Sorry, I didn't mean to bother you. I'm not going to stand in your way. But please refrain from trying to rob my home..."</span>
<<link "That's right." "Suburbs">>
<</link>> - your reputation speaks for itself!
<<link "Tell him to go ahead and do what he was planning to do with you... You're not gonna hold a grudge.">>\
<<set $do_it_anyway = true>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
<<set _roll = random(0, 20)>>\
<<if _roll >= 10>>\
A man entered the room like a fucken businessman and locked the door.
Strangely enough, the owner of this place is on aphrodisiacs. You can easily smell its specific strawberry-like smell. Seems like this new drug is quite common in this city, huh? \
<br>\
And he definitely wants to punish you for this intrusion. Either that, or he's calling a police.
<br>\
<<link "No way." "Custody">>\
<<set $do_it_anyway = true>>\
<<addhours 1>>\
<</link>> It's better to surrender to the police than that. \
<br>\
<<charm_link>><<link 'Accept your "punishment"' 'Suburbs Quickie'>>
<<set $do_it_anyway = true>>\
<<addhours 1>>\
<<stam `-1`>>\
<<depravity `1`>>\
<<sex_rep_check>>\
<</link>><</charm_link>>\
<<if $p_inv.has("Handheld Taser")>>\
<br>\
<<link "Use a taser and run away." "Suburbs">>\
<<set $do_it_anyway = true>>\
<<drop $p_inv "Handheld Taser" 1>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> If only you had a taser... </span>\
<</if>>\
<<if $p_traits.includes("fitness_2")>>\
<br>\
<<link "Push him off and run away." "Suburbs">>
<<set $do_it_anyway = true>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> Sadly, you're not strong enough to just push him away. </span>\
<</if>>\
<<else>>\
A man with a dog on the leash stepped into the room.
You can already hear a siren outside. Path is blocked. Nearby passers-by are stopped and began to look at the approaching police carriages. The moment you thought you can get out of this situation, you've got busted.
<<link "Sigh" "Custody">>
<<set $do_it_anyway = true>>\
<<addhours 1>>\
<</link>>\
<</if>>\
<</if>>\<<if _combination - _handle == 2>>
Click-click
<<elseif _combination - _handle == -2>>
Click-click
<<elseif _combination - _handle == 3>>
Clink-clank
<<elseif _combination - _handle == -3>>
Clink-clank
<<elseif _combination - _handle == 1>>
Click-clank
<<elseif _combination - _handle == -1>>
Click-clank
<<elseif _combination - _handle == 0>>
Click... and safe <<linkreplace "opens">>
<<set _random_m = random(250, 805) * $cun>>\
<<notify 4s>>You've found a _random_m dollars!<</notify>>\
<<money `+ _random_m`>>\
<<replace "#safe">>You've cracked that safe.<</replace>>\
<<replace "#left">><</replace>>\
<<replace "#right">><</replace>>\
<</linkreplace>>
<<else>>
Click
<</if>>\<<set_bedroom_bg_sex>>\
<center>\
<<if $active_media.endsWith(".webp")>>\
<span class="pic"><img @src ="$active_media"></span>
<<elseif $active_media.endsWith(".webm")>>\
<video @src="$active_media" autoplay loop muted controls width="600" height="350"></video>
<</if>>\
$reaction
\
<<switch $turn_sex>>\
<<case "female">>\
<<link "Proceed" "Blowjob M">>\
<<sex_cd_check>>\
<</link>>\
<<case "male">>\
<<link "Proceed" "Blowjob F">>\
<<sex_cd_check>>\
<</link>>\
<</switch>>
\
\
</center>\<<set_bedroom_bg_sex>>\
<<set $active_media = $blowjob_idle.random()>>\
<center>\
<span class="pic"><img @src ="$active_media"></span>
<<sex_pleasure_meter>>\
<<if $active_npc.depravity <= 14>>\
<<set _action = $blowjob_male.random()>>\
<<else>>\
<<set _action = $blowjob_male_depraved.random()>>\
<</if>>\
<<if $active_npc.pleasure <= 10>>\
<<link "He had enough." "Home">><</link>>\
<<elseif $active_npc.pleasure >= 50 && $active_npc.pleasure < 90 && $pose_change_cd == 0>>\
<<set _roll = random(0, 20)>>\
<<if _roll > 10>>\
<<link "$npc_name puts you into doggystyle position." "Doggystyle M">>\
<</link>>\
<<else>>\
<<link "$npc_name puts you into missionary position." "Missionary M">>\
<</link>>\
<</if>>\
<<elseif $active_npc.pleasure >= 100>>\
<<climax>>\
<<else>>\
<<linkreplace "He's thinking about...">>\
<<set _v = _action>>\
<<actiondesc_bj>>\
<<link "_desc" "Blowjob Turn">>\
<<media_bj>>\
<<set $turn_sex = "male">>\
<<depravity_check_player>>\
<<set $p_pleasure += 1 + $npc_charm>>\
<</link>>\
<</linkreplace>>
<</if>>
</center>\<<set_bedroom_bg_sex>>\
<<set $active_media = $doggystyle_idle.random()>>\
<center>\
<span class="pic"><img @src ="$active_media"></span>
<<sex_pleasure_meter>>\
<<if $p_pleasure >= 15>>\
<<if $anal_sex == false>>\
<<link "Get fucked" "Doggystyle Turn">>
<<set _v = "take_it">>\
<<ds_turn_fem>>\
<</link>>
<<link "Shake your ass" "Doggystyle Turn">>
<<set _v = "shaking">>\
<<ds_turn_fem>>\
<</link>>
<<elseif $anal_sex == true>>
<<link "Get your ass fucked" "Doggystyle Turn">>
<<set _v = "take_it_a">>\
<<ds_turn_fem>>\
<</link>>
<<link "Shake your ass" "Doggystyle Turn">>
<<set _v = "shaking_a">>\
<<ds_turn_fem>>\
<</link>>
<</if>>\
<<link "Quick sex.">>\
<<sex_skip>>\
<</link>>
<<else>>\
<<link "You've had enough." "Home">><</link>>\
<</if>>\
<<if $p_depravity >= 15 && $anal_sex == false>>
Offer to switch to <<linkreplace "anal.">>\
<<if $active_npc.depravity > 8>>\
<<set $anal_sex = true>>\
<<if $equip.anus>>\
<<set $active_media = $buttplug_remove.random()>>\
<<set $reaction = "$npc_name gladly agrees to fuck your ass. Both of you just gonna to get rid of buttplug first.">>\
<<set $turn_sex = "female">>\
<<goto "Doggystyle Turn">>\
<<else>>\
<<set $active_media = $doggystyle_basic_a.random()>>\
<<set $reaction = "$npc_name gladly agrees to fuck your ass. He quicky inserts his dick into your ass.">>\
<<set $turn_sex = "female">>\
<<goto "Doggystyle Turn>>\
<</if>>
<<else>>\
anal. - "No".\
<</if>>\
\
<</linkreplace>>
<</if>>\
<<if $shamed == true && $p_pleasure > 15>>\
<<link "Shame him for his behavior." "Doggystyle Turn">>\
<<set $active_media = $doggystyle_idle.random()>>\
<<set $shamed = false>>\
<<set $turn_sex = "female">>\
<<set $active_npc.pleasure -= 10>>\
<<set _roll = random(0, 20)>>\
<<if _roll > 10 - $charm>>\
<<set $active_npc.depravity -= 2>>\
<<set $p_depravity -= 2>>\
<<set $reaction = "$npc_name listens to you. But still, it's kinda turn off to hear such a thing during sex.">>\
<<else>>\
<<set $reaction = "$npc_name is don't care about your screaching.>>\
<</if>>\
<</link>>
<</if>>\
<<link "Get on your knees" "Blowjob F">>
<<set $pose_change_cd = random(1, 4)>>\
<</link>>
<<link "Lay on back" "Missionary F">>
<<set $pose_change_cd = random(1, 4)>>\
<</link>>
<<link "Stop this." "Home">>
<<set $active_npc.friendship -= 30>>\
<<sex_reset>>\
<</link>>\
</center>\<<set_bedroom_bg_sex>>\
<<set $active_media = $doggystyle_idle.random()>>\
<center>\
<span class="pic"><img @src ="$active_media"></span>
<<set _roll_for_anal = random (0, 20)>>\
<<sex_pleasure_meter>>\
<<if $anal_sex == true>>
<<set _action = $doggystyle_male_anal.random()>>\
<<elseif $active_npc.depravity <= 14>>\
<<set _action = $doggystyle_male.random()>>\
<<else>>\
<<set _action = $doggystyle_male_depraved.random()>>\
<</if>>\
\
<<if $active_npc.pleasure <= 10>>\
<<link "He had enough." "Home">><</link>>\
<<elseif $active_npc.pleasure >= 90 && $active_npc.depravity > 15 && $active_npc.pleasure < 100>>\
<<set _roll = random(0, 20)>>\
<<if _roll > 15>>\
<<link "He wants you to finish him by using your mouth." "Blowjob M">><<set $oral = true>><<set $anal_sex = false>><</link>>\
<<else>>\
<<doggystyle>>\
<</if>>\
<<elseif $active_npc.pleasure >= 100>>\
<<climax>>\
\
<<elseif $active_npc.depravity > 15 && $anal_sex == false && $asked_for_anal == false && _roll_for_anal > 14>>\
He's thinking about switching to anal.\
<<link "Agree">>\
<<set $anal_sex = true>>\
<<if $equip.anus>>\
<<set $active_media = $buttplug_remove.random()>>\
<<set $reaction = "You agrees to have an anal sex. Both of you just gonna to get rid of buttplug first.">>\
<<set $turn_sex = "male">>\
<<goto "Doggystyle Turn">>\
<<else>>\
<<set $active_media = $doggystyle_basic_a.random()>>\
<<set $reaction = "You stick your ass out for a guest.">>\
<<set $turn_sex = "male">>\
<<goto "Doggystyle Turn>>\
<</if>>\
<</link>>\
<<link "Decline">>\
<<set $asked_for_anal = true>>\
<<goto "Doggystyle M">>\
<</link>>\
<<else>>\
<<linkreplace "He's thinking about...">>\
<<set _v = _action>>\
<<actiondesc_ds>>\
<<link "_desc" "Doggystyle Turn">>\
<<media_ds>>\
<<set $turn_sex = "male">>\
<<depravity_check_player>>\
<<set $p_pleasure += 1 + $npc_charm>>\
<</link>>\
<</linkreplace>>\
<</if>>\
</center>\<<set_bedroom_bg_sex>>\
<center>\
<<if $active_media.endsWith(".webp")>>\
<span class="pic"><img @src ="$active_media"></span>
<<elseif $active_media.endsWith(".webm")>>\
<video @src="$active_media" autoplay loop muted controls width="600" height="350"></video>
<</if>>\
$reaction
\
<<switch $turn_sex>>\
<<case "female">>\
<<link "Proceed" "Doggystyle M">>\
<<sex_cd_check>>\
<</link>>\
<<case "male">>\
<<link "Proceed" "Doggystyle F">>\
<<sex_cd_check>>\
<</link>>\
<</switch>>
\
\
</center>\<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/sexshop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
filter:grayscale(80%);
background-size: cover;
}
</style>\
The "Wild Rabbit" Sexshop. Such a vulgar name for such a vulgar place. Shelves are stocked with adult toys, provocative outfits, and everything in between. Several arrows on the wall point toward the back rooms, with a price list and a variety of suggestive "services" beneath them.
<<trade_link>><<link "Check out their stock" "Sexshop Wares">>
<</link>><</trade_link>>
<<in_link>><<link "Changing cabin" "Changing Cabin Sexshop">><</link>><</in_link>>
<<if $stam > 0>>\
You can also <<charm_link>><<link "service some people in gloryhole" "Gloryhole">><<stam `-1`>><</link>><</charm_link>>, fortunately no one's gonna know that its you in GH booth.
<<else>>\
<span id="not_available"> You could service some people in gloryhole booth if you had energy for it.</span>
<</if>>\
<<out_link>><<link "Get back to the main street of Downtown" "Downtown">>\
<<addmins 15>>\
<</link>><</out_link>>\:: inventory.strings
drop: Discard_equipped_item.pic
<<button "Unequip">>
<<run $p_wardrobe.push($equip.anus)>>\
<<run delete $equip.anus>>\
<<script>>
Dialog.close();
<</script>>
<<goto "Wardrobe">>
<</button>>
<<button "Stop looking">>
<<script>>
Dialog.close();
<</script>>
<</button>><<set_bedroom_bg_sex>>\
<center>\
<<if $active_media.endsWith(".webp")>>\
<span class="pic"><img @src ="$active_media"></span>
<<elseif $active_media.endsWith(".webm")>>\
<video @src="$active_media" autoplay loop muted controls width="600" height="350"></video>
<</if>>\
$reaction
\
<<switch $turn_sex>>\
<<case "female">>\
<<link "Proceed" "Missionary M">>\
<<sex_cd_check>>\
<</link>>\
<<case "male">>\
<<link "Proceed" "Missionary F">>\
<<sex_cd_check>>\
<</link>>\
<</switch>>
\
\
</center>\<<set_bedroom_bg_sex>>\
<<set $active_media = $missionary_idle.random()>>\
<center>\
<span class="pic"><img @src ="$active_media"></span>
<<sex_pleasure_meter>>\
<<if $p_pleasure >= 20>>\
<<if $anal_sex == false>>\
<<link "Get fucked" "Missionary Turn">>
<<set _v = "take_it">>\
<<miss_turn_fem>>\
<</link>>
<<elseif $anal_sex == true>>\
<<link "Get your ass fucked" "Missionary Turn">>
<<set _v = "take_it_a">>\
<<miss_turn_fem>>\
<</link>>
<</if>>\
<<link "Quick sex.">>\
<<sex_skip>>\
<</link>>
<<else>>\
<<link "You've had enough." "Home">><</link>>
<</if>>\
<<if $p_depravity > 15 && $anal_sex == false>>
Offer to switch to <<linkreplace "anal.">>\
<<if $active_npc.depravity > 8>>\
<<set $anal_sex = true>>\
<<if $equip.anus>>\
<<set $active_media = $buttplug_remove.random()>>\
<<set $reaction = "$npc_name gladly agrees to fuck your ass. Both of you just gonna to get rid of buttplug first.">>\
<<set $turn_sex = "female">>\
<<goto "Missionary Turn">>\
<<else>>\
<<set $active_media = $doggystyle_basic_a.random()>>\
<<set $reaction = "$npc_name gladly agrees to fuck your ass. He quicky inserts his dick into your ass.">>\
<<set $turn_sex = "female">>\
<<goto "Missionary Turn>>\
<</if>>
<<else>>\
anal. - "No".\
<</if>>\
\
<</linkreplace>>
<</if>>\
<<if $shamed == true && $p_pleasure > 15>>\
<<link "Shame him for his behavior." "Doggystyle Turn">>\
<<set $active_media = $missionary_idle.random()>>\
<<set $shamed = false>>\
<<set $turn_sex = "female">>\
<<set $active_npc.pleasure -= 10>>\
<<set _roll = random(0, 20)>>\
<<if _roll > 10 - $charm>>\
<<set $active_npc.depravity -= 2>>\
<<set $p_depravity -= 2>>\
<<set $reaction = "$npc_name listens to you. But still, it's kinda turn off to hear such a thing during sex.">>\
<<else>>\
<<set $reaction = "$npc_name is don't care about your screaching.>>\
<</if>>\
<</link>>
<</if>>\
<<link "Get on your knees" "Blowjob F">>
<<set $pose_change_cd = random(1, 4)>>\
<</link>>
<<link "Get on all four" "Doggystyle F">>
<<set $pose_change_cd = random(1, 4)>>\
<</link>>
<<link "Stop this." "Home">>
<<set $active_npc.friendship -= 30>>\
<<sex_reset>>\
<</link>>\
</center>\<<set_bedroom_bg_sex>>\
<<set $active_media = $missionary_idle.random()>>\
<center>\
<span class="pic"><img @src ="$active_media"></span>
<<set _roll_for_anal = random (0, 20)>>\
<<sex_pleasure_meter>>\
<<if $anal_sex == true>>
<<set _action = $missionary_male_anal.random()>>\
<<elseif $active_npc.depravity <= 14>>\
<<set _action = $missionary_male.random()>>\
<<else>>\
<<set _action = $missionary_male_depraved.random()>>\
<</if>>\
\
<<if $active_npc.pleasure <= 10>>\
<<link "He had enough." "Home">><</link>>\
<<elseif $active_npc.pleasure >= 90 && $active_npc.depravity >= 15>>\
<<set _roll = random(0, 20)>>\
<<if _roll > 15>>\
<<link "He wants you to finish him by using your mouth." "Blowjob M">><<set $oral = true>><<set $anal_sex = false>><</link>>\
<<else>>\
<<missionary>>\
<</if>>\
<<elseif $active_npc.pleasure >= 100>>\
<<climax>>\
\
<<elseif $active_npc.depravity > 15 && $anal_sex == false && $asked_for_anal == false && _roll_for_anal > 14>>\
He's thinking about switching to anal.\
<<link "Agree">>\
<<set $anal_sex = true>>\
<<if $equip.anus>>\
<<set $active_media = $buttplug_remove.random()>>\
<<set $reaction = "You agrees to have an anal sex. Both of you just gonna to get rid of buttplug first.">>\
<<set $turn_sex = "male">>\
<<goto "Missionary Turn">>\
<<else>>\
<<set $active_media = $missionary_basic_a.random()>>\
<<set $reaction = "You inviting stick your ass out for a guest.">>\
<<set $turn_sex = "male">>\
<<goto "Missionary Turn">>\
<</if>>\
<</link>>\
<<link "Decline">>\
<<set $asked_for_anal = true>>\
<<goto "Missionary M">>\
<</link>>\
<<else>>\
<<linkreplace "He's thinking about...">>\
<<set _v = _action>>\
<<actiondesc_miss>>\
<<link "_desc" "Missionary Turn">>\
<<media_miss>>\
<<set $turn_sex = "male">>\
<<depravity_check_player>>\
<<set $p_pleasure += 1 + $npc_charm>>\
<</link>>\
<</linkreplace>>\
<</if>>\
</center>\<<set_bedroom_bg_sex>>\
He pulled out and came all over your face, his hot load covering your cheeks and lips as you moaned with pleasure.
<video @src="$active_media" autoplay loop muted controls width="600" height="350"></video>
<<link "Finish" "Home">>\
<<set $active_npc.friendship += 3 * $charm>>\
<<sex_reset>>\
<</link>>\<<set_bedroom_bg_sex>>\
He came inside you, filling you up with his hot load as he moaned with pleasure.
<video @src="$active_media" autoplay loop muted controls width="600" height="350"></video>
<<link "Finish" "Home">>\
<<set $active_npc.friendship += 3 * $charm>>\
<<sex_reset>>\
<</link>>\<<set_bedroom_bg_sex>>\
He came inside your ass, filling you up with his hot load as he moaned with pleasure.
<video @src="$active_media" autoplay loop muted controls width="600" height="350"></video>
<<link "Finish" "Home">>\
<<set $active_npc.friendship += 3 * $charm>>\
<<sex_reset>>\
<</link>>\<<set_bedroom_bg_sex>>\
He came all over your body, his hot load covering your breasts and stomach as you moaned with pleasure.
<video @src="$active_media" autoplay loop muted controls width="600" height="350"></video>
<<link "Finish" "Home">>\
<<set $active_npc.friendship += 3 * $charm>>\
<<sex_reset>>\
<</link>>\<<widget "sex_skip">>\
<<set _roll = random(0, 30)>>\
<<if $active_npc.depravity >= 14>>\
<<if _roll >= 0 && _roll <= 9>>\
<<set $active_media = $climax_face.random()>>\
<<set $reaction = "$npc_name pulled out of your mouth and came all over your face, his hot load covering your cheeks and lips as you moaned with pleasure.">>\
<<elseif _roll >= 10 && _roll <= 20>>\
<<set $active_media = $climax_creampie_a.random()>>\
<<set $reaction = "$npc_name came inside your ass, filling you up with his hot load as he moaned with pleasure.">>\
<<else>>\
<<set $active_media = $climax_creampie.random()>>\
<<set $reaction = "$npc_name came inside you, filling you up with his hot load as he moaned with pleasure.">>\
<</if>>\
<<else>>\
<<if _roll >= 0 && _roll <= 15>>\
<<set $active_media = $climax_creampie.random()>>\
<<set $reaction = "$npc_name came inside you, filling you up with his hot load as he moaned with pleasure.">>\
<<else>>\
<<set $active_media = $climax_body.random()>>\
<<set $reaction = "$npc_name came all over your body, his hot load covering your breasts and stomach as you moaned with pleasure.">>\
<</if>>\
<</if>>\
<<goto "Sex Skip">>\
<</widget>>\
<<widget "missionary">>\
<<linkreplace "He's thinking about...">>\
<<set _v = _action>>\
<<actiondesc_miss>>\
<<link "_desc" "Missionary Turn">>\
<<media_miss>>\
<<set $turn_sex = "male">>\
<<depravity_check_player>>\
<<set $p_pleasure += 1 + $npc_charm>>\
<</link>>\
<</linkreplace>>\
<</widget>>\
<<widget "doggystyle">>\
<<linkreplace "He's thinking about...">>\
<<set _v = _action>>\
<<actiondesc_ds>>\
<<link "_desc" "Doggystyle Turn">>\
<<media_ds>>\
<<set $turn_sex = "male">>\
<<depravity_check_player>>\
<<set $p_pleasure += 1 + $npc_charm>>\
<</link>>\
<</linkreplace>>\
<</widget>>\<<set_bedroom_bg_sex>>\
<video @src="$active_media" autoplay loop muted controls width="600" height="350"></video>
$reaction
<<link "Finish" "Home">>\
<<set $active_npc.friendship += 2 * $charm>>\
<<sex_reset>>\
<</link>>\<<set $asked_for_anal = false>>
<<set $anal_sex = false>>
<<set $npc_name = "">>
<<set $active_npc.depravity = 0>>
<<set $active_npc.pleasure = 10>>
<<set $npc_charm = 5>>
<<set $sex_mistakes = 0>>
<<set $reaction = "">>
<<set $shamed = false>>
<<set $anal_sex = false>>
<<set $pose_change_cd = 0>>
<<set $pc_active = true>><<if $p_traits.includes("burglar_2")>>\
Housebreaking, burglary, forced entry, robbery… Call it what you want, but you’ve already picked your potential on this path. One more turn during burglary before someone notices and +1 cunning.
<<elseif $p_traits.includes("burglar")>>\
You are a pro burglar. Minimum one more turn before alerting someone.
<</if>>\
\
<<if $p_traits.includes("fitness_3")>>\
You are full of energy and ready to rock. There's no more reasons to visit a gym for awhile. +3 max stamina, +15 HP and +1 charm.
<<elseif $p_traits.includes("fitness_2")>>\
Its obvious for people that you are hitting a gym constantly. +2 max stamina and +10 HP.
<<elseif $p_traits.includes("fitness_1")>>\
You have a nice and fit body. Remember that you're body is temple, and temple gives you +1 max stamina and +5 HP
<</if>>\
\
<<if $p_traits.includes("stripper")>>\
You are working as a stripper. Your salary solely depends on your charm and striptease skills.
By the way, you are \
<<if $p_traits.includes("strip_3")>>\
pro stripper. Best of the best, no more reasons to visit trainers. Also, you're unquestionably became more sexual - +2 charm.
<<elseif $p_traits.includes("strip_2")>>\
good stripper, and it's easy to see in you. +1 charm.
<<elseif $p_traits.includes("strip_1")>>\
mediocre stripper.
<<elseif $p_traits.includes("strip_0")>>\
novice stripper. You must keep improming by yourself just by working or by visiting a dancing group in gym for a quick tuition.
<</if>>\
<</if>>\
\
<<if $p_traits.includes("car_thief_2")>>\
You are a pro car thief, that's a threshold for this skill. You have much more time before being busted. +1 cunning.
<<elseif $p_traits.includes("car_thief_1")>>\
You are a good car thief. Skills-wise. You have more time before being busted.
<</if>>\
\
<<if $p_traits.includes ("observer_2")>>\
You are trully observant, nothing can go past your sight. Nothing.
<<elseif $p_traits.includes("observer")>>\
You can detect other people's traits just by looking at them.
<</if>>\
\
<<if $p_traits.includes("pickpocketer")>>\
You can pickpocket more than one item from a single try. +1 cunning.
<</if>>\
\
<<if $p_traits.includes("racer_3")>>\
You're an experienced driver, one of the best racers around. Your wit is as sharp as a tack, and your guts are made of steel. There's no need to grind your skills in driving any further. +30 seconds in car chase, +1 cunning and +5 hp.
<<elseif $p_traits.includes("racer_2")>>\
You can call yourself a racer after all ups and downs on the road. Not the racist (sic!). +20 seconds in car chase and +1 cunning.
<<elseif $p_traits.includes("racer_1")>>\
You're a skilled driver, with a bit of a racer somewhere deep inside in you (not literally). +10 seconds in car chase.
<</if>>\
\
<<if $p_traits.includes ("anal_whore_2")>>\
Your ass is a goddamn hero who endured a mythical powers, that's a limit. +6 combat HP.
<<elseif $p_traits.includes("anal_whore")>>\
Your ass have been in some kinky adventures. +3 combat HP.
<</if>>\
\
<<if $p_traits.includes ("gh_whore")>>\
Professional pleaser of people, thanks to gloryhole. You won't be better on that than now. +1 charm.
<</if>>\
\
<<if $p_traits.includes ("seller_2")>>\
You know how to get profit from quite petty things. Are you a grifter? Probably. But not because you've sold a few thingies to people in need. That's a limit for you in "honest" saleswork. +1 charm and +1 cunning.
<<elseif $p_traits.includes("seller")>>\
You kinda know how to sell a pen. Well, atleast you imagine so. +1 cunning.
<</if>>\
\
<<if $p_traits.includes("melee_5")>>\
You’re an excellent street fighter. This might be the peak of your abilities, but you’ve already achieved a lot.
Passive bonuses: +10 HP, +3 combat.
Skills:
"Go for the Jugular" - x2 attack, 4 turns CD, 25 STA. Do not requires any weapons. Bypasses enemy defense.
"Deep Breath" - fully restores your stamina and has a personal cooldown of 5 turns.
"Money or Your Life" - forces your opponent to hand over their cash. Can be done only once per fight, effectiveness depends on your cunning, gives 3 turns CD, 50 STA.
<<elseif $p_traits.includes("melee_4")>>\
\
You can take a hit. You can throw a punch. Fighters aren’t born - they’re made.
Passive bonuses: +5 HP, +2 combat.
Skills:
"Go for the Jugular" - x2 attack, 4 turns CD, 25 STA. Do not requires any weapons. Bypasses enemy defense.
"Deep Breath" - fully restores your stamina and has a personal cooldown of 5 turns.
<<elseif $p_traits.includes("melee_3")>>\
\
People are starting to talk about you as a serious fighter. You don't need to live up to their expectations - it'll happen on its own.
Passive bonuses: +5 HP, +1 combat.
Skills:
"Go for the Jugular" - x2 attack, 4 turns CD, 25 STA. Do not requires any weapons. Bypasses enemy defense.
"Deep Breath" - fully restores your stamina and has a personal cooldown of 5 turns.
<<elseif $p_traits.includes("melee_2")>>\
\
You're a mediocre street fighter. The situation forces you to act.
Passive bonuses: +1 combat.
Skills:
"Go for the Jugular" - x2 attack, 4 turns CD, 25 STA. Do not requires any weapons. Bypasses enemy defense.
<<elseif $p_traits.includes("melee_1")>>\
\
You’ve only just begun your journey as a street fighter, but you already understand the price that comes with it.
Skills:
"Go for the Jugular" - x2 attack, 4 turns CD, 25 STA. Do not requires any weapons. Bypasses enemy defense.
<</if>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/autocenter.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<silently>>\
<<if $mafia_base == false && $car > 0>>\
<<goto "Auto Center Mafia Meeting">>\
<</if>>\
<</silently>>\
Auto center. You’ve never been much of a car enthusiast; all that mattered to you was the price you could get for selling a car, and that’s enough to get by. Similarly, you choose a vehicle for personal transportation by its price. It seems straightforward: the more expensive the car, the faster you go, and the less time you spend traveling. Plus, just having a car is a significant boost to your quality of life, so it’s worth getting at least a poor man's one.
<<if $suburbs_state == true>>\
<span class="male_text">- "Hey, boss. Wanna get a new wheel?"</span>
<</if>>\
<<if $car_1 == false>>\
<<if $money >= 5000>>\
<<trade_link>><<link "Buy an affordable car - 5000$." "Auto Center">>
<<set $car = 1>>\
<<set $car_1 = true>>\
<<set $chase_car_bonus = 0>>\
<<money `-5000`>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available"> Buy an affordable car - 5000$.</span>\
<</if>>\
<<elseif $car_1 == true>>\
You already bought a cheapest car possible here. \
<</if>>\
<<if $car_2 == false>>\
<<if $money >= 40000 && $garage > 0>>\
<<trade_link>><<link "Buy a white-collar's car - 40000$." "Auto Center">>
<<set $car = 2>>\
<<set $car_2 = true>>\
<<set $chase_car_bonus = 10>>\
<<money `-40000`>>\
<</link>><</trade_link>>\
<<elseif $money < 40000 && $garage > 0>>\
<span class="not_available"> Buy a white-collar's car - 40000$.</span>\
<<elseif $garage == 0>>\
<span class="not_available"> You need a garage for a better car. 40k in green car.</span>\
<</if>>\
<<elseif $car_2 == true>>\
You already bought a mid-tier car. \
<</if>>\
<<if $car_3 == false>>\
<<if $money >= 120000 && $garage > 0>>\
<<trade_link>><<link "Buy an expensive sportcar - 120000$." "Auto Center">>
<<set $car = 3>>\
<<set $car_3 = true>>\
<<set $chase_car_bonus = 20>>\
<<money `-120000`>>\
<<set $energy_mod_car = 1>>\
<</link>><</trade_link>> With such car you'll gonna feel yourself much more energetic for sure. \
<<elseif $money < 120000 && $garage > 0>>\
<span class="not_available">"Buy an expensive sportcar - 120000$. With such car you'll gonna feel yourself much more energetic for sure.</span>\
<<elseif $garage == 0>>\
<span class="not_available"> You need a garage for a better car. 120k in green car.</span>\
<</if>>\
<<elseif $car_3 == true>>\
You already bought a sportcar. \
<</if>>
\
<<if $mafia_met > 0 && $autoshop_information == false>>\
<<linkreplace "Let the mechanics know you’re onto their shady dealings and that you've crossed paths with Romano.">>\
- "Really? Ok, you may access our special wares."
<<link "Nod." "Auto Center">>\
<<set $autoshop_information = true>>\
<</link>>\
<</linkreplace>>\
<br>\
<</if>>\
<<if $autoshop_information == true && $garage_inv.array.length <= $garage_size>>\
<br>\
Stolen wheels:
<<if $money >= 1500>>\
<<trade_link>><<link "SUV - 1500$." "Auto Center">>\
<<pickup $garage_inv "SUV Car" 1>>\
<<money `-1500`>>\
<<notify 1s>>Bought.<</notify>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available">SUV - 1500$.</span>\
<</if>>\
<<if $money >= 2000>>\
<<trade_link>><<link "Muscle Car - 2000$." "Auto Center">>\
<<pickup $garage_inv "Muscle Car" 1>>\
<<money `-2000`>>\
<<notify 1s>>Bought.<</notify>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available">Muscle Car - 2000$.</span>\
<</if>>\
<<if $money >= 1300>>\
<<trade_link>><<link "Pickup Truck - 1300$." "Auto Center">>\
<<pickup $garage_inv "Pickup Truck" 1>>\
<<money `-1300`>>\
<<notify 1s>>Bought.<</notify>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available">Pickup Truck - 1300$.</span>\
<</if>>\
<<if $money >= 1000>>\
<<trade_link>><<link "Sedan - 1000$." "Auto Center">>\
<<pickup $garage_inv "Sedan Car" 1>>\
<<money `-1000`>>\
<<notify 1s>>Bought.<</notify>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available">Sedan - 1000$.</span>\
<</if>>\
<<if $money >= 900>>\
<<trade_link>><<link "Porter - 900$." "Auto Center">>\
<<pickup $garage_inv "Porter Car" 1>>\
<<money `-900`>>\
<<notify 1s>>Bought.<</notify>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available">Porter - 900$.</span>\
<</if>>\
<<if $money >= 1100>>\
<<trade_link>><<link "Van - 1100$." "Auto Center">>\
<<pickup $garage_inv "Van Car" 1>>\
<<money `-1100`>>\
<<notify 1s>>Bought.<</notify>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available">Van - 1100$.</span>\
<</if>>\
<<if $money >= 2100>>\
<<trade_link>><<link "Sport - 2100$." "Auto Center">>\
<<pickup $garage_inv "Sport Car" 1>>\
<<money `-2100`>>\
<<notify 1s>>Bought.<</notify>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available">Sport - 2100$.</span>\
<</if>>\
<br>\
<<elseif $autoshop_information == true && $garage_inv.array.length > $garage_size>>\
<br>\
Stolen wheels:
<span class="not_available">\
SUV - 1500$. \
Muscle Car - 2000$. \
Pickup Truck - 1300$. \
Sedan - 1000$. \
Porter - 900$. \
Van - 1100$. \
Sport - 2100$. \
You don't have any free places to stash a stolen car! \
</span>\
<br>\
<</if>>\
<<out_link>><<link "Get back to the main street of Suburbs" "Suburbs">>\
<<addmins 10>>\
<</link>><</out_link>>\/* Burglary */
<<widget "suburbs_burglary">>
<<set _random_furniture = $furniture.random()>>\
<<linkreplace "Check _random_furniture">>\
<<set _random_item = $suburbs.array.random()>>\
<<clock 5>>\
<<roll>> <<if _random < 5>>\
Nothing.\
<<else>>\
You've found _random_item!\
<<pickup $p_inv _random_item 1>>\
<</if>>\
<<if _random < 10>>\
And also you've made some noise...\
<<set _alert -= 1>>\
<<replace "#alert-display">><<display "Suburbs Alert">><</replace>>\
<<replace "#suburbs-getaway">><<display "Suburbs Getaway">><</replace>>\
<</if>>\
<</linkreplace>>\
<</widget>>\
<<widget "safe_cracking_suburbs">>\
<<set _combination = random(5, 10)>>\
<<set _handle = random(3, 12)>>\
<span id="safe"><<display "Safe Clicking">></span>\
<span id="left"><<link "Left">>\
<<set _handle ++>>\
Left...\
<<replace "#safe">><<display "Safe Clicking">><</replace>>\
<<addmins 1>>\
<<set _random_alert = random(0, 20) - $cun>>\
<<if _random_alert > 10>>\
<<replace "#noice">>...you've made some loudy noise...<</replace>>\
<<set _alert -= 1>>\
<<replace "#alert-display">><<display "Suburbs Alert">><</replace>>\
<<replace "#suburbs-getaway">><<display "Suburbs Getaway">><</replace>>\
<</if>>\
<</link>></span>\
<span id="right"><<link "Right">>\
<<set _handle -->>\
Right... \
<<replace "#safe">><<display "Safe Clicking">><</replace>>\
<<addmins 1>>\
<<set _random_alert = random(0, 20) - $cun>>\
<<if _random_alert > 10>>\
<<replace "#noice">>...you've made some loudy noise...<</replace>>\
<<set _alert -= 1>>\
<<replace "#alert-display">><<display "Suburbs Alert">><</replace>>\
<<replace "#suburbs-getaway">><<display "Suburbs Getaway">><</replace>>\
<</if>>\
<</link>></span>\
<</widget>>\
<<widget "dt_burglary">>
<<set _random_furniture = $furniture.random()>>\
<<linkreplace "Check _random_furniture">>\
<<set _random_item = $complex.array.random()>>\
<<clock 5>>\
<<roll>> <<if _random < 5>>\
Nothing.\
<<else>>\
You've found _random_item!\
<<pickup $p_inv _random_item 1>>\
<</if>>\
<<if _random < 10>>\
And also you've made some noise...\
<<set _alert -= 1>>\
<<replace "#alert-display">><<display "Downtown Alert">><</replace>>\
<<replace "#downtown-getaway">><<display "Downtown Getaway">><</replace>>\
<</if>>\
<</linkreplace>>\
<</widget>>\
<<widget "safe_cracking_dt">>\
<<set _combination = random(5, 10)>>\
<<set _handle = random(3, 12)>>\
<span id="safe"><<display "Safe Clicking">></span>\
<span id="left"><<link "Left">>\
<<set _handle ++>>\
Left...
<<replace "#safe">><<display "Safe Clicking">><</replace>>\
<<addmins 1>>\
<<set _random_alert = random(0, 20) - $cun>>\
<<if _random_alert > 10>>\
<<replace "#noice">>...you've made some loudy noise...<</replace>>\
<<set _alert -= 1>>\
<<replace "#alert-display">><<display "Downtown Alert">><</replace>>\
<<replace "#downtown-getaway">><<display "Downtown Getaway">><</replace>>\
<</if>>\
<</link>></span>\
<span id="right"><<link "Right">>\
<<set _handle -->>\
Right...
<<replace "#safe">><<display "Safe Clicking">><</replace>>\
<<addmins 1>>\
<<set _random_alert = random(0, 20) - $cun>>\
<<if _random_alert > 10>>\
<<replace "#noice">>...you've made some loudy noise...<</replace>>\
<<set _alert -= 1>>\
<<replace "#alert-display">><<display "Downtown Alert">><</replace>>\
<<replace "#downtown-getaway">><<display "Downtown Getaway">><</replace>>\
<</if>>\
<</link>></span>\
<</widget>>\
<<widget "harbor_burglary">>
<<set _random_furniture = $furniture_warehouse.random()>>\
<<linkreplace "Check _random_furniture">>\
<<set _random_item = $harbor.array.random()>>\
<<clock 5>>\
<<roll>> <<if _random < 5>>\
Nothing.\
<<else>>\
<<if $cartel_base == false && _random > 14>>\
You've found _random_item... and seems like this is Cartel's cargo, _random_furniture had their adress on it.\
<<set $cartel_base = true>>\
<<pickup $p_craft _random_item 1>>\
<<else>>\
You've found _random_item!\
<<pickup $p_craft _random_item 1>>\
<</if>>\
<</if>>\
<<if _random < 10>>\
And also you've made some noise...\
<<set _alert -= 1>>\
<<replace "#alert-display">><<display "Harbor Alert">><</replace>>\
<<replace "#harbor-getaway">><<display "Harbor Getaway">><</replace>>\
<</if>>\
<</linkreplace>>\
<</widget>>\<<script>>
Dialog.close();
<</script>>
<<if $car == 0>>
<<addmins 30>>\
<<goto "Suburbs">>\
<<elseif $car == 1>>\
<<addmins 20>>\
<<goto "Suburbs">>\
<<elseif $car == 2>>\
<<addmins 15>>\
<<goto "Suburbs">>\
<<else>>
<<addmins 10>>\
<<goto "Suburbs">>\
<</if>>\<<script>>
Dialog.close();
<</script>>
<<if $car == 0>>
<<addmins 30>>\
<<goto "City Center">>\
<<elseif $car == 1>>\
<<addmins 20>>\
<<goto "City Center">>\
<<elseif $car == 2>>\
<<addmins 15>>\
<<goto "City Center">>\
<<else>>
<<addmins 10>>\
<<goto "City Center">>\
<</if>>\<<script>>
Dialog.close();
<</script>>
<<if $car == 0>>
<<addmins 30>>\
<<goto "Downtown">>\
<<elseif $car == 1>>\
<<addmins 20>>\
<<goto "Downtown">>\
<<elseif $car == 2>>\
<<addmins 15>>\
<<goto "Downtown">>\
<<else>>
<<addmins 10>>\
<<goto "Downtown">>\
<</if>>\<<script>>
Dialog.close();
<</script>>
<<if $car == 0>>
<<addmins 30>>\
<<goto "Harbor">>\
<<elseif $car == 1>>\
<<addmins 20>>\
<<goto "Harbor">>\
<<elseif $car == 2>>\
<<addmins 15>>\
<<goto "Harbor">>\
<<else>>
<<addmins 10>>\
<<goto "Harbor">>\
<</if>>\<<if $reputation >= 1000>>\
<<if $car == 0>>\
<<addmins 30>>\
<<goto "Outskirts">>\
<<elseif $car == 1>>\
<<addmins 20>>\
<<goto "Outskirts">>\
<<elseif $car == 2>>\
<<addmins 15>>\
<<goto "Outskirts">>\
<<else>>\
<<addmins 10>>\
<<goto "Outskirts">>\
<</if>>\
<<else>>\
<span class="not_available">All roads are under maintenance. Probably, it will be ready the moment you get used to the $city_name.</span>
<<link "Choose another destination." "City Map">><</link>>\
<</if>>\
<<script>>
Dialog.close();
<</script>><<set $suburbs_state = false>>
<<set $mafia_war = false>>
<<set $mafia_str = 9000>>
<<set $downtown_state = false>>
<<set $gangs_war = false>>
<<set $gangs_str = 4000>>
<<set $outskirts_state = false>>
<<set $bikers_war = false>>
<<set $bikers_str = 17000>>
<<set $harbor_state = false>>
<<set $mafia_event_good = ["The mafia secured a lucrative deal with a major buyer for high-end stolen cars, significantly boosting their influence.", "A police informant in the mafia's pocket provided crucial intel, allowing them to hit a high-security car lot.", "The mafia successfully expanded their auto theft operations into neighboring districts, crushing local competition.", "The mafia bribed a judge to drop charges against several of their top operatives, reinforcing their street presence.", "The mafia cracked down on rival car theft crews in the Suburbs, forcing them to either leave town or join their ranks.", "A new technology hack gave the mafia access to electronic car keys, making thefts quicker and less detectable.", "By sabotaging the local police station's vehicle impound system, the mafia reclaimed several stolen cars and returned them to their buyers.", "A large auto insurance fraud scheme orchestrated by the mafia went unnoticed, netting them huge profits.", "Rumor has it the mafia now controls the local DMV, making it easier for them to forge documents for stolen vehicles.", "After a local turf war, the mafia has forced their control of the Suburbs, forcing smaller gangs to pay tribute for using the area.", "A wave of successful carjackings in the city's wealthiest neighborhoods has the mafia flush with resources.", "A prominent politician’s car was ‘recovered’ by the mafia, earning them a powerful ally in the local government.",]>>
<<set $mafia_event_bad = ["A police raid on the mafia's auto center led to the arrest of several key mechanics, disrupting their operations.", "An internal power struggle led to a key mafia lieutenant defecting to a rival organization, taking valuable intel with him.", "The mafia’s chop shop was exposed in a sting operation, forcing them to shut down and go underground temporarily.", "The mafia’s biggest buyer of stolen cars was arrested, cutting off a major source of income and leaving them scrambling for new clients.", "A botched car theft ended in a high-speed police chase, resulting in multiple arrests and a media scandal.", "Several mafia operatives were caught trying to sell stolen cars to undercover officers, leading to a significant loss of manpower.", "A local politician cracked down on organized crime, targeting the mafia’s car theft operations and freezing their assets.", "Rumors of a snitch within the mafia's ranks have led to internal distrust, slowing their decision-making and operations.", "A popular auto blog exposed the mafia’s auto center as a front for car theft, driving away legitimate customers.", "The mafia’s smuggling route for stolen cars was compromised by a rival gang, causing significant delays and losses.", "New citywide surveillance cameras have made it harder for the mafia to operate in the Suburbs without being caught.", "A massive police crackdown in the Suburbs led to the discovery of several mafia hideouts, severely weakening their operations.",]>>
<<set $gangs_event_good = ["The Street Gangs pulled off a string of successful robberies in broad daylight, striking fear into local businesses.", "A powerful street brawler joined the Street Gangs, increasing their muscle and reputation on the streets.", "After a brutal street fight, the Street Gangs took control of a key intersection, giving them more control over Downtown’s criminal activities.", "A wave of hooliganism orchestrated by the Street Gangs scared off police patrols, leaving them free to operate as they pleased.", "Several members of the Street Gangs gained a cult following among the youth, increasing their influence in Downtown's ghettos.", "The Street Gangs managed to infiltrate the local underground ring scene, using it to recruit tough new fighters and expand their ranks.", "A series of well-coordinated smash-and-grab heists netted the Street Gangs high-value loot, boosting their funds and morale.", "The Street Gangs struck a deal with a local club owner, using the venue as a front for laundering money and recruiting new members.", "Local businesses quietly paid off the Street Gangs for 'protection,' cementing their control over the commercial sector.", "A corrupt cop on the gang’s payroll fed them crucial intel on upcoming police raids, allowing them to avoid arrests and stay ahead.", "The Street Gangs rallied local street performers to stir up chaos in the streets, diverting police attention while they carried out a robbery.", "Several low-level politicians turned a blind eye to the Street Gangs’ activities in exchange for a cut of their profits, giving them more freedom to operate."]>>
<<set $gangs_event_bad = ["An undercover police operation led to the arrest of the Street Gangs' top enforcers, crippling their ability to collect protection money.", "A botched robbery at a Downtown store went viral, making the Street Gangs look incompetent and drawing unwanted police attention.", "A high-ranking member of the Street Gangs was gunned down in a drive-by, sending shockwaves through their ranks.", "A police crackdown in Downtown resulted in multiple arrests, forcing the Street Gangs to operate in smaller, disorganized groups.", "A local business coalition started hiring private security, making it harder for the Street Gangs to intimidate shop owners.", "The Street Gangs' secret stash house was raided by law enforcement, seizing drugs, money, and weapons critical to their operations.", "A prominent member turned informant, giving the police critical intel on the Street Gangs’ racketeering operations.", "A sudden rise in police presence in Downtown made it nearly impossible for the Street Gangs to operate without getting caught.", "A local hero organized youth groups to keep kids away from gang activity, reducing the Street Gangs’ recruitment pool.", "Several members were caught on camera during a looting spree, leading to massive public outcry and increased police pressure.",]>>
<<set $bikers_event_good = ["The bikers secured a lucrative contract with a foreign cartel to transport high-value shipments, boosting their cash flow and reputation.", "A successful arms deal brought in rare and advanced weapons, giving the bikers a major advantage in future conflicts.", "The bikers expanded their transportation network, acquiring new trucks and planes to move cargo faster and more efficiently.", "A corrupt customs officer on the payroll cleared a massive shipment, allowing the bikers to smuggle in valuable contraband undetected.", "A major money-laundering operation went off without a hitch, bringing in a fortune and solidifying their ties to local businesses.", "A daring highway heist netted the bikers a truckload of high-end goods, increasing their street cred and profits.", "A high-profile biker race was rigged in their favor, giving the gang bragging rights and a surge in new recruits.", "The bikers scored a long-term deal to transport black market goods across state lines, increasing their income stream.", "A local gun show, secretly controlled by the bikers, allowed them to offload a significant amount of illegal weapons.", "A large shipment of laundered cash was successfully moved out of the country, further expanding the bikers' financial reach.", "An insider in the city government helped the bikers get contracts for 'legitimate' cargo, giving them cover for their illicit activities.", ]>>
<<set $bikers_event_bad = ["A police raid on 'the Fringe' lounge bar uncovered illegal weapons, leading to multiple arrests and a loss of influence.", "A large shipment of illegal cargo was intercepted by federal agents, costing the bikers a fortune and straining their smuggling network.", "A trusted pilot double-crossed the bikers, stealing a shipment and selling it to a competitor.", "A routine weapons deal turned into a bloody shootout, resulting in the loss of both members and valuable merchandise.", "An informant within the gang tipped off law enforcement about their money-laundering operations, freezing their assets.", "The bikers' main smuggling route was blocked by increased government surveillance, making it harder to move contraband undetected.", "One of the bikers’ key contacts in the gun-running business was arrested, leaving them scrambling to find new suppliers.", "A major deal with the Cartel fell through after the bikers failed to deliver on time, causing tension and financial loss.", "A high-ranking member of the gang was arrested on weapons charges, putting the bikers under heavy police scrutiny.", "The bikers' money-laundering scheme was exposed by a whistleblower, leading to a crackdown on their financial operations.", "A key safehouse was raided by the police, resulting in the loss of several high-profile weapons and a blow to their smuggling operation.", "An aggressive crackdown by federal agencies led to multiple arrests, forcing the bikers to lay low and halt operations temporarily.",]>><style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/gym.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $ring_information == false>>\
The Muscle & Mayhem Gym.
The price of one session is $50 in any section. Yeah, it's a very pricey gym... No wonder, considering there are almost no other gyms in the city. Also, the gym closes at 19:00, though no one seems to lock the doors for some reason, and you’re pretty sure it’s quite crowded here in the evenings. Strange. <<if $steroid_dealers_amount > 0>> You see your steroid dealer standing around some jocks. <</if>>
<<else>>\
The price of one session is $50 in any section. Yeah, it's a very pricey gym... No wonder, considering there are almost no other gyms in the city. Also, the gym closes at 19:00 and underground ring opens up. <<if $steroid_dealers_amount > 0>> You see your steroid dealer standing around some jocks. <</if>>
<span class="not_available">The underground ring only opens after 19:00.</span>
<</if>>\
<span id="gym"></span>
<<if $gameDate.getHours() < 19>>\
<<if $stam > 0 && $money >= 50 || $gym_available == false>>\
<<if $gym_available == true>>\
<span class="action_link"><<link "Hit the gym" "Gym">>\
<<money `-50`>>\
<<addhours 2>>\
<<stam `-1`>>\
<<set $fitness_trait_progress += 25>>\
<<fitness_progress>>\
<<set $gym_available = false>>\
<</link>></span>
<<if $p_traits.includes("stripper")>>
<span class="action_link"><<link "Attend a dancing class" "Gym">>
<<money `-50`>>\
<<addhours 2>>\
<<stam `-1`>>\
<<striptease_progress>>\
<<set $gym_available = false>>\
<</link>></span>
<</if>>\
<<else>>\
You've pumped up today already.
<</if>>\
<<elseif $stam == 0>>\
<span class="not_available">You are too tired to workout today.</span>
<</if>>\
<<if $p_inv.compare($gym_steroids)>>\
<<cun_link>><<link "Start selling steroids to gym enthusiasts.">>\
<<roll>>\
<<if _random > 1>>\
<<set $random_amount = random(5, 10)>>\
<<set _cun_bonus = $cun * 2>>
<<set $got_money = (5 + _cun_bonus) * $random_amount>>\
<<seller_progress>>\
<<set $reputation += 20>>\
<<money `$got_money`>>\
<<addmins 30>>\
<<drop $p_inv "Steroids" $random_amount>>\
<<run Engine.show()>>\
<<replace "#gym">> You've sold $random_amount pieces of steroids and got $got_money​$.<</replace>>\
<<else>>\
<<goto "Gym Caught">>\
<</if>>\
<</link>><</cun_link>>
<<else>>\
<span class="not_available">You definitely could try to sell steroids to these dumbtrucks if you had atleast 10 pcs on you.</span>
<</if>>\
\
<<if $ring_information == false && $p_traits.includes("fitness_1")>>\
<<linkreplace '"Hey, you!"'>>\
It was the receptionist who called out to you. What does he want?
“Hey, you’ve got some real potential,” the receptionist says with a knowing smirk on his face. “If you’re interested in something a little more… intense, there’s a ring downstairs. Strictly underground, if you catch my drift. Every night, once the gym’s closed, the real action starts. Fists fly, bets roll, and if you’ve got the guts, there’s good money to be made and yada-yada-yada.”
That’s... useful. You should check it out in the evening. Betting isn’t really your type of leisure, but you might earn something in the ring itself.
<<set $ring_information = true>>\
<</linkreplace>>
<</if>>\
<<elseif $ring_information == false && $gameDate.getHours() >= 19>>\
Gym is closed.
<<elseif $ring_information == true && $gameDate.getHours() >= 19 && $mafia_war == false>>\
<<in_link>><<link "Visit the underground ring." "Underground Ring">>\
<</link>><</in_link>>
<<elseif $ring_information == true && $gameDate.getHours() >= 19 && $mafia_war == true>>\
<span class="not_available">Mafia control the underground ring. That's not a best place for visiting right now.</span>
<</if>>\
<<out_link>><<link "Get back to the main street of Suburbs" "Suburbs">>\
<<addmins 10>>\
<</link>><</out_link>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/stripclub.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Striptease Club "The Eclipse" - a name that hints at its vibrant nightlife, coming alive only after sunset, which is hardly surprising for these kinds of enterprises.
<<if !$gameDate.getHours() >= 20 || !$gameDate.getHours() <= 3>>\
It's not a prime time right now for a such place, there's only a few people here and there.
<<else>>\
It's a prime time right now. Club is crowded with people.
<</if>>\
<span id="stripclub"></span>
<<if $strange_note_2 === false>>\
<div id="replace">You see a peculiar piece of paper laying on the table. <<link "You really wanna to check it out">><<replace #replace>>You should check your inventory for a new item.<</replace>><<set $strange_note_2 = true>><<pickup $p_inv "Strange Note#2" 1>><</link>></div>\
<</if>>\
<<action_link>><span class="action_link"><<link "Meet someone." "Striptease Meeting">>
<<addmins 30>>\
<<observer_progress>>\
<</link>></span><</action_link>>\
\
<<if !$p_traits.includes("stripper")>>
<<action_link>><span class="action_link"><<link "Apply for a job in here." "Striptease Job Applying">><<addmins 30>><</link>></span><</action_link>>
<<elseif $stam > 0>>
<<charm_link>><<link "Get on stage" "Striptease Job">>
<<stam `-1`>>\
<<addhours 1>>\
<</link>><</charm_link>>
<<else>>\
<span class="not_available">You are too tired to work today.</span>
<</if>>\
\
<<if $p_inv.compare($stripclub_aphrodisiac) && $p_traits.includes("stripper")>>\
<<cun_link>><<link "Start selling aphrodisiac to patrons while looking for clients for private dance.">>\
<<roll>>\
<<if _random > 5>>\
<<set $random_amount = random(2, 8)>>\
<<set $got_money = (4 + $cun) * $random_amount>>\
<<seller_progress>>\
<<money `$got_money`>>\
<<addmins 30>>\
<<set $reputation += 20>>\
<<drop $p_inv "Aphrodisiac" $random_amount>>\
<<run Engine.show()>>\
<<replace "#stripclub">> You've sold $random_amount pieces of aphrodisiac and got $got_money​$.<</replace>>\
<<else>>\
<<set $random_amount = random(1, 8)>>\
<<set $got_money = (3 + $cun) * $random_amount>>\
<<money `$got_money`>>\
<<addmins 30>>\
<<drop $p_inv "Aphrodisiac" $random_amount>>\
<<goto "Striptease Quickie Aphrodisiac">>\
<</if>>\
<</link>><</cun_link>>
<<else>>\
<span class="not_available">You definitely could try to sell some aphrodisiacs to the patrons of this club if you were working as a stripper and had atleast 8pcs on you.</span>
<</if>>\
<<out_link>><<link "Get back to the main street of Suburbs" "Suburbs">>\
<<addmins 10>>\
<</link>><</out_link>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/stripclub.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $mafia_base === false>>\
<<set _roll = random(0, 20)>>\
<<if _roll >= 10>>\
You see a very obvious and generic mafioso in a VIP lounge. Everything screams about it in his attire: formal suit, slicked hairstyle and comedically serious look. You could ask him about his headquarters if you had a way to approach...
<<if $p_traits.includes("stripper")>>\
<<link "Approach as a stripper and offer a free private dance." "Striptease Quickie Info">><<addmins 15>><</link>>
<<else>>\
<span class="not_available">Seems like you don't see any direct ways to approach him. If only you've worked here, hm...</span>
<</if>>\
<<link '"Whatever"' "Striptease Club">><</link>>\
<<else>>\
<<createnpc_suburbs>>\
<<depravity_talk>>\
You've met _name _surname, _job.
<<if $p_traits.includes("observer")>>\
You're pretty sure that he's trait is... _trait.
<<observer_combat_temp>>\
<<if $p_traits.includes("observer_2")>>\
<<observer_driving_temp>>\
<<observer_cun_temp>>\
<</if>>\
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly what his abilities are.</span>
<</if>>\
<<if $money >= 600>>\
<<link "Have a little party with him and add to contacts - 600$." "Striptease Club">>
<<set _npc.friendship += $charm * 2>>\
<<money `-600`>>\
<<addnpc>>\
<</link>>
<</if>>\
<br>\
Add to contacts?
<<link "Yes" "Striptease Club">>
<<addnpc>>\
<</link>>
<<link "No" "Striptease Club">><</link>>
<</if>>\
<<else>>\
<<createnpc_suburbs>>\
<<depravity_talk>>\
You've met _name _surname, _job.
<<if $p_traits.includes("observer")>>\
You're pretty sure that he's trait is... _trait.
<<observer_combat_temp>>\
<<if $p_traits.includes("observer_2")>>\
<<observer_driving_temp>>\
<<observer_cun_temp>>\
<</if>>\
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly what his abilities are.</span>
<</if>>\
<<if $money >= 600>>\
<<link "Have a little party with him and add to contacts - 600$." "Striptease Club">>
<<set _npc.friendship += $charm * 2>>\
<<money `-600`>>\
<<addnpc>>\
<</link>>
<</if>>\
<br>\
Add to contacts?
<<link "Yes" "Striptease Club">>
<<addnpc>>\
<</link>>
<<link "No" "Striptease Club">><</link>>
<</if>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/stripclub.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $charm > 7>>\
<span class="male_text">- "I guess you are sexy enough to earn some money in this biz. But do you even know how to dance?"</span> - Manager says - <span class="male_text">"It's not just about ass shaking. You can use backstage and spare costumes, but try to hone your striptease skills in free time if you wanna hit the jackpot. Look for a dancing group in local gym."</span>
<<link "Nod." "Striptease Club">>\
<<run $p_traits.push("stripper")>>\
<<run $p_traits.push("strip_0")>>\
<</link>>\
<<else>>\
<span class="male_text">- "Sorry, but you're gonna waste your time by working here at these times. You need to look competitive enough."</span> - Manager says.
<<link "Shrug it off." "Striptease Club">>\
<</link>>\
<</if>>\<<silently>>\
<<if $p_traits.includes("strip_3")>>
<<set _skill_bonus = 4>>
<<elseif $p_traits.includes("strip_2")>>
<<set _skill_bonus = 3>>
<<elseif $p_traits.includes("strip_1")>>
<<set _skill_bonus = 2>>
<<elseif $p_traits.includes("strip_0")>>
<<set _skill_bonus = 1>>
<</if>>
<<set _random_roll = random(3, 20)>>\
<<striptease_progress>>\
<<set _random = random(10, 25)>>\
<<set _earnings = (($charm + _random) * _skill_bonus)>>\
<<set _media_dancing = $striptease_pole.random()>>\
<</silently>>\
<style>
body.suburbs::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/suburbs/stripclub.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center>\
The club is alive with pulsing lights and throbbing music, a symphony of color and sound that sets the perfect backdrop for the performance. You've stand for a few mins to get yourself in the mood for the show.
You've quickly changed your clothes behind the stage without any special preferences in clothing set. Club has a high variety of clothes for its performers, but its mostly a skimpy lingerie, a mountain of stockings, a very long stand for footwear with various heels and even a cosplaying sets.
As you step onto the stage, the collective gaze of the audience locks onto you, the heat of their attention a tangible force. You grip the cool, steel pole, feeling its reassuring firmness under your fingers and begin your performance.
<<if _skill_bonus == 4>>\
You've mastered the art of pole dancing. Every movement of your body is calculated, with one simple goal - to seduce the audience, making them gaze upon you and yearn for more. Make them throw their money at you, allow them to put it in your panties and touch your legs, they should wish for it by themselves, its shouldn't be a payment for your time, it should be a payment for the opportunity you provide, opportunity to see your beauty.
And you know how to do it.
<</if>>\
<<if _skill_bonus == 3>>\
You begin to dance, your body swaying in perfect harmony with the music. Each twist and turn flows effortlessly, your muscles moving fluidly as you climb the pole, your legs wrapping around it with seamless precision. It's clear you know your craft.
<</if>>\
<<if _skill_bonus == 2>>\
Words like "Agata," "Aerial Invert," and "Ankle Hang" no longer make your hands tremble or cause you any distress. While your grip might still be a little too tight on the pole and your spins are a bit shaky, your movements have undeniably become more refined.
<</if>>\
<<if _skill_bonus == 1>>\
You hesitate for a moment before stepping into the spotlight, your movements lacking the fluid grace of a seasoned performer. Still, there's a crowd that’s satisfied with even the bare minimum of a tease. However, if you're aiming to rake in more cash, you'll need to perform more or master the art of striptease.
<</if>>\
<video @src="_media_dancing" autoplay loop muted controls width="600" height="350"></video>
You've earned _earnings​$ by dancing on the pole.
<<money `_earnings`>>\
<<if _random_roll >= 10>>\
One of the clients asks if you wanna do a <<link "private dance" "Striptease Private">><<addmins 30>><</link>> for him.
<</if>>\
<<link "Get off from the stage" "Striptease Club">>\
<</link>>\
</center>\<<silently>>
<<if $p_traits.includes("strip_3")>>
<<set _skill_bonus = 4>>
<<elseif $p_traits.includes("strip_2")>>
<<set _skill_bonus = 3>>
<<elseif $p_traits.includes("strip_1")>>
<<set _skill_bonus = 2>>
<<elseif $p_traits.includes("strip_0")>>
<<set _skill_bonus = 1>>
<<else>>
<<set _skill_bonus = 0>>
<</if>>
<<set _random_roll = random(0, 20)>>\
<<set _random = random(3, 6)>>\
<<set _extra_earnings = $charm * _random * 2>>\
<<set _earnings = ($charm * _random * _skill_bonus) >>
<<set _media_dancing = $striptease_private.random()>>\
<</silently>>\
<style>
body.suburbs::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/suburbs/privateroom.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center>\
With a deep breath you begin to move your body, you were swaying sensuously to the slow, yet throbbing beat of the music. Each twist and turn in your dance is a temptation, you wrap a leg around the pole, arching your back in a perfect curve. You can feel the heat of the client’s gaze, every movement igniting an ardent desire.
<video @src="_media_dancing" autoplay loop muted controls width="600" height="350"></video>
Yeah, it's nothing like dancing for a big audience, private time is more intimate, more personal... And, maybe if you were a workaholic type of person, or even if you were a long time stripper, maybe you wouldn't feel any desire in yourself. But there's something special in such admiration of your own body by a stranger in a club...
You spin around the pole, your body a blur of sensual motion. The watcher is mesmerized, his eyes fixed on you as you tease... and then you let your fingers trail down your body and then you wink at the client stopping your dance in a dramatic pose, silent question hungs in the air - shall we continue?
Maybe even overlydramatic, but who cares, there's lot of things can be allowed to you right now, being a seductress is a privilege.
You've earned _earnings​$ by private dancing.
<<money `_earnings`>>\
<<if _random_roll >= 8>>\
Client asks if you wanna do an extra <<charm_link>><<link "sidejob" "Striptease Quickie">><<money `$charm * _random`>><</link>><</charm_link>> right here for _extra_earnings​$. <br>\
<</if>>\
<<link "End the show." "Striptease Club">>\
<</link>>\
</center><style>
body.suburbs::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/suburbs/privateroom.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center><<set _media_bj = $striptease_blow.random()>>\
<<set _media_dancing = $striptease_private.random()>>\
<<set_blowjob_desc>>\
<video @src="_media_dancing" autoplay loop muted controls width="600" height="350"></video>
You've continued dancing on the pole. But now it's not only the client who gazes at you, but you gaze back at him while thinking about this circumstances.
The private cabin exuded raw, erotic energy. No wonders your client is really turned on, everything in this place was designed to arouse people - dim, seductive lighting, rhythmic music, chromed gleaming poles, your clothes and, of course, you personally. Would you that easily accept the offer to fuck for cash in other place? Probably, you could indubitably answer that in different situation, but, right now, even you turned on by this atmosphere. And apparent bulge that you can see on your client pants isn't helping either with straight thinking.
He took his dick out and began to jerk off. Ok, he's obviously in a perfect condition for the next action. You've slowly finished your last move and then stepped out from the small podium. <<linkappend "And then got yourself on the knees.">>
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
_blowjob_desc
<<linkappend "He carelully putted you into desired position and prepare himself for penetration.">>\
<br>\
<<roll_penetration>>\
<<if _penetration == "anal">>\
<<set _media_sex = $striptease_anal.random()>>\
<<anal_whore_progress>>\
<<else>>\
<<set _media_sex = $striptease_vag.random()>>\
<</if>>\
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<<set_event_desc>>\
_event_desc
<<linkappend "It wasnt really long before you heard a grunts of incoming orgasm from the client.">>\
<<finisher>>
You sit together with him for a while and then you decided to <<link "clean yourself up and go back to the hall" "Striptease Club">><</link>>. Your client smiled at you at told that he's gonna relax in private room for little more.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
\
</center><style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/mafiamansion.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Fenced plot with a neat mansion and a well-kept garden. There are a lot of decent cars around the house entrance. Yup, it does indeed look like a HQ of someone affiliated to the Mob. People in quite formal suits around this place is really confirming sight for this thought.
<<if $reputation >= 1000>>\
<<in_link>><<link "Visit the mafia boss." "Mafia Leader S">>
<</link>><</in_link>>\
<<else>>\
<span class="not_available">No one's going to let you into the mansion... yet. A guy at the door tells you that no one knows you. You should work on your reputation. </span>\
<</if>>\
<<include "Car Mechanic">>
<<out_link>><<link "Get back to the main street of Suburbs" "Suburbs">>
<<addmins 15>>
<</link>><</out_link>><style>
body.suburbs::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/suburbs/privateroom.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center>\
<<set _media_dancing = $striptease_private.random()>>\
He eyegazed you very closely and then nodded to himself.
<span class="male_text">- "Who's gonna say no to a offer from such babe?"</span>
You took him by hand and began leading him to the private cabin. Whole way he was staring at your ass, maybe it was intentional from your side, maybe not, but more attention he gives you the better for now. When both of you took your positions, you've started the show.
With a deep breath you begin to move your body, you were swaying sensuously to the slow, yet throbbing beat of the music. Each twist and turn in your dance is a temptation, you wrap a leg around the pole, arching your back in a perfect curve. You can feel the heat of the client’s gaze, every movement igniting an ardent desire.
<video @src="_media_dancing" autoplay loop muted controls width="600" height="350"></video>
Yeah, it's nothing like dancing for a big audience, private time is more intimate, more personal... And, maybe if you were a workaholic type of person, or even if you were a long time stripper, maybe you wouldn't feel any desire in yourself. But there's something special in such admiration of your own body by a stranger in a club...
You spin around the pole, your body a blur of sensual motion. The mafioso is mesmerized, his eyes fixed on you as you tease... and then you let your fingers trail down your body and then you wink at the client stopping your dance in a dramatic pose, silent question hungs in the air - shall we continue?
Maybe even overlydramatic, but who cares, there's lot of things can be allowed to you right now, being a seductress is a privilege. And your intent is to seduce this guy in order to get information out of him.
He's clearly is pent up after your show, but asking about Mafia's HQ right now would be really tactless, and you doubt that he'll just gonna pass it that easily. Nonetheless, he's not planning to leave just yet, and awaits for your next course of action.
\
<span id="choice"><<link "I'll get info in other way, not like that." "Striptease Club">>\
<</link>></span>\
<<linkreplace "You're ready to spread your legs for your goals.">>\
<<addmins 30>>\
<<replace "#choice">><nobr></nobr><</replace>>\
<<set $mafia_base = true>>\
<<set $p_depravity += 2>>\
<<set _media_bj = $striptease_blow.random()>>\
<<set _media_dancing = $striptease_private.random()>>\
<<set_blowjob_desc>>\
<video @src="_media_dancing" autoplay loop muted controls width="600" height="350"></video>
You've continued dancing on the pole. But now it's not only the mafiozo who gazes at you, but you gaze back at him while thinking about this circumstances.
The private cabin exuded raw, erotic energy. No wonders this guy is really turned on, everything in this place was designed to arouse people - dim, seductive lighting, rhythmic music, chromed gleaming poles, your clothes and, of course, you personally. Would you that easily accept the offer to fuck for info in other place? Probably, you could indubitably answer that in different situation, but, right now, even you turned on by this atmosphere. And apparent bulge that you can see on your client pants isn't helping either with straight thinking.
He took his dick out and began to jerk off. Ok, he's obviously in a perfect condition for the next action. You've slowly finished your last move and then stepped out from the small podium. <<linkappend "And then got yourself on the knees.">>
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
_blowjob_desc
<<roll_penetration>>\
<<linkappend "He carelully putted you into desired position and prepare himself for penetration.">>\
<<if _penetration == "anal">>\
<<set _media_sex = $striptease_anal.random()>>\
<<anal_whore_progress>>\
<<else>>\
<<set _media_sex = $striptease_vag.random()>>\
<</if>>
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<<set_event_desc>>\
_event_desc
<<linkappend "It wasnt really long before you heard a grunts of incoming orgasm from the client.">>\
<<finisher>>
You sit together with him for a while and then you've asked him about his gang. He carelessly began to yap about his gang achievements, businesses and how great they are. It wasn't hard to charm out of him a location of Mafia's HQ afterall. After that, you've decided <<link "clean yourself up and go back to the hall" "Striptease Club">><</link>>. Mafioso has smiled at you at told that he's gonna relax in private room for little more.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
<</linkreplace>>\
\
</center><style>
body::before {
content: '';
background-image: url("img/background/events/car_theft.webp");
inset: 0;
position: fixed;
filter:grayscale(90%);
background-size: cover;
}
</style>\
<center>\
You're trying to steal a $target_car!
<span id="countdown">Countdown: $timer_seconds seconds remaining.</span>\
\
<<silently>>
<<if $timer_seconds == $starting_timer_vehicle>>
<<vehicle_theft>>
<<else>>
<<vehicle_theft_refresh>>
<</if>>
<<if $right_solution_vehicle < $theft_solutions_needed>>
<<repeat 1s>>
<<set $timer_seconds -= 1>>
<<if $timer_seconds > 0>>
<<replace "#countdown">>Countdown: $timer_seconds seconds remaining.<</replace>>
<<else>>
<<replace "#countdown">>Busted!<</replace>>
<<timed 1s>>
<<car_thief_fail>>\
<<goto "Motor Vehicle Caught">>\
<</timed>>
<<stop>>
<</if>>
<</repeat>>
<<else>>
<<goto "Motor Vehicle Theft Success">>
<</if>>
<</silently>>
\
$car_theft_problem
<span id="reaction">"What should you do with this problem..."</span>
You're gonna...
<span id="options"><<link "_option1">>
<<set _solution = _option1>>\
<<vehicle_theft_check>>\
<</link>>
<<link "_option2">>
<<set _solution = _option2>>\
<<vehicle_theft_check>>\
<</link>>
<<link "_option3">>
<<set _solution = _option3>>\
<<vehicle_theft_check>>\
<</link>></span>
<<link "Think of some other options...">>
<<vehicle_options_replace>>\
<</link>>\
<<linkreplace "Run away while you can.">>\
<<if $timer_seconds > 15>>\
<<restore_vehicle_theft_params>>\
<<goto "Home">>\
<<addmins 30>>\
<<else>>\
<span class="not_available">It's too late to run.</span>
<</if>>\
<</linkreplace>>\
</center>\<style>
body.center::before {
content: '';
background-image: url("img/background/center/custody.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $was_in_custody == 0>>\
<<set $was_in_custody = 1>>\
...and you went to custody.
Gladly, police chief knows about your true identity and mission, and he made sure that you know that he knows when you arrived at police department. He took you into his office.
- "We cannot allow you to misbehave absolutely for nothing tho." - Chief says. - "Because its your first time in here, i'll let it slip through my fingers this time. Next time, prepare for penalty. But it would be much better if you just won't get yourself busted, my subordinates might start sniffing out something. Wait in my office for one hour and leave, let's pretend that we had a deal."
<<link "Nod." "City Center">>\
<<addhours 1>>\
<</link>>\
\
<<elseif $was_in_custody == 1>>\
<<set $was_in_custody = 2>>\
...and you went to custody.
This time, police chief was looking quite disappointed and didn't took you from his subordinates. You were taken to the cell and locked up.Well, atleast there's no one in detention besides you and warden. Also, surprisingly, no one searched you.
The warden looked meaningfully at the corner where the CCTV was located and sighed loudly. Oh, now you notice it - a high-mounted camera is gloomily tilted down, it is clearly disabled.
- "So, we're gonna do it in a good way or bad way. Either of that is very wrong, if you ask me. because you are a <<rep_check_warden>> you're gonna pay a ''_warden_bribe'' dollars me and we gucci. If you don't have such money - you're gonna pass here a few days and enjoy a view of shabby walls. Also, i'm gonna search you and take all your money nonetheless. But, i guess, chilling time in detention is not in your plans, am i right?"
<br>\
<<warden_seduce>>\
<<bribe_pay>>\
<br>\
<span class="in_link"><<link "Shrug and sit at the bunks.">>\
<<set $custody_term = 3>>\
<<set $fine_amount = _warden_bribe>>\
<<goto "NewDay">>\
<</link>></span>\
<<elseif $was_in_custody >= 2>>\
...and you went to custody.
It's not your first time here; some officers smirk when they see you, while others look at you with undisguised loathing. Not everyone agrees with the corrupt practices that have taken root here, huh?
Leading officer drops you into your "bedchamber".
- "You again?" - warden sighs and looked at paper on his table - "Ok, today's prices are as follows: you are a <<rep_check_warden>>so you payment is _warden_bribe dollars. Capish, gangster?"
<<if $warden_seduced == 2>>\
<<warden_seduce_3>>\
<<elseif $warden_seduced == 1>>\
<<warden_seduce_2>>\
<<elseif $warden_seduced == 0>>\
<<warden_seduce>>\
<</if>>\
<<bribe_pay>>\
<br>\
<span class="in_link"><<link "Shrug and sit at the bunks.">>\
<<set $custody_term = 3>>\
<<set $fine_amount = _warden_bribe>>\
<<goto "NewDay">>\
<</link>></span>\
<</if>>\<style>
body::before {
content: '';
background-image: url("img/background/events/car_theft.webp");
inset: 0;
position: fixed;
filter:grayscale(90%);
background-size: cover;
}
</style>\
<<mafia_car_sell>>\
You did it. You've stole $target_car!
Where to now?
<<link "Sell it to mafia" "Mafia Headquarters">>
<<money `+ _price`>>\
<<restore_vehicle_theft_params>>\
<<car_thief_success>>\
<<addhours 1>>\
<<set $reputation += 60>>\
<</link>>
They'll pay you a _price dollars for this car.
\
<<if $garage > 0 && $garage_inv.array.length <= $garage_size>>\
<<link "Stash it in your garage." "Garage">>\
<<pickup $garage_inv $target_car 1>>\
<<restore_vehicle_theft_params>>\
<<car_thief_success>>\
<<addhours 1>>\
<<set $reputation += 30>>\
<</link>>\
<<else>>\
<span class="not_available">You don't have any free places to stash a stolen car.</span>
<</if>>/* Vehicle Theft */
<<widget "vehicle_theft">>
<<silently>>
<<set $car_theft_problem = ($vehicle_problem.random())>>
<<if $car_theft_problem == "Radio turns on">>
<<set _option1 = either($radio_problem)>>
<<set _option2 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<<set _option3 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<</if>>
<<if $car_theft_problem == "Someone is watching you">>
<<set _option1 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<<set _option2 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<<set _option3 = either($someone_problem)>>
<</if>>
<<if $car_theft_problem == "You can't find an ignition cabel">>
<<set _option1 = either($ignition_problem)>>
<<set _option2 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<<set _option3 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<</if>>
<<if $car_theft_problem == "Car alarm turns on">>
<<set _option1 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<<set _option2 = either($alarm_problem)>>
<<set _option3 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<</if>>
<</silently>>
<</widget>>
<<widget "vehicle_theft_check">>
<<silently>>
<<set _fail_phrase = either($vehicle_fail)>>
<<if $car_theft_problem == "Radio turns on">>
<<if _solution == "Find a stereo volume control">>
<<replace "#reaction">>''You've got it.''<</replace>>
<<set $right_solution_vehicle += 1>>
<<timed 1s>>
<<vehicle_theft>>
<<goto "Motor Vehicle Theft">>
<</timed>>
<<else>>
<<set $timer_seconds -= 3>>
<<replace "#reaction">>_fail_phrase<</replace>>
<<replace "#countdown">>Countdown: $timer_seconds seconds remaining.<</replace>>
<</if>>
<</if>>
<<if $car_theft_problem == "Someone is watching you">>
<<if _solution == "Pretend that it is your car">>
<<replace "#reaction">>''Nice acting, that worked well.''<</replace>>
<<set $right_solution_vehicle += 1>>
<<timed 1s>>
<<vehicle_theft>>
<<goto "Motor Vehicle Theft">>
<</timed>>
<<else>>
<<set $timer_seconds -= 3>>
<<replace "#reaction">>_fail_phrase<</replace>>
<<replace "#countdown">>Countdown: $timer_seconds seconds remaining.<</replace>>
<</if>>
<</if>>
<<if $car_theft_problem == "You can't find an ignition cabel">>
<<if _solution == "Focus">>
<<replace "#reaction">>''That's the best thing you could do right now.''<</replace>>
<<set $right_solution_vehicle += 1>>
<<timed 1s>>
<<vehicle_theft>>
<<goto "Motor Vehicle Theft">>
<</timed>>
<<else>>
<<set $timer_seconds -= 3>>
<<replace "#reaction">>_fail_phrase<</replace>>
<<replace "#countdown">>Countdown: $timer_seconds seconds remaining.<</replace>>
<</if>>
<</if>>
<<if $car_theft_problem == "Car alarm turns on">>
<<if _solution == "Pull car's alarm wires">>
<<replace "#reaction">>''Aaaand alarm went silent. Nice.''<</replace>>
<<set $right_solution_vehicle += 1>>
<<timed 1s>>
<<vehicle_theft>>
<<goto "Motor Vehicle Theft">>
<</timed>>
<<else>>
<<set $timer_seconds -= 3>>
<<replace "#reaction">>_fail_phrase<</replace>>
<<replace "#countdown">>Countdown: $timer_seconds seconds remaining.<</replace>>
<</if>>
<</if>>
<</silently>>
<</widget>>
<<widget "vehicle_theft_refresh">>
<<silently>>
<<if $car_theft_problem == "Radio turns on">>
<<set _option1 = either($radio_problem)>>
<<set _option2 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<<set _option3 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<</if>>
<<if $car_theft_problem == "Someone is watching you">>
<<set _option1 = either($someone_problem)>>
<<set _option2 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<<set _option3 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<</if>>
<<if $car_theft_problem == "You can't find an ignition cabel">>
<<set _option1 = either($ignition_problem)>>
<<set _option2 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<<set _option3 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<</if>>
<<if $car_theft_problem == "Car alarm turns on">>
<<set _option1 = either($alarm_problem)>>
<<set _option2 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<<set _option3 = either($radio_problem, $someone_problem, $ignition_problem, $alarm_problem)>>
<</if>>
<</silently>>
<</widget>>
<<widget "vehicle_options_replace">>\
<<vehicle_theft_refresh>>\
<<replace "#options">>\
<<link "_option1">>
<<set _solution = _option1>>\
<<vehicle_theft_check>>\
<</link>>
<<link "_option2">>
<<set _solution = _option2>>\
<<vehicle_theft_check>>\
<</link>>
<<link "_option3">>
<<set _solution = _option3>>\
<<vehicle_theft_check>>\
<</link>>\
<</replace>>\
<</widget>>\
<<widget "restore_vehicle_theft_params">>\
<<set $vehicle_problem = ["Radio turns on", "Someone is watching you", "You can't find an ignition cabel", "Car alarm turns on"]>>
<<set $right_solution_vehicle = 0>>
<<set $car_theft_problem = "">>
<<set $timer_seconds = $starting_timer_vehicle>>
<<set $target_car = "">>
<<set $vehicle_problem = ["Radio turns on", "Someone is watching you", "You can't find an ignition cabel", "Car alarm turns on"]>>
<<set $radio_problem = ["Hit something", "Try to break something", "Find a stereo volume control", "Scream", "Shoo at it"]>>
<<set $someone_problem = ["Start threatening them", "Pretend that it is your car", "Show inappropriate signs", "Honk on them"]>>
<<set $ignition_problem = ["Focus", "Turn the steering wheel", "Start threatening the car", "Press all pedals", "Hit the steering wheel"]>>
<<set $alarm_problem = ["Sing something", "Pull car's alarm wires", "Break the glass", "Honk melodiously", "Hit the subwoofer"]>>
<<set $vehicle_fail = ["You've done something wrong...", "It couldnt be worse than that, right?", "Damn, it made everything even worse!", "Oops...", "Mistakes were made...", "Oof, that's no right!", "Argh, stupid car!"]>>
<</widget>>\
<<widget "mafia_car_sell">>\
<<silently>>\
<<switch $target_car>>
<<case "SUV Car">>
<<set _price = 650>>
<<case "Muscle Car">>
<<set _price = 700>>
<<case "Pickup Truck">>
<<set _price = 500>>
<<case "Sedan Car">>
<<set _price = 400>>
<<case "Porter Car">>
<<set _price = 350>>
<<case "Van Car">>
<<set _price = 450>>
<<case "Sportcar">>
<<set _price = 800>>
<</switch>>
<</silently>>\
<</widget>>\<<if $met_mechanic == 0>>\
Garage doors are open and you see how an unusually unclean for this place guy is poking around under the hood of one of the cars.
<<linkreplace "Approach him">>\
Guy turns to you: <span class="male_text">"Hey, you are a new one here? Obviously a newcommer or some hustler, no reasons for anyone else to visit this place. I'm Brody, your car mechanic, nice to meet you."</span> - he waves <span class="male_text">- "Also, i'm the one who deals with stolen vehicles."</span>\
<<set $met_mechanic = 1>>\
<br>\
<<in_link>><<link "Nod" "Mafia Headquarters">>\
<</link>><</in_link>>\
<</linkreplace>>\
<</if>>\
\
<<if $met_mechanic == 1>>\
<<set _yapping = $mechanic_advice.random()>>\
You see a <<linkappend "Brody.">>
<span class="male_text">"_yapping"</span>
<<linkreplace "Ask if you can fence him a stolen wheels.">>\
<span class="male_text">"Of course. Just don't blame me if our price for vehicles isn't gonna meet your expectations, this is a perk of monopoly in this sphere, hah. So, yeah, your only option except me is to establish your own biz, but i doubt that you'll be able to. I assume you're planning to go on your first ride? I can sell you a car opening toolkit for 400 bucks. Also, don't forget self-defence tools! I can lend you one... for a price."</span>
<<in_link>><<link "Nod again." "Mafia Headquarters">>
<</link>><</in_link>>\
<<set $met_mechanic = 2>>\
<</linkreplace>>\
<</linkappend>>\
<</if>>\
\
<<if $met_mechanic == 2>>\
<<set _yapping = $mechanic_advice.random()>>\
You see a <<linkappend "Brody.">>
<span class="male_text">"_yapping"</span>
<<if $money >= 400>>\
<<trade_link>><<link "Buy a car opening toolkit - 400$">><<pickup $p_inv "Car Opening Tools" 1>><<money `-400`>>\
<<replace ".male_text">>"Glad doing business with ya."<</replace>>\
<</link>><</trade_link>>
<<else>>\
<span class="not_available"> Buy a car opening toolkit - 400$ </span>
<</if>>\
<<if $money >= 700>>\
<<trade_link>><<link "Buy a baseball bat - 700$">><<pickup $p_melee "Baseball Bat" 1>><<money `-700`>>\
<<replace ".male_text">>"Glad doing business with ya."<</replace>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available">Buy a baseball bat - 700$</span>
<</if>>\
<</linkappend>>\
<</if>>\<<silently>>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>
<</for>>\
<<count_morale_change>>\
<<band_payday>>\
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/background/home/whiteboard.webp");
inset: 0;
position: fixed;
background-size: 100vw 100vh;
background-position: center;
background-repeat: no-repeat;
background-color: grey;
}
</style>\
<<if $p_boss == false>>\
<<pre_band>>\
<<else>>\
Name of the organization: "$band_name", $band_type.
Gang morale: $band_morale/100. <<linkreplace "Morale explanation">> - The more dirty jobs and shady businesses you involve your organization in, the bigger the hit to morale. But everything can be fixed with money, and your people will stay loyal as long as you have cash to spare. The lower your gang's morale, the higher the payments you'll have to make every day.<</linkreplace>>
Morale change everyday: _morale_change.
Amount of accomplices: _i.
Everyday payments for your crew: _band_payday​$.
Combat strength of your band: $band_strength. <<linkreplace "Band strength explanation">> - Band strength is important for turf capturing process. The stronger your gang compared to the enemy, the faster the capture progresses. However, capture is impossible if your gang is weaker than enemies.<</linkreplace>>
<</if>>\
\
<<if $taxmen_friend == true>>\
You have a taxmen who assists you with, well, taxes.
<</if>>\
<<if $chemist > 0>>\
Amount of chemists: $chemist.
<</if>>\
<<if $dark_alleys_sluts > 0>>\
Amount of whores working on you in Harbor: $dark_alleys_sluts/15.
<</if>>\
<<out_link>><<link "Step away." "Home">>
<</link>><</out_link>>
<<if $p_boss == true>>\
<<if $right_hand.name>>\
<<include "The Code">>
<</if>>\
<<include "Band Positions">>
<<include "Bands States">>
<<include "Hostile Actions">>
<</if>>\
<<include "Tasks Journal">>
<<if $strange_note_1 == true || $strange_note_2 == true || $strange_note_3 == true || $strange_note_4 == true>>\
<<include "Strange Notes">>
<</if>>\
<<if $sluts_list.length > 0>>\
<<include "Sluts List">>
<</if>>\<<message "Check the all found strange notes" btn>>
<<if $p_inv.has("Strange Note#1") || $stash.has("Strange Note#1")>>\
1. If you lost something important - like this //very important// note - you always can buy it in pawnshop! But, of course, you must find it at first. Also, you can put all notes on the whiteboard at home, you just need to have it in your stash or pockets!
2. If you somehow got yourself in troubles - remember to watch over your health and endurance. No one is able to stand on their feet after a good beating.
3. Speaking of which, your battery will die if youre gonna work, whatever your work is. Anything else? Go nuts. But the second you try earning, you’re on the clock.
P.S.
Look for other notes in various places! Even in those that are closed in specific time of day.
If you feel like you're lacking the skills for the job, just keep at it - one day, you'll get better. This applies to everything.
<</if>>\
<<if $p_inv.has("Strange Note#2") || $stash.has("Strange Note#2")>>
4. Rumours says that there's a secret gang of hackers in a suburbs area. This gang offers a various information and skills for the one who seeks it.
5. Car allows you to travel much faster and significantly more easily, like, literally just by wishing when and where you wanna ride. If you tired of constant moving between districts - get a car! Its too obvious, yeah?
6. What you can see on woman's body, hockey field and a chessboard?... Combination! Some clothes are more provocative and some of them are more elegant. Both types of these styles gonna raise up your charm if you're stack more enough of them. And, of course, you can combine styles.
7. By the way, about clothes - shop offers are not always the same. Variety of wares is going to change. Just something big enough should happen.
<</if>>\
<<if $p_inv.has("Strange Note#3") || $stash.has("Strange Note#3")>>
8. Have you ever thought about a trading business? Its quite easy, mind you! You just need:
1) find a place to store your cargo, warehouse preferably;
2) prepare your cargo, you may wanna do it right in a storage place i've mentioned previously! (it's more convenient to do) - for that you need to have a considerable amount of your wares, something like 100 pcs!;
3) find a distributor! It might be some dropshipper or a large-quantity distributing services provider.
P.S. You don't really have to pack your wares into cargo, if you are a small trader it might be wiser to work on your connection and a first capital! Just don't forget to turn your capital into more profit.
9. If you are true dealer - don't be ashamed of trying to sell something in unconventional places! Even in places like gym and various clubs - develop your business skills everywhere!
10. Streets are peculiarly full of illegal chemical substances nowadays. I wonder, from where do ghetto chemists are getting their supplements? I can imagine you can get some of it on the market, but i dunno how you can get chemical materials for such things without connections in pharmaceuticals circles... or without skills in theft, i guess?
<</if>>\
<<if $p_inv.has("Strange Note#4") || $stash.has("Strange Note#4")>>
11. Whenever a new party spot opens in the city, it gets an initial surge in popularity! Well, it's not some big secret - it works the same way with everything in life. But the novelty effect fades quickly..
12. Speaking of which, if this place, figuratively speaking, is stocked with everything it has to offer, it will continue to steadily gain popularity over time!
13. Higher popularity brings more problems. Isn’t that obvious? It can hurt your reputation and even lead to losses, and more popular the place bigger the losses.
14. Higher popularity also increases demand for the products you offer. So, the more popular your place, the higher the demand for your goods, and ultimately, the more profit that goes into replenishing your stock.
<</if>>\
<</message>><<message "Check your tasks" btn>>\
<<if $p_boss == true>>\
<br>\
<<if $suburbs_state == false>>\
''Capture the Suburbs.'' Conquer the Mafia. After meeting Alfa Romano, you realize that the only way to take over their territory is to force them out. You'll have to declare war.
<<else>>\
<s>''Capture the Suburbs.'' Conquer the Mafia. After meeting Alfa Romano, you realize that the only way to take over their territory is to force them out. You'll have to declare war.</s>
<</if>>\
<<if $downtown_state == false>>
''Capture the Downtown.'' Conquer the Gang Streets. They only understand strength and control everything by force. So, we'll speak the same language.
<<else>>
<s>''Capture the Downtown.'' Conquer the Gang Streets. They only understand strength and control everything by force. So, we'll speak the same language.</s>
<</if>>\
<<if $outskirts_state == false>>
''Capture the Outskirts.'' Conquer the Bikers. It’ll be tough to drive the bikers out of their element, but their leader loves money immensely. You don’t need a knife to beat the greedy - just flash him a copper penny and he’s done. Or, you could declare war.
<<else>>
<s>''Capture the Outskirts.'' Conquer the Bikers. It’ll be tough to drive the bikers out of their element, but their leader loves money immensely. You could make him an offer he can’t refuse - 500000$ in dirty should be enough to buy him out completely. Or, you could declare war.</s>
<</if>>\
<<if $harbor_state == false>>
''Capture the Harbor.'' Drive the Cartel out of the city. The cartel will surrender their positions if a new major player emerges in the city. Just work on building your reputation. Fighting them is pointless; it’s a massive organization that doesn’t engage in conflicts but rather resolves them.
<<else>>
<s>''Capture the Harbor.'' Drive the Cartel out of the city. The cartel will surrender their positions if a new major player emerges in the city. Just work on building your reputation. Fighting them is pointless; it’s a massive organization that doesn’t engage in conflicts but rather resolves them. </s>
<</if>>\
<<else>>\
Look around and you'll find some additional tasks that will boost you.
<</if>>\
<<if $burglar_quest == 1>>\
Shady dude from Gangs has asked me to find a dose of a new drug somewhere in Downtown. He said that a lot of people in residential complex is taking this new drug, so it shouldnt be a problem. Time for ye olde burglary?
<<elseif $burglar_quest > 1>>\
<s>Shady dude from Gangs has asked me to find a dose of a new drug somewhere in downtown. He said that a lot of people in residential complex is taking this new drug, so it shouldnt be a problem. Time for ye olde burglary?</s>
<</if>>\
<<if $burglar_quest == 2>>\
And after that he asked me to find a dealer... classic. He thinks that Cartel stands behind this drug, so he told me about their location in harbor and asked to get him a full batch of aphrodisiac, it should be, like, 50 pieces?
<<elseif $burglar_quest > 2>>\
<s>And after that he asked me to find a dealer... classic. He thinks that Cartel stands behind this drug, so he told me about their location in harbor and asked to get him a full batch of aphrodisiac, it should be, like, 50 pieces?</s> - Merchant told me an email of his dealer, from now i can order the same wares as from Merchant's by my PC.
<</if>>\
<<if $distributor_hackers == 1>>\
Distributor has asked me to bring him an electronics shipments. He wants to introduce me to some kind of tech savvy organization in the city. Probably its worth a hassle. I can get some electronics in mall, but it'll hit the wallet... also i can try to befriend someone who can fetch me a few electronics from their working place.
<<elseif $distributor_hackers > 1>>\
<s>Distributor has asked me to bring him an electronics shipments. He wants to introduce me to some kind of tech savvy organization in the city. Probably its worth a hassle. I can get some electronics in mall, but it'll hit the wallet... also i can try to befriend someone who can fetch me a few electronics from their working place.</s> - Hackers hideout are located in the suburbs.
<</if>>\
<<if $hackers_met == 2>>\
Seems like hackers doesnt trush me... yet. Maybe i should supply them with enough electronics? Or ask someone who for help. Bikers are quite famous for their connections, should i ask them?
<<elseif $hackers_met > 2>>\
<s>Seems like hackers doesnt trush me... yet. Maybe i should supply them with enough electronics? Or ask someone who for help. Bikers are quite famous for their connections, should i ask them?</s> - Anyway i got their trust. From now i can build cryptocurrency farm. I just need a place for it, something with low temps. Something like... basement? That should do it. Any house should have a basement.
<</if>>\
<<if $burglars_event == true>>\
Also you have a problem with burglars assaulting your home.
<</if>>\
<</message>><<if $garage == 1>>\
A spacious prefab garage with room for at least six cars - more than enough for your growing collection.
<style>
body::before {
content: '';
background-image: url("img/background/home/garage-t1.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $garage == 2>>\
Your neighbors’ garages are now yours, expanding your parking empire one door at a time.
<style>
body::before {
content: '';
background-image: url("img/background/home/garage-t2.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $garage == 3>>\
A sleek two-story garage with massive windows - because what’s the point of luxury cars if no one can see them?
<style>
body::before {
content: '';
background-image: url("img/background/home/garage-t3.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $garage == 4>>\
Your collection now extends underground, hidden beneath layers of reinforced concrete.
<style>
body::before {
content: '';
background-image: url("img/background/home/garage-t4.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<</if>>\
You can stash $garage_size cars right here. Not counting legal purchases.
Your active car right now is \
<<switch $car>>\
<<case 0>>\
''nothing. Get some wheels.''
<<case 1>>\
''budget car.''
<<case 2>>\
''mid-tier car.''
<<case 3>>\
''sportcar.''
<</switch>>\
<<if $car_1 == true>>\
Some poor man’s car stands in its spot, somewhere in the dark corners of the garage.
<<if $car != 1>>\
Change your active car to<<link " the budget option." "Garage">>\
<<set $car = 1>>\
<<set $chase_car_bonus = 0>>\
<<set $energy_mod_car = 0>>\
<</link>>
<</if>>\
<</if>>\
<<if $car_2 == true>>\
Your white-collar pride is nestled in the garage.
<<if $car != 2>>\
Change your active car to<<link " the middle-tier variant." "Garage">>\
<<set $car = 2>>\
<<set $chase_car_bonus = 10>>\
<<set $energy_mod_car = 0>>\
<</link>>
<</if>>\
<</if>>\
<<if $car_3 == true>>\
Expensive sportcar took its place in the middle of the garage. All that’s missing is the spotlight.
<<if $car != 3>>\
Change your active car to<<link " the sportcar." "Garage">>\
<<set $car = 3>>\
<<set $chase_car_bonus = 20>>\
<<set $energy_mod_car = 1>>\
<</link>>
<</if>>\
<</if>>\
<<if $car != 0>>\
<<link "Stop using any cars." "Garage">>
<<set $car = 0>>\
<<set $chase_car_bonus = 0>>\
<</link>>
<</if>>\
Other cars in garage:
<<inv $garage_inv drop inspect all>>
<<out_link>><<link "Go back home" "Home">>\
<</link>><</out_link>>\<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/warehouse.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
The warehouse hums with activity, workers moving crates with practiced ease, well aware of whose business they serve. Certain shipments remain carefully covered - meant for no eyes but the right ones. Heavy-set guards stand by the foreman’s booth, watching everything.
<<if $harbor_state == true>>\
<span class="male_text">- "Ma'am. Everything is under control.</span>
<</if>>\
<<if $cartel_met >= 3>>\
<<in_link>><<link "The Distributor." "The Distributor">>\
<</link>><</in_link>>
<<action_link>><<link "Call a chemist." "Cartel Workbench">>\
<</link>><</action_link>>\
<<elseif $cartel_met === 1 || $cartel_met === 2>>\
<<link "The Distributor" "The Distributor">>\
<</link>>\
<<elseif $cartel_met === 0>>\
<<in_link>><<link "Approach the foreman's cabin" "The Distributor">>\
<</link>><</in_link>>\
<</if>>
<<out_link>><<link "Get back to the main street of Harbor" "Harbor">>
<<addmins 15>>
<</link>><</out_link>>A maze of warehouses lines the docks, each belonging to a different business, yet all sharing the same rusted look. Trucks come and go, workers move crates without questions, and the salty air carries the constant hum of industry.
<span id="warehouses"></span>\
<<if $p_warehouse > 0>>\
<<in_link>><<link "Your warehouse." "Player Warehouse">>\
<</link>><</in_link>>\
<<elseif $p_warehouse === 0 && $money >= 30>>\
<<link "Rent a warehouse - 60$/day. Prepayment upfront.">>
<<set $p_warehouse = 1>>\
<<set $p_warehouse_size = 5>>\
<<money `-60`>>\
<<set $warehouse_rent = 60>>\
<<run Engine.show()>>
<<replace "#warehouses">> You've began leasing a warehouse for your operations.<br><</replace>>\
<</link>>\
<<else>>\
<span class="not_available"> You need to have atleast 60$ to begin renting a warehouse.</span>\
<</if>>\
<<if $gameDate.getHours() >= 22 || $gameDate.getHours() <= 4>>\
<<if $p_inv.has("Lockpick") && $stam >= 1>>\
You may <<cun_link>><<link "use your lockpick" "Harbor Burglary">><<stam `-1`>><<set $reputation += 50>>\<<drop $p_inv "Lockpick" 1>><<addmins 20>><</link>><</cun_link>> to try yourself in burglary craft.\
<<else>><span class="not_available">You are either too tired or don't have a lockpicks to try your luck in burglary.</span>
<</if>>\
<<else>>\
<span class="not_available">It's too dangerous to try to steal from warehouses during a day.</span>\
<</if>>
<<out_link>><<link "Get back to the main street of Harbor" "Harbor">>
<<addmins 15>>
<</link>><</out_link>><style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/warehouse.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Steel shelves tower above, stacked with crates and chaos, every step echoing on cold concrete. Somewhere in the distance, the creak of a metal door reminds you that you’re not as alone as it feels, guards somewhere nearby. Time to move fast before this industrial jungle swallows you whole.
<<if $p_traits.includes("burglar")>>\
<<set _alert = random(4, 5)>>\
<<else>>\
<<set _alert = random(2, 4)>>\
<</if>>\
<span id="alert-display"><<display "Harbor Alert">></span><span id="noice"></span>\
\
<<harbor_burglary>>\
<<harbor_burglary>>\
<<harbor_burglary>>\
<<harbor_burglary>>\
<<harbor_burglary>>\
<<if $cartel_base == false>>\
<<linkappend "You see a peculiar symbol on consignment note...">>
<<set $cartel_base = true>>\
…and the cargo suspiciously contains very specific shit for some ghetto chemistry. Not that you know much about chemistry, but this ain't a pharma warehouse - looks like you're robbing the so-called Cartel. You note down the address; meeting their leader later might be wise. But first, you need to finish the job here.
<</linkappend>>
<</if>>\
<span id="harbor-getaway"><<display "Harbor Getaway">></span>
<<if $heist_type == "Cartel Warehouse">>\
<br>\
You’re also checking every possible lead that could come in handy for the heist.
<</if>>\<<if _alert >= 2>>
<span class="out_link"><<link "Leave this place" "Harbor">>\
<<addmins 15>>\
<<burglar_success>>\
<<if $heist_type == "Cartel Warehouse">>\
<<set $heist_progress += 20>>\
<<notify 7s>>You've scouted warehouses a little, this should help with heist preparation.<</notify>>\
<</if>>\
<</link>></span>
<<else>>
<span class="out_link"><<link "Run away" "Harbor">>\
<<addmins 15>>\
<<stam `-3`>>
<<burglar_success>>\
<<if $heist_type == "Cartel Warehouse">>\
<<set $heist_progress += 20>>\
<<notify 7s>>You've scouted warehouses a little, this should help with heist preparation.<</notify>>\
<</if>>\
<</link>></span>
<</if>>\<<if _alert >= 3>>\
It's quiet.
<</if>>\
<<if _alert === 2>>\
You think you've alerted someone.
<</if>>\
<<if _alert === 1>>\
Someone is coming, run!
<</if>>\
<<if _alert === 0>>\
<<burglar_fail>>\
<<goto "Harbor Burglary Caught">>
<</if>><style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/warehouse.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $do_it_anyway == true>>\
<span class="male_text">- "Oh, okay."</span> The atmosphere shifted abruptly.
<</if>>\
Okay, it's too late to run. Flashlight illuminates you, it's time to fase a consequences...
<<if $reputation >= 9000 && $do_it_anyway == false>>\
<span class="male_text">- "Oh, it's you... Sorry, I didn't mean to bother you. I'm not going to stand in your way. But maybe you shouldn't be here..."</span>
<<link "That's right." "Harbor">>
<</link>> - your reputation speaks for itself!
<<link "Tell him to go ahead and do what he was planning to do with you... You're not gonna hold a grudge.">>\
<<set $do_it_anyway = true>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
<<set _roll = random(0, 20)>>\
<<if _roll >= 10>>\
Guard. He's quite a buff. It won't be easy to push him away. But you can smell something...
Well, you've met a Cartel's guard, and he has access to their new drug. And he's obviously happy to use this access. You can smell this strawberry-like odor around him. \
<br>\
And he definitely wants to punish you ''together with his colleagues'' for this intrusion. Either that, or he's calling a police. You're lucky he's horny enough to not use his Cartel bosses to really punish you.
<br>\
<<link "No way." "Custody">>\
<<set $do_it_anyway = false>>\
<<addhours 1>>\
<</link>> It's better to surrender to the police than that. \
<br>\
<<link 'Accept your "punishment"' 'Harbor Burglary Gangbang'>>
<<set $do_it_anyway = false>>\
<<addhours 1>>\
<<stam `-1`>>\
<<sex_rep_check>>\
<<depravity `1`>>\
<</link>>\
<<if $p_inv.has("Handheld Taser")>>\
<br>\
<<link "Use a taser and run away." "Harbor">>\
<<set $do_it_anyway = false>>\
<<drop $p_inv "Handheld Taser" 1>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> If only you had a taser... </span>\
<</if>>\
<<if $p_traits.includes("fitness_3")>>\
<br>\
<<link "Push him off and run away." "Harbor">>
<<set $do_it_anyway = false>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> Sadly, you're not strong enough to just push him away. It's a guard, after all... </span>\
<</if>>\
<<else>>\
Guard. He's quite a buff. It won't be easy to push him away.
He examined you carefully and then started checking surroundings while triggering alarm. Gladly, he's not from Cartel. Atleast you're not gonna bite the dust today.
<<link "Sigh" "Custody">>
<<set $do_it_anyway = false>>\
<<addhours 1>>\
<</link>>\
<</if>>\
<</if>>\<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/warehouse.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<inv $p_craft use drop inspect all>>
<center><span id="result"></span></center>
<<nobr>>
<div class="crafting_table">
<div class="craft1"><<drugs_harbor>></div>
<div class="craft2">Chems A x2</div>
<div class="craft3">Chems B</div>
<div class="craft4">Paper</div>
<div class="craft5"><<steroids_harbor>></div>
<div class="craft6">Chems B x2</div>
<div class="craft7">Organic Mats</div>
<div class="craft8">Encapsulation Mats</div>
<div class="craft9"><<aphrodisiac_harbor>></div>
<div class="craft10">Chems A</div>
<div class="craft11">Organic Mats x2</div>
<div class="craft12">Encapsulation Mats</div>
<div class="craft13"><<moonshine_harbor>></div>
<div class="craft14">Organic Materials</div>
<div class="craft15">Agricultural Products</div>
<div class="craft16">Agricultural Products</div>
<div class="craft17"><<encapsulation_harbor>></div>
<div class="craft18">Agricultural Products</div>
<div class="craft19">Agricultural Products</div>
<div class="craft20"></div>
</div>
<</nobr>>
<center>Start of each crafting process takes 2 hours and costs you a 400$ for a cartel's chemist services.
<<if $money < 400>>\
''You don't have enough money!''
<</if>>\
<<link "Step out from workbench." "Cartel Warehouses">><</link>>
</center>\<<widget "drugs_craft">>\
<<if $p_craft.compare($drugs_craft)>>\
<span id="craft_link"><<link "Drugs 50x">></span>\
<<drop $p_craft "Chems A" 2 "Chems B" 1 "Paper" 1>>\
<<pickup $p_inv "Drugs" 50>>\
<<chemists_check>>\
<<run Engine.show()>>\
<<replace "#result">>''You've made a batch of drugs.''<</replace>>\
<</link>>\
<<else>>\
Drugs 50x
<</if>>\
<</widget>>\
<<widget "steroids_craft">>\
<<if $p_craft.compare($steroids_craft)>>\
<span id="craft_link"><<link "Steroids 50x">></span>\
<<drop $p_craft "Chems B" 2 "Organic Materials" 1 "Materials for Encapsulation" 1>>\
<<pickup $p_inv "Steroids" 50>>\
<<chemists_check>>\
<<run Engine.show()>>\
<<replace "#result">>''You've made a batch of steroids.''<</replace>>\
<</link>>\
<<else>>\
Steroids 50x
<</if>>\
<</widget>>\
<<widget "aphrodisiac_craft">>\
<<if $p_craft.compare($aphrodisiac_craft)>>\
<span id="craft_link"><<link "Aphrodisiac 50x">></span>\
<<drop $p_craft "Chems A" 1 "Organic Materials" 2 "Materials for Encapsulation" 1>>\
<<pickup $p_inv "Aphrodisiac" 50>>\
<<chemists_check>>\
<<run Engine.show()>>\
<<replace "#result">>''You've made a batch of aphrodisiac.''<</replace>>\
<</link>>\
<<else>>\
Aphrodisiac 50x
<</if>>\
<</widget>>\
<<widget "moonshine_craft">>\
<<if $p_craft.compare($moonshine_craft)>>\
<span id="craft_link"><<link "Moonshine 10x">></span>\
<<drop $p_craft "Organic Materials" 1 "Agricultural Products" 2>>\
<<pickup $p_inv "Moonshine" 10>>\
<<chemists_check>>\
<<run Engine.show()>>\
<<replace "#result">>''You've made a batch of moonshine.''<</replace>>\
<</link>>\
<<else>>\
Moonshine 10x
<</if>>\
<</widget>>\
<<widget "encapsulation_craft">>\
<<if $p_craft.compare($encapsulation_craft)>>\
<span id="craft_link"><<link "Encapsulation Mats x3">></span>\
<<drop $p_craft "Agricultural Products" 2>>\
<<pickup $p_craft "Materials for Encapsulation" 3>>\
<<chemists_check>>\
<<run Engine.show()>>\
<<replace "#result">>''You've made a batch of materials for encapsulation.''<</replace>>\
<</link>>\
<<else>>\
Encapsulation Mats x3
<</if>>\
<</widget>>\
<<widget "drugs_harbor">>\
<<if $money >= 400>>\
<<if $p_craft.compare($drugs_craft)>>\
<span id="craft_link"><<link "Drugs 50x">></span>\
<<drop $p_craft "Chems A" 2 "Chems B" 1 "Paper" 1>>\
<<pickup $p_inv "Drugs" 50>>\
<<addhours 2>>\
<<money `-400`>>\
<<run Engine.show()>>\
<<replace "#result">>You've made a batch of drugs.<</replace>>\
<</link>>\
<<else>>\
Drugs 50x
<</if>>\
<<else>>\
Drugs
<</if>>\
<</widget>>\
<<widget "steroids_harbor">>\
<<if $money >= 400>>\
<<if $p_craft.compare($steroids_craft)>>\
<span id="craft_link"><<link "Steroids 50x">></span>\
<<drop $p_craft "Chems B" 2 "Organic Materials" 1 "Materials for Encapsulation" 1>>\
<<pickup $p_inv "Steroids" 50>>\
<<addhours 2>>\
<<money `-400`>>\
<<run Engine.show()>>\
<<replace "#result">>You've made a batch of steroids.<</replace>>\
<</link>>\
<<else>>\
Steroids 50x
<</if>>\
<<else>>\
Steroids 50x
<</if>>\
<</widget>>\
<<widget "aphrodisiac_harbor">>\
<<if $money >= 400>>\
<<if $p_craft.compare($aphrodisiac_craft)>>\
<span id="craft_link"><<link "Aphrodisiac 50x">></span>\
<<drop $p_craft "Chems A" 1 "Organic Materials" 2 "Materials for Encapsulation" 1>>\
<<pickup $p_inv "Aphrodisiac" 50>>\
<<addhours 2>>\
<<money `-400`>>\
<<run Engine.show()>>\
<<replace "#result">>You've made a batch of aphrodisiac.<</replace>>\
<</link>>\
<<else>>\
Aphrodisiac 50x
<</if>>\
<<else>>\
Aphrodisiac 50x
<</if>>\
<</widget>>\
<<widget "moonshine_harbor">>\
<<if $money >= 400>>\
<<if $p_craft.compare($moonshine_craft)>>\
<span id="craft_link"><<link "Moonshine 10x">></span>\
<<drop $p_craft "Organic Materials" 1 "Agricultural Products" 2>>\
<<pickup $p_inv "Moonshine" 10>>\
<<addhours 2>>\
<<money `-400`>>\
<<run Engine.show()>>\
<<replace "#result">>You've made a batch of moonshine.<</replace>>\
<</link>>\
<<else>>\
Moonshine 10x
<</if>>\
<<else>>\
Moonshine 10x
<</if>>\
<</widget>>\
<<widget "encapsulation_harbor">>\
<<if $money >= 400>>\
<<if $p_craft.compare($encapsulation_craft)>>\
<span id="craft_link"><<link "Encapsulation Mats x3">></span>\
<<drop $p_craft "Agricultural Products" 2>>\
<<pickup $p_craft "Materials for Encapsulation" 3>>\
<<addhours 2>>\
<<money `-400`>>\
<<run Engine.show()>>\
<<replace "#result">>You've made a batch of materials for encapsulation.<</replace>>\
<</link>>\
<<else>>\
Encapsulation Mats x3
<</if>>\
<<else>>\
Encapsulation Mats x3
<</if>>\
<</widget>>\
<<widget "chemists_check">>\
<<switch $chemist>>\
<<case 1>>\
<<addhours 2>>\
<<case 2>>\
<<addmins 105>>\
<<case 3>>\
<<addmins 90>>\
<<case 4>>\
<<addmins 75>>\
<<case 5>>\
<<addmins 60>>\
<<case 6>>\
<<addmins 45>>\
<<case 7>>\
<<addmins 30>>\
<<case 8>>\
<<addmins 15>>\
<<default>>\
<<addmins 5>>\
<</switch>>\
<</widget>>\<<if $burglar_quest == 0>>\
You see a <<link "very suspicious">><<set $burglar_quest = 1>><<replace "#text">>Susguy sells various tools for shady business. But he can't trust you with "special" tools, you need to prove yourself first. "Merchant" tells you that a lot of people in neighbourhood is hooked by a new drug with effect like from strong aphrodisiac. He asks you to find him a single dose of this new drug and tell that you can find some in nearby ''residential complexes'', you just need some tools to enter it. Speaking of which, from now you can buy lockpicks right from him, welcome gift.<</replace>><<dropall $complex>><<pickup $complex "Golden Ring" 1 "Silver Ring" 1 "Junk" 5 "Aphrodisiac" 1 "Smartphone" 1>><</link>> guy.\
<</if>>\
<span id="text"></span>
<<if $p_inv.has("Aphrodisiac") && $burglar_quest === 1>>\
<<linkreplace "Hand in the aphrodisiac.">>\
<<set $burglar_quest = 2>>\
<<dropall $complex>>\
<<set $reputation += 150>>\
<<pickup $complex "Golden Ring" 1 "Silver Ring" 2 "Golden Chain" 1 "Junk" 7 "Smartphone" 1>>\
<<drop $p_inv "Aphrodisiac" 1>>\
<<set $cartel_base = true>>\
"Merchant" examines the aphrodisiac - <span class="male_text">"Seems like Cartel's work. Can you visit their lair and get me a butch of these? Say, something like 50 pills."</span> - He explaines to you how to find a Cartel's base and also asks you to visit him next time, he'll gonna prep a nice safe-cracking toolkit for ya.\
<</linkreplace>>
<</if>>\
<<if $burglar_quest === 2 && $p_inv.has("Aphrodisiac", 50)>>\
<<linkreplace "Hand in a batch of aphrodisiac.">>\
<<drop $p_inv "Aphrodisiac" 50>>\
<<set $reputation += 250>>
<<set $burglar_quest = 3>>\
<<money `100`>>\
<span class="male_text">- "Duuude, thanks a lot! Here, for your trouble"</span> - "Merchant" slaps 100$ in your hand and rubs his chin looking at you - <span class="male_text">"I think i can give an email adress of my dealer. He's gonna ask for more than 30 bucks for a damn lockpick, but convience is worth it, right? I do hope you have a PC tho."</span>\
<</linkreplace>>
<</if>>\
/* Wares */ \
<<if $burglar_quest >= 1>>\
<<if $money > 30>>\
<<trade_link>><<link "Buy a lockpick - 30$">>\
<<pickup $p_inv "Lockpick" 1>>\
<<money `-30`>>\
<<notify 3s>> Bought <</notify>>\
<</link>><</trade_link>>
<<else>>\
<span class="not_available">You don't have enough money for a lockpick.</span>
<</if>>\
<<if $money > 150>>\
<<trade_link>><<link "Buy a lockpick x5 - 150$">>\
<<pickup $p_inv "Lockpick" 5>>\
<<money `-150`>>\
<<notify 3s>> Bought <</notify>>\
<</link>><</trade_link>>
<<else>>\
<span class="not_available">You don't have enough money for a pack of lockpicks.</span>
<</if>>\
<</if>>\
<<if $burglar_quest >= 2>>\
<<if $money >= 900 && !$p_inv.has("Safe-cracking kit")>>\
<<trade_link>><<link "Buy a safe-cracking kit - 900$">>\
<<pickup $p_inv "Safe-cracking kit" 1>>\
<<money `-900`>>\
<<goto "Street Gangs">>\
<</link>><</trade_link>>
<<elseif $p_inv.has("Safe-cracking kit")>>\
<span class="not_available"> You already has a safe-cracking kit.</span>
<<elseif $money < 900>>\
<span class="not_available">"Buy a safe-cracking kit - 900$"</span>
<</if>>\
<<if $money >= 500>>\
<<trade_link>><<link "Buy a brass knuckles - 500$">>\
<<pickup $p_melee "Brass Knuckles" 1>>\
<<money `-500`>>\
<<goto "Street Gangs">>\
<</link>><</trade_link>>
<<else>>\
<span class="not_available">"Buy a brass knuckles - 500$"</span>
<</if>>\
<<if $money >= 850>>\
<<trade_link>><<link "Buy a butterfly knife - 850$">>\
<<pickup $p_melee "Butterfly Knife" 1>>\
<<money `-850`>>\
<<goto "Street Gangs">>\
<</link>><</trade_link>>
<<else>>\
<span class="not_available">"Buy a butterfly knife - 850$"</span>
<</if>>\
<</if>>\<<silently>>\
<<set _yapping = $distributor_yapping.random()>>
<<if $cartel_met == 3 && $harbor_gangbang == true && $distributor_standoff == false>>
<<goto "Distributor Standoff">>
<</if>>
<</silently>>\
<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/distributor.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $cartel_met === 0>>\
Surprisingly, you went through guards without a problem, seems like boss of this place meets new visitors constantly.
<br>\
<<linkappend "Inside the cabin">> you see a local crimelord - soigné black dude in his thirties with prescription glasses on, he's surrounded by lot of papers, laptop and, well, that's a new - a landline telephones.
<span class="distributor">- "I assume, you are a new hustler in the city?"</span>
You nodded.
<span class="distributor">- "Well, that was obvious, everyone of your kind are always wanna get to know all big players, and that's a wise move. I'm the Distributor, pleased to meet you. Welcome to the $city_name."</span>
<br>\
<<action_link>><<link "Introduce yourself" "The Distributor">>\
<<set $cartel_met = 1>>\
<</link>><</action_link>>\
<</linkappend>>\
<</if>>\
\
<<if $cartel_met === 1>>\
<<linkreplace "Ask about his services.">>\
<span class="distributor">- "You could get it yourself that i'm offering a distribution services."</span> - The Distributor sighs <span class="distributor">- "You get me a goods, preferably preppared for transportation, and i'll get you the money. Here, take this."</span> - he hands you a <<link "piece of paper." "The Distributor">><<pickup $p_inv "Strange Note#3" 1>><<set $strange_note_3 = true>><<set $cartel_met = 2>><</link>>.\
<</linkreplace>>\
<</if>>\
\
<<if $cartel_met === 2>>\
<span class="distributor">- "Also, my gang offers a services of an excellent chemist. 400$ for one cooking session, but you need to pay me upfront for the access to our lab and for starting our... trading relations. 2000$. I need to know that we're going to work with reliable person."</span>
<span id="distributor">So.</span>\
<<if $money >= 2000>>\
<<action_link>><<link "Pay him for lab access.">>\
<<money `-2000`>>\
<<set $cartel_met = 3>>\
<<run Engine.show()>>\
<<replace "#distributor_answer">><br><span class="distributor">- Glad doing business with you. Also, i have a special order for you.</span><</replace>>'\
<</link>><</action_link>>\
<<else>>\
<span class="not_available">Not enough money.</span>
<</if>>\
<<trade_link>><<link "Begin trading" "Distributor Trade">>
<</link>><</trade_link>>
<</if>>\
<<if $burglar_quest === 2 && $cartel_met === 2>>\
Tell him that <<action_link>><<link "gang's merchant sent you">><<set $cartel_met = 3>><<run Engine.show()>><<replace ".distributor">>Huh, a merchant, you say? Ok, we can work with you, i'll be glad to introduce our new ware to neighbours. Beware, if you lied to me... you know the drill. Our chemist will help you to prepp a batch, but product is on yours materials, that's how our lab leasing works.<</replace>><</link>><</action_link>> for a batch of aphrodisiac.
<</if>>\
/* EVERYTHING AFTER FIRST MEETING */\
\
<<if $cartel_met === 3>>\
In the quiet upper corner of the Cartel’s warehouse, the Distributor sits behind a sleek desk, surrounded by papers, some telephones and his laptop. The glass walls of his office give him a clear view of everything below, controlling the chaos without a word. The low murmur of the warehouse is replaced by the rustling of documents and the occasional scratch of his pen.
\
<<if $distributor_hackers == 0>>\
<span id="distributor_answer"><span class="distributor">- "I have a special order for you."</span></span>
<<else>>\
<span id="distributor_answer"><span class="distributor">- "_yapping"</span></span>
<</if>>\
\
<<if $distributor_hackers < 2>>\
<<distributor_hackers_quest>>\
<</if>>
<<trade_link>><<link "Begin trading" "Distributor Trade">>
<</link>><</trade_link>>
\
<<if $distributor_standoff == true && $distributor_lewd == false && $charm >= 10>>\
<<linkappend "Make a move on him.">>
<span class="distributor">- "Are you seducing me? Reeeally?"</span> - the Distributor lowered his head, peering at you over his glasses. Though his tone was laced with irony, a clear hint of genuine interest slipped into his voice.
<<charm_link>><<link "Yes." "Distributor First Quickie">>\
<<set $distributor_lewd = true>>\
<<set $distributor_daily_sex = true>>\
<<stam `-1`>>\
<</link>><</charm_link>>\
<</linkappend>>
<<elseif $distributor_standoff == true && $distributor_lewd == false && $charm < 13>>
<span class="not_available"> Sadly, your charms still aren’t working on him.</span>
<</if>>\
\
<<if $distributor_lewd == true && $distributor_daily_sex == false>>\
<<charm_link>><<link "Wink at him." "Distributor Quickie">><<stam `-1`>><<set $distributor_daily_sex = true>><</link>><</charm_link>>
<<elseif $distributor_daily_sex == true>>\
<span class="not_available">That's enough for today.</span>
<</if>>\
\
<<if $p_boss == true && $harbor_state == false>>\
<<action_link>><<link "Tell him to hand over control of the harbor district to you.">>
<<if $reputation >= 25000>>\
<<replace "#distributor_answer">><span class="distributor">- "Alright. We'll leave the most of the businesses to you and your $band_type. It means that ''local brothel is no longer under my protection''. However, this warehouse stays, and so do I - for obvious reasons. If you ever need assistance that requires my involvement, don't hesitate to reach out. After all, we're basically colleagues now."</span><</replace>>\
<<set $harbor_state = true>>\
<<else>>\
<<replace "#distributor_answer">><span class="distributor">- "To be honest, the Cartel isn't exactly deeply invested in controlling a small district in this city. It's more of a situational convenience - good for business, you know? If a major player were to show up, we'd have no issue handing over the harbor. But you're not that big of a deal... yet."</span><</replace>>\
<</if>>\
<</link>><</action_link>>
<</if>>\
<</if>>\
\
<<if $cartel_met > 0>>\
<<out_link>><<link "Get back to Cartel's warehouses" "Cartel Warehouses">>
<</link>><</out_link>>
<<out_link>><<link "Get back to the main street of Harbor" "Harbor">>
<<addmins 15>>
<</link>><</out_link>>
<</if>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/gym.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $do_it_anyway == true>>\
- "Oh, okay." The atmosphere shifted abruptly.
<</if>>\
You've felt a strong grip on your shoulder.
<<if $reputation >= 6000 && $do_it_anyway == false>>\
<span class="male_text">- "Oh, it's you... Sorry, I didn't mean to bother you. I'm not going to stand in your way. But please refrain from trying to rob me..."</span>
<<link "That's right." "Gym">>
<</link>> - your reputation speaks for itself!
<<link "Tell him to go ahead and do what he was planning to do with you... You're not gonna hold a grudge.">>\
<<set $do_it_anyway = true>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
<span class="male_text">- "So, you're selling steroids in our gym? Do the managers know about this?"</span> - someone boomed in your ear.
You've looked behind you and saw your typical jock. He looked you up and down and then gave you an arrogant grin. That look is patently excessive for someone who reeks of sweat... Nonetheless, it's you who breaks the rules in here, so, deserved?
<span class="male_text">- "Are we going to do it in a good way or a bad way?"</span>
He extended his open hand to you, clearly hinting at something. The latter "way" definitely means that he's gonna snitch you to authorities... Why is he even pestering you? Other gym-goers didn't complain too much. Probably, he's dealing with steroids too.
<br>\
<<link "Go see the manager with him." "Custody">>\
<<set $do_it_anyway = false>>\
<<addhours 1>>\
<</link>> That's gonna led you straight to the custody. \
<br>\
<<if $p_inv.has("Aphrodisiac")>>\
<<charm_link>><<link "Place an aphrodisiac pill in his palm" "Gym Quickie">>\
<<set $do_it_anyway = false>>\
<<drop $p_inv "Aphrodisiac" 1>>\
<<addmins 30>>\
<<sex_rep_check>>\
<<stam `-1`>>\
<<depravity `1`>>\
<</link>><</charm_link>> and wink seductively.\
<<else>>\
<span class="not_available"> He seems a quite pent up. You could offer him another way if you had an aphrodisiac on you...</span>\
<</if>>\
<<if $cun >= 10>>\
<br>\
<<link "Threaten him by saying that you see through him">>\
<<set $do_it_anyway = false>>\
<<addmins 15>>
<</link>> and you know that he's just trying to get rid of a competitor.\
<<else>>\
<span class="not_available"><br> You still not sure that you've seen through him... if only you were more cunning...</span>\
<</if>>\
<<if $p_inv.has("Handheld Taser")>>\
<br>\
<<link "Use a taser and run away." "Suburbs">>\
<<set $do_it_anyway = false>>\
<<drop $p_inv "Handheld Taser" 1>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> If only you had a taser... </span>\
<</if>>\
<<if $p_traits.includes("fitness_3")>>\
<br>\
<<link "Push him off and run away." "Suburbs">>
<<set $do_it_anyway = false>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> Sadly, you're not strong enough to just push him away. He's a jock afterall. </span>\
<</if>>\
<</if>>\<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/nightclub.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $do_it_anyway == true>>\
- "Oh, okay." The atmosphere shifted abruptly.
<</if>>\
You've felt a strong grip on your hand.
<<if $reputation >= 4000 && $do_it_anyway == false>>\
<span class="male_text">- "Oh, it's you... Sorry, I didn't mean to bother you. I'm not going to stand in your way. Refrain from trying to rob me, ok?..."</span>
<<link "That's right." "Nightclub">>
<</link>> - your reputation speaks for itself!
<<link "Tell him to go ahead and do what he was planning to do with you... You're not gonna hold a grudge.">>\
<<set $do_it_anyway = true>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
<<set _roll = random(0, 20)>>\
<<if _roll >= 10>>\
<span class="male_text">- "Do the bouncers know what you're selling here, hun?"</span> - someone whispered to you.
Its hard to fully examine someone in a such lighting. But dude looks like your default partygoer - colorful clothings, tousled hair, tipsy look and horny sight.
You can smell an aroma of aphrodisiac. Seems like you're not the only one who's selling an illegal things in here...
He roughly squeeze your ass and look with a smirk at you. It's not surprising that nobody reacts to such molesting attitude in a nightclub. And, sadly, seems like he has some pressure levers on you.
He tells you that he won't snitch on you if you agree to be a good girl and go into the WC with him.
<<action_link>><<link "No way." "Custody">>\
<<set $do_it_anyway = false>>\
<<addhours 1>>\
<</link>><</action_link>> It's better to surrender to the police than that.
<<charm_link>><<link "Proceed with him." "Nightclub Quickie">>
<<set $do_it_anyway = false>>\
<<addmins 30>>\
<<sex_rep_check>>\
<<stam `-1`>>\
<<depravity `1`>>\
<</link>><</charm_link>>
<<if $p_inv.count("Drugs") >= 15>>\
<<link "Give him a 15 free doses of drugs for his silence.">>\
<<set $do_it_anyway = false>>\
<<drop $p_inv "Drugs" 15>>\
<<addmins 10>>\
<<goto "Nightclub">>\
<</link>>
<<elseif $p_inv.count("Drugs") < 15>>\
<span class="not_available"><br> Maybe you could offer him drugs for his silence, if you had atleast 15pcs on you...</span>
<</if>>\
<<if $p_inv.has("Handheld Taser")>>\
<<action_link>><<link "Use a taser and run away." "Downtown">>\
<<set $do_it_anyway = false>>\
<<drop $p_inv "Handheld Taser" 1>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>><</action_link>>
<<else>>\
<span class="not_available"> If only you had a taser... </span>
<</if>>\
<<if $p_traits.includes("fitness_2")>>\
<<action_link>><<link "Push him off and run away." "Downtown">>
<<set $do_it_anyway = false>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>><</action_link>>
<<else>>\
<span class="not_available"> Sadly, you're not strong enough to just push him away. </span>\
<</if>>\
<<else>>\
<span class="male_text">- "Do the other bouncers know what you're selling here, girlie?"</span> - someone whispered to you.
Its hard to fully examine someone in a such lighting, but you can easily distinguish a bouncer's badge on a man who grabbed you.
He tells you that he's not gonna snitch you to the police if you're gonna pay him a 250$. That's a standart "payrate for being catched" in this club, as he says. If otherwise, you'll gonna get yourself into custody...
He's not snitching but anyway threatens you with an arrest? And he's gonna try to catch you again? What kinds of logic is that?
<<action_link>><<link "Pay 250$." "Nightclub">>
<<set $do_it_anyway = false>>\
<<money `-250`>>\
<<addmins 15>>
<</link>><</action_link>>
<<action_link>><<link "Refuse the deal." "Custody">>
<<set $do_it_anyway = false>>\
<<addhours 1>>\
<</link>><</action_link>>
<</if>>\
<</if>>\<<silently>>\
<<if $p_traits.includes("strip_3")>>
<<set _skill_bonus = 4>>
<<elseif $p_traits.includes("strip_2")>>
<<set _skill_bonus = 3>>
<<elseif $p_traits.includes("strip_1")>>
<<set _skill_bonus = 2>>
<<elseif $p_traits.includes("strip_0")>>
<<set _skill_bonus = 1>>
<<else>>
<<set _skill_bonus = 0>>
<</if>>
<<set _media_bj = $striptease_blow.random()>>\
<<set _media_dancing = $striptease_private.random()>>
<<set _random = random(3, 6)>>
<<set _earnings = ($charm * _random * _skill_bonus) >>
<</silently>>\
<style>
body.suburbs::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/suburbs/privateroom.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center><span id="stripclub">You've sold $random_amount pieces of aphrodisiac and got $got_money​$.
One of the buyers abused the fact that you're working here and tries to hire you for a private dancing session. Well, to be honest, the one who was abusing the opportunities by working here is you, it's quite doubtful that you allowed to sell aphrodisiac to clients... He putted _earnings​$ into your bra and looked at you.
<<link "Decline his offer">>
<<set _roll_risk = random(0, 10)>>\
<<if _roll_risk > 3>>\
<<replace "#stripclub">> It's your lucky day, nobody has reported you. <<link "Proceed" "Striptease Club">><</link>><br>\<</replace>>\
<<else>>\
<<goto "Striptease Penalty">>\
<</if>>\
<</link>> and risk being reported.
<<linkreplace "Take client's hand and proceed to private cabin.">>
<<addmins 30>>\
<<money `_earnings`>>\
<<set_blowjob_desc>>\
<video @src="_media_dancing" autoplay loop muted controls width="600" height="350"></video>
You've started dancing on the pole. He might be bought your time for a more intimate pastime, but he won't be visiting striptease club only for sex. Everything has its own time.
The private cabin exuded raw, erotic energy. No wonders your client is really turned on, everything in this place was designed to arouse people - dim, seductive lighting, rhythmic music, chromed gleaming poles, your clothes and, of course, you personally. Would you that easily accept the offer to fuck for cash in other place? Probably, you could indubitably answer that in different situation, but, right now, even you turned on by this atmosphere. And apparent bulge that you can see on your client pants isn't helping either with straight thinking.
He took his dick out and began to jerk off. Ok, he's obviously in a perfect condition for the next action. You've slowly finished your last move and then stepped out from the small podium. He's obviously not handling his own arousal, mix of aphrodisiac and your own presence does a great job. You should help him. <<linkappend "And then got yourself on the knees.">>
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
_blowjob_desc
<<linkappend "He carelully putted you into desired position and prepare himself for penetration.">>\
<br>\
<<roll_penetration>>\
<<if _penetration == "anal">>\
<<set _media_sex = $striptease_anal.random()>>\
<<anal_whore_progress>>\
<<else>>\
<<set _media_sex = $striptease_vag.random()>>\
<</if>>\
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<<set_event_desc>>\
_event_desc
<<linkappend "It wasnt really long before you heard a grunts of incoming orgasm from the client.">>\
<<finisher>>
You sit together with him for a while and then you decided to <<link "clean yourself up and go back to the hall" "Striptease Club">><</link>>. Your client smiled at you at told that he's gonna relax in private room for little more.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
<</linkreplace>>\
\
</span>\
</center><<silently>>\
<<set _cargo_amount = $warehouse_inv.length>>
<<count_warehouse_tax>>
<<count_lab_production_speed>>
<</silently>>\
<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/playerwarehouse.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<button "Check your cargo">>\
<<if $warehouse_cargo_window == false>>\
<<set $warehouse_cargo_window = true>>
<<replace ".cargo">><br>Cargo, _cargo_amount / $p_warehouse_size: <br> <<inv $warehouse_inv use drop inspect all>><</replace>>
<<else>>\
<<set $warehouse_cargo_window = false>>
<<replace ".cargo">><</replace>>\
<</if>>\
<</button>>\
\
<<button "Check your inventory">>\
<<if $warehouse_inv_window == false>>\
<<set $warehouse_inv_window = true>>
<<replace ".inventory">><br>Inventory: <br> <<inv $p_inv use drop inspect all>><</replace>>
<<else>>\
<<set $warehouse_inv_window = false>>
<<replace ".inventory">><</replace>>
<</if>>\
<</button>>\
\
<<if $p_warehouse >= 2>>\
<<button "Upgrades">>\
<<if $warehouse_upgrades_window == false>>\
<<set $warehouse_upgrades_window = true>>
<<replace ".upgrades">><br>You are paying _warehouse_tax​$ as a property tax everyday right now. <br><<include "Warehouse Upgrades">><</replace>>
<<else>>\
<<set $warehouse_upgrades_window = false>>
<<replace ".upgrades">><</replace>>
<</if>>\
<</button>>\
<</if>>\
\
<<button "Shipments menu">>\
<<if $warehouse_shipment_window == false>>\
<<set $warehouse_shipment_window = true>>
<<replace ".shipments">><br><<include "Shipments Creation">><br><</replace>>
<<else>>\
<<set $warehouse_shipment_window = false>>
<<replace ".shipments">><</replace>>
<</if>>\
<</button>>\
\
<<button "Supply">>\
<<if $warehouse_supply_window == false>>\
<<set $warehouse_supply_window = true>>
<<replace ".supply">><br><<warehouse_supply>><</replace>>
<<else>>\
<<set $warehouse_supply_window = false>>
<<replace ".supply">><</replace>>
<</if>>\
<</button>>\
\
<<if $warehouse_cargo_window == true>>\
<span class="cargo"><br> Cargo, _cargo_amount / $p_warehouse_size: <br> <<inv $warehouse_inv use drop inspect all>></span>\
<<else>>\
<span class="cargo"></span>\
<</if>>\
\
<<if $warehouse_inv_window == true>>\
<span class="inventory"><br>Inventory: <br> <<inv $p_inv use drop inspect all>></span>\
<<else>>\
<span class="inventory"></span>\
<</if>>\
\
<<if $warehouse_upgrades_window == true>>\
<span class="upgrades"><br>You are paying _warehouse_tax​$ as a property tax everyday right now. <br><<include "Warehouse Upgrades">></span>\
<<else>>\
<span class="upgrades"></span>\
<</if>>\
\
<<if $warehouse_shipment_window == true>>\
<span class="shipments"><br><<include "Shipments Creation">><br></span>\
<<else>>\
<span class="shipments"></span>\
<</if>>\
\
<<if $warehouse_supply_window == true>>\
<span class="supply"><br><<warehouse_supply>></span>\
<<else>>\
<span class="supply"></span>\
<</if>>\
\
/* Warehouse upgrades and sells */
\
<<if $p_warehouse < 2 && $warehouse_inv.length == 0>>\
<<link "Stop renting the warehouse." "Warehouses">>\
<<set $p_warehouse = 0>>\
<<set $p_warehouse_size = 0>>\
<<set $warehouse_rent = 0>>\
<</link>>
<<elseif $p_warehouse < 2>>\
<span class="not_available"> You must clear the premises from your cargo and re-enter into warehouse if you wanna stop renting this property.</span>
<</if>>\
/* Warehouse buy */\
<<if $p_warehouse < 2>>\
You can buy this warehouse for 5000$. It'll allow you to expand the premises.
<</if>>\
\
<<if $p_warehouse < 2 && $money >= 5000>>\
<<link "Buy a rented warehouse - 5000$." "Player Warehouse">>\
<<set $p_warehouse = 2>>\
<<run $band_events.push("warehouse_raid")>>\
<<set $warehouse_rent = 30>>\
<<money `-5000`>>\
<</link>>\
<<elseif $p_warehouse < 2 && $money < 5000>>\
<span class="not_available"> Not enough money for this tho.</span>\
<</if>>\
<<out_link>><<link "Leave warehouse" "Warehouses">>
<</link>><</out_link>>
<<out_link>><<link "Get back to the main street of Harbor" "Harbor">>
<<addmins 15>>\
<</link>><</out_link>><nobr>\
<div class="upgrade_menu">\
<div class="upgrade">Upgrade</div>\
<div class="requirements">Requirements</div>\
<div class="description">Description</div>\
<div class="extension_1"><<extension_1>></div>\
<div class="requirement_1">5000$</div>\
<div class="desc_1">Additional premises in your warehouse for 15 more cargo space. +50$/day.</div>\
<div class="auxiliary_1"><<auxiliary_1>></div>\
<div class="requirement_2">1000$</div>\
<div class="desc_2">Speed up your shipment preparation by 30 minutes. +80$/day.</div>\
<div class="carports_1"><<carports_1>></div>\
<div class="requirement_3">4000$; garage at home</div>\
<div class="desc_3">Build an additional space for 10 more cars. 50$/day.</div>\
<div class="extension_2"><<extension_2>></div>\
<div class="requirement_4">Extension 1, 15000$</div>\
<div class="desc_4">Order a better storage equipment for 30 more cargo space. 100$/day.</div>\
<div class="auxiliary_2"><<auxiliary_2>></div>\
<div class="requirement_5">10000$;auxiliary workers</div>\
<div class="desc_5">Forklifts and belts that will speed up your cargo preparation for 30 mins.</div>\
<div class="tax_reducer"><<tax_reducer>></div>\
<div class="requirement_6">500$, friendly taxman, ext 1</div>\
<div class="desc_6">Some tax reduction plans with your friend. -50% for taxes.</div>\
<div class="extension_3"><<extension_3>></div>\
<div class="requirement_7">20000$, extension 2</div>\
<div class="desc_7"> 75 more space. 150$/day.</div>\
<div class="carports_2"><<carports_2>></div>\
<div class="requirement_8">10000$, carports</div>\
<div class="desc_8">Even more carports for 30 more cars. 70$/day.</div>\
<div class="auxiliary_3"><<auxiliary_3>></div>\
<div class="requirement_9">20000$, cargo equipment</div>\
<div class="desc_9">This monstrosity will allow you to instantly package everything. 50$/day.</div>\
</div>\
<<if $p_warehouse == 2 && !$warehouse_upgrades.includes("extension_1") && !$warehouse_upgrades.includes("carports_1") && !$warehouse_upgrades.includes("auxiliary_1")>>\
<<link "Sell this warehouse - 4000$." "Warehouses">>
<<set $p_warehouse = 0>>\
<<set $p_warehouse_size = 0>>\
<<set $warehouse_rent = 0>>\
<<run $band_events.delete("warehouse_raid")>>\
<<money `4000`>>\
<</link>>
<<else>>\
<span class="not_available"> You must deconstruct all expansions if you want to sell this property. </span>
<</if>>\
</nobr>\
<<extension_1_sell>>\
<<extension_2_sell>>\
<<extension_3_sell>>\
<<auxiliary_1_sell>>\
<<auxiliary_2_sell>>\
<<auxiliary_3_sell>>\
<<carports_1_sell>>\
<<carports_2_sell>>\<<widget "extension_1">>\
<<if $money >= 5000 && !$warehouse_upgrades.includes("extension_1")>>\
<<link "Extension 1">>
<<money `-5000`>>\
<<run $warehouse_upgrades.push("extension_1")>>\
<<set $p_warehouse_size += 15>>\
<<set $warehouse_rent += 50>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
Extension 1
<</if>>\
<</widget>>\
<<widget "extension_1_sell">>\
<<if $warehouse_upgrades.includes("extension_1") && !$warehouse_upgrades.includes("extension_2")>>\
<br>\
<<link "Sell Extension 1 for 3000$.">>\
<<money `3000`>>\
<<run $warehouse_upgrades.delete("extension_1")>>\
<<set $p_warehouse_size -= 15>>\
<<set $warehouse_rent -= 50>>\
<<run Engine.show()>>\
<</link>>\
<</if>>\
<</widget>>\
<<widget "extension_2">>\
<<if $money >= 15000 && !$warehouse_upgrades.includes("extension_2") && $warehouse_upgrades.includes("extension_1")>>\
<<link "Extension 2">>
<<money `-15000`>>\
<<run $warehouse_upgrades.push("extension_2")>>\
<<set $p_warehouse_size += 30>>\
<<set $warehouse_rent += 100>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
Extension 2
<</if>>\
<</widget>>\
<<widget "extension_2_sell">>\
<<if $warehouse_upgrades.includes("extension_2") && !$warehouse_upgrades.includes("extension_3")>>\
<br>\
<<link "Sell Extension 2 for 11000$.">>\
<<money `11000`>>\
<<run $warehouse_upgrades.delete("extension_2")>>\
<<set $p_warehouse_size -= 30>>\
<<set $warehouse_rent -= 100>>\
<<run Engine.show()>>\
<</link>>\
<</if>>\
<</widget>>\
<<widget "extension_3">>\
<<if $money >= 20000 && !$warehouse_upgrades.includes("extension_3") && $warehouse_upgrades.includes("extension_2")>>\
<<link "Extension 3">>
<<money `-20000`>>\
<<run $warehouse_upgrades.push("extension_3")>>\
<<set $p_warehouse_size += 75>>\
<<set $warehouse_rent += 150>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
Extension 3
<</if>>\
<</widget>>\
<<widget "extension_3_sell">>\
<<if $warehouse_upgrades.includes("extension_3")>>\
<br>\
<<link "Sell Extension 3 for 15000$.">>\
<<money `15000`>>\
<<run $warehouse_upgrades.delete("extension_3")>>\
<<set $p_warehouse_size -= 75>>\
<<set $warehouse_rent -= 150>>\
<<run Engine.show()>>\
<</link>>\
<</if>>\
<</widget>>\
<<widget "carports_1">>\
<<if $money >= 4000 && $garage > 0 && !$warehouse_upgrades.includes("carports_1")>>\
<<link "Carports">>
<<money `-4000`>>\
<<run $warehouse_upgrades.push("carports_1")>>\
<<set $garage_size += 10>>\
<<set $warehouse_rent += 50>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
Carports
<</if>>\
<</widget>>\
<<widget "carports_1_sell">>\
<<if $warehouse_upgrades.includes("carports_1") && !$warehouse_upgrades.includes("carports_2")>>\
<br>\
<<link "Sell carports for 2500$.">>\
<<money `2500`>>\
<<run $warehouse_upgrades.delete("carports_1")>>\
<<set $garage_size -= 10>>\
<<set $warehouse_rent -= 50>>\
<<run Engine.show()>>\
<</link>>\
<</if>>\
<</widget>>\
<<widget "carports_2">>\
<<if $money >= 10000 && $warehouse_upgrades.includes("carports_1") && !$warehouse_upgrades.includes("carports_2")>>\
<<link "More carports">>
<<money `-10000`>>\
<<run $warehouse_upgrades.push("carports_2")>>\
<<set $garage_size += 30>>\
<<set $warehouse_rent += 70>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
Carports
<</if>>\
<</widget>>\
<<widget "carports_2_sell">>\
<<if $warehouse_upgrades.includes("carports_2")>>\
<br>\
<<link "Sell carports for 7000$.">>\
<<money `7000`>>\
<<run $warehouse_upgrades.delete("carports_2")>>\
<<set $garage_size -= 30>>\
<<set $warehouse_rent -= 70>>\
<<run Engine.show()>>\
<</link>>\
<</if>>\
<</widget>>\
<<widget "auxiliary_1">>\
<<if $money >= 1000 && !$warehouse_upgrades.includes("auxiliary_1")>>\
<<link "Auxiliary workers">>
<<money `-1000`>>\
<<run $warehouse_upgrades.push("auxiliary_1")>>\
<<set $warehouse_rent += 80>>\
<<set $packing_speed -= 30>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
Auxiliary workers
<</if>>\
<</widget>>\
<<widget "auxiliary_1_sell">>\
<<if $warehouse_upgrades.includes("auxiliary_1") && !$warehouse_upgrades.includes("auxiliary_2")>>\
<br>\
<<link "Fire all your workers.">>\
<<run $warehouse_upgrades.delete("auxiliary_1")>>\
<<set $warehouse_rent -= 80>>\
<<set $packing_speed += 30>>\
<<run Engine.show()>>\
<</link>>\
<</if>>\
<</widget>>\
<<widget "auxiliary_2">>\
<<if $money >= 10000 && !$warehouse_upgrades.includes("auxiliary_2") && $warehouse_upgrades.includes("auxiliary_1")>>\
<<link "Cargo equipment">>
<<money `-10000`>>\
<<run $warehouse_upgrades.push("auxiliary_2")>>\
<<set $packing_speed -= 30>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
Auxiliary workers
<</if>>\
<</widget>>\
<<widget "auxiliary_2_sell">>\
<<if $warehouse_upgrades.includes("auxiliary_2") && !$warehouse_upgrades.includes("auxiliary_3")>>\
<br>\
<<link "Sell your cargo equipment for 7000$.">>\
<<money `7000`>>\
<<run $warehouse_upgrades.delete("auxiliary_2")>>\
<<set $packing_speed += 30>>\
<<run Engine.show()>>\
<</link>>\
<</if>>\
<</widget>>\
<<widget "auxiliary_3">>\
<<if $money >= 20000 && !$warehouse_upgrades.includes("auxiliary_3") && $warehouse_upgrades.includes("auxiliary_2")>>\
<<link "Packaging conveyor">>
<<money `-20000`>>\
<<$warehouse_rent += 50>>\
<<run $warehouse_upgrades.push("auxiliary_3")>>\
<<set $packing_speed -= 60>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
Packaging conveyor
<</if>>\
<</widget>>\
<<widget "auxiliary_3_sell">>\
<<if $warehouse_upgrades.includes("auxiliary_3")>>\
<br>\
<<link "Sell your packaging conveyor for 16000$.">>\
<<money `16000`>>\
<<$warehouse_rent -= 50>>\
<<run $warehouse_upgrades.delete("auxiliary_3")>>\
<<set $packing_speed += 60>>\
<<run Engine.show()>>\
<</link>>\
<</if>>\
<</widget>>\
<<widget "tax_reducer">>\
<<if $money >= 500 && $taxmen_friend == true && $warehouse_upgrades.includes("extension_1") && $warehouse_tax_upgrade == false>>\
<<link "Work with taxes">>
<<money `-500`>>\
<<set $warehouse_tax_upgrade = true>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
Work with taxes
<</if>>\
<</widget>>\
<<widget "count_warehouse_tax">>\
<<silently>>
<<if $warehouse_tax_upgrade == true>>
<<set _warehouse_tax = ($warehouse_rent / 100) * 50>>
<<set _warehouse_tax = Math.trunc(_warehouse_tax)>>
<<else>>
<<set _warehouse_tax = $warehouse_rent>>
<</if>>
<</silently>>\
<</widget>>\
<<widget "warehouse_supply">>\
<<silently>>
<<set _brothel_aphrodisiac = $brothel_capacity_aphrodisiac / 5000>>
<<set _drinks_meter = $nc_capacity_drinks / 10000>>
<<set _drugs_meter = $nc_capacity_drugs / 10000>>
<</silently>>\
<<if $brothel_aphrodisiac_upgrade == false && $night_club == false>>\
<span class="not_available"> You don't own anything you could supply yet.</span>
<<else>>\
<<if $brothel_aphrodisiac_upgrade == true>>\
Aphrodisiac in Brothel:
<<showmeter "brothel_aphrodisiac_cap" _brothel_aphrodisiac>>\
One shipment of aphrodisiac is equal to 200pcs.
<<if $warehouse_inv.has("Aphrodisiac Shipment")>>\
<<link "Fill in 1 shipment from your warehouse.">>
<<drop $warehouse_inv "Aphrodisiac Shipment" 1>>\
<<run Engine.show()>>\
<<brothel_capacity_aphrodisiac `200`>>\
<</link>>
<<else>>\
<span class="not_available"> Fill in 1 shipment from your warehouse.</span>
<</if>>\
<</if>>\
<<if $night_club == true>>\
Night club:
Drinks capacity: <<showmeter "nc_drinks_cap" _drinks_meter>>\
<<if $warehouse_inv.has("Moonshine Shipment")>>\
<<link "Use 1 moonshine shipment to add 250l to drinks capacity.">>\
<<drop $warehouse_inv "Moonshine Shipment" 1>>\
<<run Engine.show()>>\
<<nc_capacity_drinks `250`>>\
<</link>>
<<else>>\
<span class="not_available"> You could add some moonshine from your own stocks. 1 shipment is 250l of capacity.</span>
<</if>>\
<<if $nc_backrooms_deals == true>>\
Drugs capacity: <<showmeter "nc_drugs_cap" _drugs_meter>>\
<<if $warehouse_inv.has("Drugs Shipment")>>\
<<link "Use 1 drugs shipment to add 150pcs to drugs capacity.">>
<<drop $warehouse_inv "Drugs Shipment" 1>>\
<<nc_capacity_drugs `150`>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
<span class="not_available"> You could add some drugs from your own stocks. 1 shipment is 150pcs of capacity.</span>\
<</if>>\
<</if>>\
<</if>>\
<</if>>\
<</widget>>\<<newinv $drugs_shipment>>
<<pickup $drugs_shipment "Drugs" 100>>
<<newinv $steroids_shipment>>
<<pickup $steroids_shipment "Steroids" 100>>
<<newinv $aphrodisiac_shipment>>
<<pickup $aphrodisiac_shipment "Aphrodisiac" 100>>
<<newinv $stolen_goods_shipment>>
<<pickup $stolen_goods_shipment "Old phone" 5 "Smartphone" 5 "Golden Ring" 1 "Silver Ring" 1 "Golden Chain" 1>>
<<newinv $jewelry_shipment>>
<<pickup $jewelry_shipment "Golden Chain" 5 "Golden Ring" 10 "Silver Ring" 10>>
<<newinv $electronic_shipment>>
<<pickup $electronic_shipment "Electrical Components" 15>>
<<newinv $moonshine_shipment>>
<<pickup $moonshine_shipment "Moonshine" 25>>
<<newinv $weapons_shipment>>
<<pickup $weapons_shipment "Block 19" 5 "Saga-12" 3 "I16" 2>>
<<newinv $melee_shipment>>
<<pickup $melee_shipment "Stanley Knife" 5 "Brass Knuckles" 5 "Baseball Bat" 2 "Spiked Knuckles" 2>>
<<widget "drugs_shipment">>\
<<if $p_inv.compare($drugs_shipment) && $warehouse_inv.length < $p_warehouse_size>>\
<<link "Create a drugs shipment.">>\
<<drop $p_inv "Drugs" 100>>\
<<pickup $warehouse_inv "Drugs Shipment" 1>>\
<<addmins $packing_speed>>\
<<run Engine.show()>>\
<</link>>\
<<elseif $warehouse_inv.length == $p_warehouse_size || $warehouse_inv.length > $p_warehouse_size>>\
<span class="not_available">You should free some space!</span>\
<<elseif !$p_inv.compare($drugs_shipment)>>\
<span class="not_available">You don't have enough items.</span>\
<</if>>\
<</widget>>\
<<widget "steroids_shipment">>\
<<if $p_inv.compare($steroids_shipment) && $warehouse_inv.length < $p_warehouse_size>>\
<<link "Create a steroids shipment.">>\
<<drop $p_inv "Steroids" 100>>\
<<pickup $warehouse_inv "Steroids Shipment" 1>>\
<<addmins $packing_speed>>\
<<run Engine.show()>>\
<</link>>\
<<elseif $warehouse_inv.length == $p_warehouse_size || $warehouse_inv.length > $p_warehouse_size>>\
<span class="not_available">You should free some space!</span>\
<<elseif !$p_inv.compare($steroids_shipment)>>\
<span class="not_available">You don't have enough items.</span>\
<</if>>\
<</widget>>\
<<widget "aphrodisiac_shipment">>\
<<if $p_inv.compare($aphrodisiac_shipment) && $warehouse_inv.length < $p_warehouse_size>>\
<<link "Create an aphrodisiac shipment.">>\
<<drop $p_inv "Aphrodisiac" 100>>\
<<pickup $warehouse_inv "Aphrodisiac Shipment" 1>>\
<<addmins $packing_speed>>\
<<run Engine.show()>>\
<</link>>\
<<elseif $warehouse_inv.length == $p_warehouse_size || $warehouse_inv.length > $p_warehouse_size>>\
<span class="not_available">You should free some space!</span>\
<<elseif !$p_inv.compare($aphrodisiac_shipment)>>\
<span class="not_available">You don't have enough items.</span>\
<</if>>\
<</widget>>\
<<widget "stolen_goods_shipment">>\
<<if $p_inv.compare($stolen_goods_shipment) && $warehouse_inv.length < $p_warehouse_size>>\
<<link "Create a stolen goods shipment.">>\
<<drop $p_inv "Old phone" 5 "Smartphone" 5 "Golden Ring" 5 "Silver Ring" 5 "Golden Chain" 2>>\
<<pickup $warehouse_inv "Stolen Goods Shipment" 1>>\
<<addmins $packing_speed>>\
<<run Engine.show()>>\
<</link>>\
<<elseif $warehouse_inv.length == $p_warehouse_size || $warehouse_inv.length > $p_warehouse_size>>\
<span class="not_available">You should free some space!</span>\
<<elseif !$p_inv.compare($stolen_goods_shipment)>>\
<span class="not_available">You don't have enough items.</span>\
<</if>>\
<</widget>>\
<<widget "electronic_shipment">>\
<<if $p_inv.compare($electronic_shipment) && $warehouse_inv.length < $p_warehouse_size>>\
<<link "Create an electronic shipment.">>\
<<drop $p_inv "Electrical Components" 15>>\
<<pickup $warehouse_inv "Electronic Shipment" 1>>\
<<addmins $packing_speed>>\
<<run Engine.show()>>\
<</link>>\
<<elseif $warehouse_inv.length == $p_warehouse_size || $warehouse_inv.length > $p_warehouse_size>>\
<span class="not_available">You should free some space!</span>\
<<elseif !$p_inv.compare($electronic_shipment)>>\
<span class="not_available">You don't have enough items.</span>\
<</if>>\
<</widget>>\
<<widget "moonshine_shipment">>\
<<if $p_inv.compare($moonshine_shipment) && $warehouse_inv.length < $p_warehouse_size>>\
<<link "Create a moonshine shipment.">>\
<<drop $p_inv "Moonshine" 50>>\
<<pickup $warehouse_inv "Moonshine Shipment" 1>>\
<<addmins $packing_speed>>\
<<run Engine.show()>>\
<</link>>\
<<elseif $warehouse_inv.length == $p_warehouse_size || $warehouse_inv.length > $p_warehouse_size>>\
<span class="not_available">You should free some space!</span>\
<<elseif !$p_inv.compare($moonshine_shipment)>>\
<span class="not_available">You don't have enough items.</span>\
<</if>>\
<</widget>>\
<<widget "weapons_shipment">>\
<<if $p_range.compare($weapons_shipment) && $warehouse_inv.length < $p_warehouse_size>>\
<<link "Create a weapons shipment.">>\
<<drop $p_range "Block 19" 5 "Saga-12" 3 "I16" 2>>\
<<pickup $warehouse_inv "Weapons Shipment" 1>>\
<<addmins $packing_speed>>\
<<run Engine.show()>>\
<</link>>\
<<elseif $warehouse_inv.length == $p_warehouse_size || $warehouse_inv.length > $p_warehouse_size>>\
<span class="not_available">You should free some space!</span>\
<<elseif !$p_range.compare($weapons_shipment)>>\
<span class="not_available">You don't have enough items.</span>\
<</if>>\
<</widget>>\
<<widget "melee_shipment">>\
<<if $p_melee.compare($melee_shipment) && $warehouse_inv.length < $p_warehouse_size>>\
<<link "Create a concealed melee weapons shipment.">>\
<<drop $p_melee "Stanley Knife" 5 "Brass Knuckles" 5 "Baseball Bat" 2 "Spiked Knuckles" 2>>\
<<pickup $warehouse_inv "Concealed Melee Shipment" 1>>\
<<addmins $packing_speed>>\
<<run Engine.show()>>\
<</link>>\
<<elseif $warehouse_inv.length == $p_warehouse_size || $warehouse_inv.length > $p_warehouse_size>>\
<span class="not_available">You should free some space!</span>\
<<elseif !$p_melee.compare($melee_shipment)>>\
<span class="not_available">You don't have enough items.</span>\
<</if>>\
<</widget>>\
<<widget "jewelry_shipment">>\
<<if $p_inv.compare($jewelry_shipment) && $warehouse_inv.length < $p_warehouse_size>>\
<<link "Create a jewelry shipment.">>\
<<drop $p_inv "Golden Chain" 5 "Golden Ring" 10 "Silver Ring" 10>>\
<<pickup $warehouse_inv "Jewelry Shipment" 1>>\
<<addmins $packing_speed>>\
<<run Engine.show()>>\
<</link>>\
<<elseif $warehouse_inv.length == $p_warehouse_size || $warehouse_inv.length > $p_warehouse_size>>\
<span class="not_available">You should free some space!</span>\
<<elseif !$p_inv.compare($jewelry_shipment)>>\
<span class="not_available">You don't have enough items.</span>\
<</if>>\
<</widget>>\<<silently>>\
<<set _drugs = $p_inv.count("Drugs")>>
<<set _steroids = $p_inv.count("Steroids")>>
<<set _aphrodisiac = $p_inv.count("Aphrodisiac")>>
<<set _phones = $p_inv.count("Old phone")>>
<<set _smartphones = $p_inv.count("Smartphone")>>
<<set _golden_chains = $p_inv.count("Golden Chain")>>
<<set _golden_rings = $p_inv.count("Golden Ring")>>
<<set _silver_rings = $p_inv.count("Silver Ring")>>
<<set _electronics = $p_inv.count("Electrical Components")>>
<<set _moonshine = $p_inv.count("Moonshine")>>
<<set _stanley_knives = $p_melee.count("Stanley Knife")>>
<<set _brass_knuckles = $p_melee.count("Brass Knuckles")>>
<<set _baseball_bats = $p_melee.count("Baseball Bat")>>
<<set _spiked_knuckles = $p_melee.count("Spiked Knuckles")>>
<<set _blocks = $p_range.count("Block 19")>>
<<set _sagas = $p_range.count("Saga-12")>>
<<set _l16s = $p_range.count("I16")>>
<</silently>>\
Drugs shipment - requires atleast 100 pcs of various drugs, median price is 3000$. ''Drugs on you'': _drugs.
<<drugs_shipment>>
Steroids shipment - requires atleast 100 pcs of steroids, median price is 4000$. ''Steroids on you'': _steroids.
<<steroids_shipment>>
Aphrodisiac shipment - requires atleast 100 pcs of a new aphrodisiac, median price is 3500$. ''Aphrodisiac on you'': _aphrodisiac.
<<aphrodisiac_shipment>>
Stolen goods shipment - requires 5 phones, 5 smartphone, 1 golden chain, 1 golden ring and 1 silver ring to sweeten the deal. Median price is 4000$. ''Items on you'': _phones phones, _smartphones smartphones, _golden_chains golden chains, _golden_rings golden rings, _silver_rings silver rings.
<<stolen_goods_shipment>>
Electrical shipment - requires 15 electrical components. Median price is 5000$. ''Electrical components on you'': _electronics.
<<electronic_shipment>>
Moonshine shipment - just pack 25 moonshine bottles in a crate and voila. Median price is 4500$. ''Moonshine bottles on you'': _moonshine.
<<moonshine_shipment>>
Weapons shipment - 5 Blocks 19, 3 Saga-12 and 2 I16 and you'll have yourself an equipment kit for a whole squad! Median price is 40000$. ''Weapons on you'': _blocks handguns, _sagas shotguns and _l16s rifles.
<<weapons_shipment>>
Concealed melee shipment - 5 stanley knifes, 5 brass knuckles, 2 baseball bats and 2 spiked knuckles. The cargo itself is not concealed, tho. Anyone would understand the purpose of such wares. Median price is 4200$. ''Weapons on you'': _stanley_knives knives, _brass_knuckles brass knuckles, _spiked_knuckles spiked knuckles and _baseball_bats baseball bats.
<<melee_shipment>>
Jewelry shipment - 5 golden chains, 10 golden rings and 10 silver rings - a little treasure chest waiting to be cashed in. Median price is 16000$. ''Items on you'': _golden_chains golden chains, _golden_rings golden rings and _silver_rings silver rings.
<<jewelry_shipment>><style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/warehouse.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Everything you'll load into Distributor's warehouse will be left hanging there till you transfer it again or trade in.
<<give $warehouse_inv $distributor use drop inspect all>>
The Distributor:
<<give $distributor $warehouse_inv inspect all>>
<<button "Calculate price.">>\
<<set _price = 0>>\
<<set _rep = 0>>\
<<set _amount = $distributor.array.count("Drugs Shipment")>>\
<<set _price += _amount * 2400>>\
<<set _rep += _amount * 150>>\
<<set _amount = $distributor.array.count("Steroids Shipment")>>\
<<set _price += _amount * 3200>>\
<<set _rep += _amount * 180>>\
<<set _amount = $distributor.array.count("Aphrodisiac Shipment")>>\
<<set _price += _amount * 2800>>\
<<set _rep += _amount * 165>>\
<<set _amount = $distributor.array.count("Stolen Goods Shipment")>>\
<<set _price += _amount * 2800>>\
<<set _rep += _amount * 150>>\
<<set _amount = $distributor.array.count("Electronic Shipment")>>\
<<set _price += _amount * 4000>>\
<<set _rep += _amount * 200>>\
<<set _amount = $distributor.array.count("Moonshine Shipment")>>\
<<set _price += _amount * 1600>>\
<<set _rep += _amount * 130>>\
<<set _amount = $distributor.array.count("Weapons Shipment")>>\
<<set _price += _amount * 25000>>\
<<set _rep += _amount * 400>>\
<<set _amount = $distributor.array.count("Concealed Melee Shipment")>>\
<<set _price += _amount * 3700>>\
<<set _rep += _amount * 200>>\
<<set _amount = $distributor.array.count("Jewelry Shipment")>>\
<<set _price += _amount * 10000>>\
<<set _rep += _amount * 300>>\
<<script>>
Dialog.setup("Deal");
Dialog.wiki(Story.get("Distributor Trade Window").processText());
Dialog.open();
<</script>>
<</button>>
<br>\
<<link "Stop trading" "The Distributor">>
<</link>>\Distributor offers you a _price​$. Do you accept?
<<link "Deal.">>
<<dirty_money _price>>\
<<set $reputation += _rep>>\
<<dropall $distributor>>\
<<addmins 30>>\
<<script>>
Dialog.close();
<</script>>
<<goto "The Distributor">>\
<</link>>\
<<link "Nah.">>\
<<script>>
Dialog.close();
<</script>>
<</link>>\<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/darkalley.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
A backstreet where the city's outcasts gather - junkies, dealers, and those looking for quick cash or quick trouble. The further you go, the less the streetlights seem to care. Its a good place for opportunists like you.
<<if $gameDate.getHours() >= 10 || $gameDate.getHours() <= 22 && $stam >= 1>>\
<<cun_link>><<link "Try to pickpocket someone." "Dark Alleys Stealing">>\
<<stam `-1`>>\
<<addmins 30>>\
<<set $reputation += 25>>\
<</link>><</cun_link>>\
<br>\
<<else>>\
<span id=not_available> It's too late and there aren't many people around at night.</span>\
<br>\
<</if>>\
<<action_link>><<link "Approach a random dealer." "Dark Alleys Dealer">>\
<<addmins 15>>\
<</link>><</action_link>>
<<if $sluts_list.length > 0>>\
You can set your sluts to work in here. Just call them.
<<else>>\
<span class="not_available"> You don't have any free sluts in order to pimp for them in here.</span>
<</if>>\
<<action_link>><<link "Look for troubles." "Dark Alleys Troubles">>
<<addhours 1>>\
<<observer_progress>>\
<</link>><</action_link>>
You see a symbol of <<link "red right hand." "CheatGuy">><</link>> Worth checking in with right purpose. But in most cases... no.
<<out_link>><<link "Get back to the main street of Harbor" "Harbor">>
<<addmins 15>>
<</link>><</out_link>><style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/darkalley.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $do_it_anyway == true>>\
<span class="male_text">- "Oh, okay."</span> The atmosphere shifted abruptly.
<</if>>\
Okay, it's too late to run. You are grabbed by the hand, now, redhanded, it's time to fase a consequences...
<<if $reputation >= 4000 && $do_it_anyway == false>>\
<span class="male_text">- "Oh, it's you... Sorry, I didn't mean to bother you. I'm not going to stand in your way. By the way, do you have a 5 bucks!?"</span>
<<link "That's right." "Dark Alleys">>
<</link>> - your reputation speaks for itself!
<<link "Tell him to go ahead and do what he was planning to do with you... You're not gonna hold a grudge.">>\
<<set $do_it_anyway = true>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
<<set _roll = random(0, 20)>>\
<<if _roll >= 10>>\
Typical dweller of such places - suspicious, wicked, and... aroused?
He doesnt even really care that you've tried to steal from him a moment ago, he just tries to move you to a more quiet place. It could be reeeeally dangerous to go along with it. But, you can smell a strawberry-like odor from him, you're pretty sure he's on aphrodisiac so //maybe// there's no threat for your life, atleast. \
<br>\
There's definitely no threat of the police if you are planning to get out of this situation.
<br>\
<<linkreplace "Try to bribe him.">>\
<<set _bribe = random(350, 1500)>>\
You convinced him that actually it's better to hire a hooker... for a _bribe​$.
<<link "Pay him - _bribe​$." "Dark Alleys">>\
<<set $do_it_anyway = false>>\
<<money `_bribe`>>\
<<addmins 30>>\
<</link>>\
<</linkreplace>>\
<br>\
<<charm_link>><<link "You're not planning to run away." "Dark Alleys Quickie">>
<<set $do_it_anyway = false>>\
<<addhours 1>>\
<<stam `-1`>>\
<<sex_rep_check>>\
<<depravity `1`>>\
<</link>><</charm_link>> Time for adventure in a dark place with a very suspicious man. Thrilling.\
<<if $p_inv.has("Handheld Taser")>>\
<br>\
<<link "Use a taser and run away." "Dark Alleys">>\
<<set $do_it_anyway = false>>\
<<drop $p_inv "Handheld Taser" 1>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> If only you had a taser... </span>\
<</if>>\
<<if $p_traits.includes("fitness_2")>>\
<br>\
<<link "Push him away and run." "Dark Alleys">>
<<set $do_it_anyway = false>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> Sadly, you're not strong enough to just push him away. </span>\
<</if>>\
<<else>>\
Typical dweller of such places - suspicious, wicked, and shaggy. And quite strong... You can see how buff he is.
He's not gonna to call the police. But he wants your money instead. Being cornered isn't good in this situation and your only options are...
<<if $money >= 100>>\
<br>\
<<link "Pay him 100$" "Dark Alleys">>
<<set $do_it_anyway = false>>\
<<addmins 30>>\
<<money `-100`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available">You don't even have 100$ to shrug him off...</span>\
<</if>>
But, you guess, you can pay him with your <<charm_link>><<link "body" "Dark Alleys Quickie">><<set $do_it_anyway = false>><<addhours 1>><<depravity `1`>><</link>><</charm_link>>...?
Or be ready to <<combat_link>><<link "fight him" "CombatDarkAlleys">><<set $money = 0>><<set $do_it_anyway = false>><<set $stam = 0>><<addhours 1>><</link>><</combat_link>>.
<<if $p_traits.includes("fitness_3")>>\
<<link "Push him away and run." "Dark Alleys">>
<<set $do_it_anyway = false>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<span class="not_available"> Sadly, you're not strong enough to just push him away. </span>\
<</if>>\
<</if>>\
<</if>>\<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/darkalley.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Hands move fast, pockets open easy, and no one’s paying attention - too lost in their own vices. But greed is a dangerous habit... out here, people notice when things go missing.
<<set _result = random(1, 20)>>\
<<if _result > 7 - $cun/2>>\
<<if $p_traits.includes("pickpocketer")>>\
<<set _random_1 = $dark_alleys.array.random()>>\
<<set _random_2 = $dark_alleys.array.random()>>\
<<if _random_1 != "Wallet">>\
<<set _amount_1 = random(1, 20)>>\
<<elseif _random_1 == "Wallet">>\
<<set _amount_1 = 1>>\
<</if>>\
<<if _random_2 != "Wallet">>\
<<set _amount_2 = random(1, 20)>>\
<<elseif _random_2 == "Wallet">>\
<<set _amount_2 = 1>>\
<</if>>\
<<pickup $p_inv _random_1 _amount_1>>\
<<pickup $p_inv _random_2 _amount_2>>\
You've got _amount_1 _random_1 from first pockets and _amount_2 _random_2 from the second ones!
<<link "Let's get back to hustling" "Dark Alleys">>
<<pickpocketing_success>>\
<</link>>
<<else>> /*if doesnt have a trait*/\
<<set _random_1 = $dark_alleys.array.random()>>\
<<if _random_1 != "Wallet">>\
<<set _amount_1 = random(1, 20)>>\
<<elseif _random_1 == "Wallet">>\
<<set _amount_1 = 1>>\
<</if>>\
<<pickup $p_inv _random_1 _amount_1>>\
You've got _amount_1 _random_1!
<<link "Let's get back to hustling" "Dark Alleys">>
<<pickpocketing_success>>\
<</link>>
<</if>>\
<<else>>\
<<pickpocketing_fail>>\
<<goto "Dark Alleys Caught">>
<</if>><<silently>>\
<<set _random_item = $dark_alleys_dealer.array.random()>>
<<set _amount = random(10, 20)>>
<<if _random_item == "Drugs">>
<<set _item_price = 5>>
<<elseif _random_item == "Aphrodisiac">>
<<set _item_price = 5>>
<<elseif _random_item == "Steroids">>
<<set _item_price = 6>>
<</if>>
<<set _total_price = (_item_price * _amount) + random(1, 9)>>
<</silently>>\
<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/darkalley.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
You spot the figure lingering in the shadows, eyes darting, hands buried in his pockets. A subtle glance, a quiet approach - no need for words just yet. It’s obvious this is who you were looking for. Business starts with a look; the real talk comes after.
He offers you _amount of _random_item for _total_price​$.
<<trade_link>><<link "Deal." "Dark Alleys">>
<<pickup $p_inv _random_item _amount>>\
<<money `-_total_price`>>\
<</link>><</trade_link>>
<<action_link>><span class="action_link"><<link "Look for another one." "Dark Alleys Dealer">>
<</link>></span><</action_link>>
<<out_link>><<link "Nah." "Dark Alleys">>\
<</link>><</out_link>><<silently>>\
<<if $brothel == true>>
<<brothel_calculations>>
<<set _pop_meter = $brothel_pop / 100>>
<</if>>
<</silently>>\
<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/brothel.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $harbor_state == false>>\
You didn't see a sign or any indication of this wonderful place's name anywhere. Whatever - the purpose of this establishment is obvious. The entrance is decorated in red tones, a sign with a half-naked woman leaves little to the imagination. Inside, there are a lot of women in very provocative clothes scurrying around the men. Yep, that's definitely a brothel.
<<elseif $harbor_state == true>>\
<<if $brothel == false>>
The brothel stands eerily quiet, its former life stripped away. The once-inviting entrance now looks worn, the red tones faded, and the sign of the half-naked woman hangs slightly askew. A small, weathered sign on the door reads "Closed." Inside, the air is thick with dust, and the lavish chaos of before has been replaced with an unsettling emptiness. Whatever this place once was, it's now just a hollow shell.
<<elseif $brothel == true && $brothel_pop <= 20>>\
The brothel is open again - technically. The "Closed" sign is gone, but the atmosphere is far from lively. A few hesitant patrons are lingering in almost empty halls, the furniture looks secondhand, and the walls could use a fresh coat of paint. The place is operational, but luxury is still a distant dream. At least it’s a start.
<<elseif $brothel == true && $brothel_pop <= 60>>\
The brothel is regaining its former charm. The red glow of the entrance once again beckons customers inside, and the sign of the half-naked woman has been polished to its former glory. The halls are no longer silent - laughter, music, and the clinking of glasses fill the air. Women in alluring outfits weave through the crowd, and the place finally feels alive again. Business is booming.
<<elseif $brothel == true && $brothel_pop <= 100>>\
This is no longer just a brothel - it’s your brothel, and it shows. The entrance is grand, draped in rich velvets and adorned with an elegant new sign, leaving no doubt about the establishment’s prestige. Inside, the scent of expensive perfume mingles with laughter and music, the atmosphere dripping with indulgence. The women are dressed to impress, the clientele is plentiful, and the money flows like fine wine. This is no longer just a place of pleasure - it’s a monument to your success.
<</if>>\
<</if>>\
<<if $brothel == true>>\
Popularity: <<showmeter "brothel_popularity" _pop_meter>>\
<<brothel_report>>\
Amount of "workers": $brothel_sluts out of $brothel_sluts_max.
<<message "List of workers:">>\
<<brothel_sluts_list>>\
<</message>>
<<message "Upgrades">>\
<<include "Brothel Upgrades">>\
<</message>>\
<br>\
<</if>>\
<<if $harbor_state == false>>\
<<linkreplace "Ask the local Ma about working here.">>\
<span class="fem_text">- "Do you really think that you can barge into a decent establishment and work there right away? No. This place is for the best of the best. And while Cartel holds this place, no random street whore is allowed to work in here."</span>\
<</linkreplace>>
<<elseif $harbor_state == true && $brothel == false>>\
<<linkreplace "Meet the Ma and launch this operation.">>\
You found Ma sitting alone in the lobby, surrounded by the remnants of a once-thriving establishment. She clutched her chest dramatically, lamenting the state of things.
<span class="fem_text"> - "Oh, my poor, sweet paradise! Gone, ruined, trampled by those ungrateful little doves! The moment the Cartel lost its grip, they scattered like frightened kittens - took the good sheets with them too!"</span> She sighed, then looked at the you with weary acceptance.<span class="fem_text"> "Well, it is what it is. If you plan to rebuild, you'll need new girls and some renovation. Leave the rest to me - I’ll make sure this place shines again."</span>
<<link "Nod." "Brothel">><<set $brothel = true>><</link>>\
<</linkreplace>>
<</if>>\
<<action_link>><<link "Go meet someone." "Brothel Meeting">>\
<<observer_progress>>\
<<addmins 30>>\
<</link>><</action_link>>
\
<<out_link>><<link "Get back to the main street of Harbor" "Harbor">>
<<addmins 15>>
<</link>><</out_link>><style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/brothel.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<createnpc_harbor>>\
<<depravity_talk>>\
You've met _name _surname, _job.
<<if $p_traits.includes("observer")>>\
You're pretty sure that he's trait is... _trait.
<<observer_combat_temp>>\
<<if $p_traits.includes("observer_2")>>\
<<observer_driving_temp>>\
<<observer_cun_temp>>\
<</if>>\
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly what his abilities are.</span>
<</if>>\
<<if $brothel == false>>\
<<if $charm >= _npc.charm && $money >= 1000>>\
<<charm_link>><<link "Offer him to hire a whore and move together to a more private place. It'll cost you a 1000$." "Brothel Threesome">>\
<<money `-1000`>>\
<<set _npc.friendship += $charm * 5>>\
<<set _npc.hadSex = 1>>\
<<addnpc>>\
<</link>><</charm_link>>\
<<elseif $charm >= _npc.charm && $money < 1000>>\
<span class="not_available"> You don't have enough money to rent a room in the brothel. You need 1000$ atleast.</span>
<<elseif $charm < _npc.charm>>\
<span class="not_available"> Seems like you're not charming enough for him.</span>
<</if>>\
<<else>>\
<<charm_link>><<link "Offer him to take one of your girls and move together to a more private place. No one's gonna refuse such offer from a brothel's owner." "Brothel Threesome">>\
<<set _npc.friendship += $charm * 5>>\
<<set _npc.hadSex = 1>>\
<<addnpc>>\
<</link>><</charm_link>>\
<</if>>
Add to contacts?
<<link "Yes" "Brothel">>
<<addnpc>>
<</link>>
<<link "No" "Brothel">><</link>><<widget "createnpc_dt">>\
<<silently>>\
<<set _id = random(0, 10000) + Date.now()>>
<<set _gender = 0>>
<<set _name = $name.random()>>
<<set _surname = $surname.random()>>
<<set _trait = $trait_downtown.random()>>
<<set _temper = random(0, 100)>>
<<set _cun = random(1, 5)>>
<<set _job = $job_downtown.random()>>
<<set _friendship = 0>>
<<set _had_sex = 0>>
<<set _bar = true>>
<<set _depravity = random(7, 30)>>
<<set _charm = random(1, 5)>>
<<set _talk = true>>
<<set _combat = random(2, 7)>>
<<set _driving = random(0, 8)>>
<<set _npc = {id: _id, name: _name, surname: _surname, trait: _trait, temper: _temper, job: _job, friendship: _friendship, bar: _bar, depravity: _depravity, charm: _charm, talk: _talk, hadSex: _had_sex, combat: _combat, driving: _driving, farmer_trade: true, cun: _cun}>>
<</silently>>\
<</widget>>\
<<widget "createnpc_fem_dt">>\
<<silently>>\
<<set _id = random(0, 10000) + Date.now()>>
<<set _gender = 1>>
<<set _name = $name_fem.random()>>
<<set _surname = $surname.random()>>
<<set _job = $job_fem_downtown.random()>>
<<set _friendship = 0>>
<<set _had_sex = 0>>
<<set _depravity = random(5, 22)>>
<<set _beauty = random(0, 2)>>
<<set _clothes = random(0, 2)>>
<<set _body = random(0, 3)>>
<<set _moral = random(0, 10)>>
<<set _talk = true>>
<<set _rate = (_beauty + _clothes + _body)>>
<<set _sex_stam = random(15, 35)>>
<<set _npc = {id: _id, name: _name, surname: _surname, job: _job, friendship: _friendship, depravity: _depravity, talk: _talk, hadSex: _had_sex, beauty: _beauty, clothes: _clothes, body: _body, moral: _moral, pleasure: 0, rate: _rate, sex_stam: _sex_stam, asked_today: true}>>
<</silently>>\
<</widget>>\
<<widget "createnpc_slut_dt">>\
<<silently>>\
<<set _id = random(0, 10000) + Date.now()>>
<<set _gender = 1>>
<<set _name = $name_fem.random()>>
<<set _surname = $surname.random()>>
<<set _nickname = $slut_nickname.random()>>
<<set _job = "Slut">>
<<set _friendship = 0>>
<<set _had_sex = 0>>
<<set _depravity = random(20, 30)>>
<<set _beauty = random(0, 2)>>
<<set _clothes = random(0, 2)>>
<<set _body = random(0, 3)>>
<<set _moral = random(5, 10)>>
<<set _rate = (_beauty + _clothes + _body)>>
<<set _sex_stam = random(15, 35)>>
<<set _npc = {id: _id, name: _name, surname: _surname, nickname: _nickname, job: _job, friendship: _friendship, depravity: _depravity, hadSex: _had_sex, beauty: _beauty, clothes: _clothes, body: _body, moral: _moral, pleasure: 0, rate: _rate, sex_stam: _sex_stam, asked_today: true, body_upgrade: false, work_location: "none",}>>
<</silently>>\
<</widget>>\
<<widget "createnpc_suburbs">>\
<<silently>>\
<<set _id = random(0, 10000) + Date.now()>>
<<set _gender = 0>>
<<set _name = $name.random()>>
<<set _surname = $surname.random()>>
<<set _trait = $trait_suburbs.random()>>
<<set _temper = random(0, 100)>>
<<set _cun = random(1, 3)>>
<<set _job = $job_suburbs.random()>>
<<set _friendship = 0>>
<<set _had_sex = 0>>
<<set _bar = true>>
<<set _depravity = random(1, 30)>>
<<set _charm = random(1, 7)>>
<<set _talk = true>>
<<set _combat = random(2, 7)>>
<<set _driving = random(1, 10)>>
<<set _npc = {id: _id, name: _name, surname: _surname, trait: _trait, temper: _temper, job: _job, friendship: _friendship, bar: _bar, depravity: _depravity, charm: _charm, talk: _talk, hadSex: _had_sex, combat: _combat, driving: _driving, engineer_trade: true, cun: _cun}>>
<</silently>>\
<</widget>>\
<<widget "createnpc_harbor">>\
<<silently>>\
<<set _id = random(0, 10000) + Date.now()>>
<<set _gender = 0>>
<<set _name = $name.random()>>
<<set _surname = $surname.random()>>
<<set _trait = $trait_harbor.random()>>
<<set _temper = random(0, 100)>>
<<set _cun = random(1, 3)>>
<<set _job = $job_harbor.random()>>
<<set _friendship = 0>>
<<set _had_sex = 0>>
<<set _bar = true>>
<<set _depravity = random(15, 30)>>
<<set _charm = random(2, 7)>>
<<set _talk = true>>
<<set _combat = random(3, 8)>>
<<set _driving = random(1, 8)>>
<<set _npc = {id: _id, name: _name, surname: _surname, trait: _trait, temper: _temper, job: _job, friendship: _friendship, bar: _bar, depravity: _depravity, charm: _charm, talk: _talk, hadSex: _had_sex, combat: _combat, farmer_trade: true, driving: _driving, cun: _cun}>>
<</silently>>\
<</widget>>\
<<widget "createnpc_slut_alleys">>\
<<silently>>\
<<set _id = random(0, 10000) + Date.now()>>
<<set _gender = 1>>
<<set _name = $name_fem.random()>>
<<set _surname = $surname.random()>>
<<set _nickname = $slut_nickname.random()>>
<<set _job = "Slut">>
<<set _friendship = 0>>
<<set _had_sex = 0>>
<<set _depravity = random(20, 30)>>
<<set _beauty = random(0, 1)>>
<<set _clothes = random(0, 1)>>
<<set _body = random(0, 2)>>
<<set _moral = random(5, 10)>>
<<set _rate = (_beauty + _clothes + _body)>>
<<set _sex_stam = random(15, 35)>>
<<set _npc = {id: _id, name: _name, surname: _surname, nickname: _nickname, job: _job, friendship: _friendship, depravity: _depravity, hadSex: _had_sex, beauty: _beauty, clothes: _clothes, body: _body, moral: _moral, pleasure: 0, rate: _rate, sex_stam: _sex_stam, asked_today: true, body_upgrade: false, work_location: "none",}>>
<</silently>>\
<</widget>>\
<<widget "createnpc_center">>\
<<silently>>\
<<set _id = random(0, 10000) + Date.now()>>
<<set _gender = 0>>
<<set _name = $name.random()>>
<<set _surname = $surname.random()>>
<<set _trait = $trait_center.random()>>
<<set _temper = random(0, 100)>>
<<set _cun = random(2, 8)>>
<<set _job = $job_center.random()>>
<<set _friendship = 0>>
<<set _had_sex = 0>>
<<set _bar = true>>
<<set _depravity = random(1, 30)>>
<<set _charm = random(6, 12)>>
<<set _talk = true>>
<<set _combat = random(1, 3)>>
<<set _driving = random(0, 9)>>\
<<set _npc = {id: _id, name: _name, surname: _surname, trait: _trait, temper: _temper, job: _job, friendship: _friendship, bar: _bar, depravity: _depravity, charm: _charm, talk: _talk, hadSex: _had_sex, combat: _combat, engineer_trade: true, chemist_trade: true, driving: _driving, cun: _cun, banker_intel: true}>>
<</silently>>\
<</widget>>\
<<widget "createnpc_fem_center">>\
<<silently>>\
<<set _id = random(0, 10000) + Date.now()>>
<<set _gender = 1>>
<<set _name = $name_fem.random()>>
<<set _surname = $surname.random()>>
<<set _job = $job_fem_center.random()>>
<<set _friendship = 0>>
<<set _had_sex = 0>>
<<set _depravity = random(2, 22)>>
<<set _beauty = random(0, 3)>>
<<set _clothes = random(1, 3)>>
<<set _body = random(1, 3)>>
<<set _moral = random(0, 10)>>
<<set _talk = true>>
<<set _rate = (_beauty + _clothes + _body)>>
<<set _sex_stam = random(15, 30)>>
<<set _npc = {id: _id, name: _name, surname: _surname, job: _job, friendship: _friendship, depravity: _depravity, talk: _talk, hadSex: _had_sex, beauty: _beauty, clothes: _clothes, body: _body, moral: _moral, pleasure: 0, rate: _rate, sex_stam: _sex_stam, asked_today: false, chemist_trade: true, banker_intel: true}>>
<</silently>>\
<</widget>>\
<<widget "createnpc_hook">>\
<<silently>>\
<<set _id = random(0, 10000) + Date.now()>>
<<set _gender = 0>>
<<set _name = $name.random()>>
<<set _surname = $surname.random()>>
<<set _trait = either("Thug", "Thief")>>
<<set _temper = random(0, 100)>>
<<set _cun = random(1, 7)>>
<<set _job = $job_downtown.random()>>
<<set _friendship = 0>>
<<set _had_sex = 0>>
<<set _bar = true>>
<<set _depravity = random(7, 30)>>
<<set _charm = random(1, 5)>>
<<set _talk = true>>
<<set _combat = random(3, 8)>>
<<set _driving = random(1, 8)>>
<<set _npc = {id: _id, name: _name, surname: _surname, trait: _trait, temper: _temper, job: _job, friendship: _friendship, bar: _bar, depravity: _depravity, charm: _charm, talk: _talk, hadSex: _had_sex, combat: _combat, driving: _driving, farmer_trade: true, cun: _cun}>>
<</silently>>\
<</widget>>\
<<widget "addnpc">>\
<<run $npc_list.push(_npc)>>\
<<set $observer_trait_progress += 7>>\
<</widget>>\
<<widget "addnpc_fem">>\
<<run $npc_fem_list.push(_npc)>>\
<<set $observer_trait_progress += 7>>\
<</widget>>\
<<widget "addslut">>\
<<set $active_npc.work_location = "none">>\
<<run $sluts_list.push(_npc)>>\
<<set $observer_trait_progress += 7>>\
<</widget>>\
<<widget "addslut_temp">>\
<<set _npc.work_location = "none">>\
<<run $sluts_list.push(_npc)>>\
<<set $observer_trait_progress += 7>>\
<</widget>>\
<<widget "addaccomplice_thug">>\
<<set $active_npc.nickname = $thug_nickname.random()>>\
<<set $active_npc.job = "Thug">>\
<<set $active_npc.driving_exp = 0>>\
<<set $active_npc.combat_exp = 0>>\
<<set $active_npc.cun_exp = 0>>\
<<set $active_npc.training = 0>>\
<<set $active_npc.inTraining = 0>>\
<<run $accomplices_list.push($active_npc)>>\
<<count_str>>\
<</widget>>\
<<widget "addaccomplice_thug_temp">>\
<<set _npc.nickname = $thug_nickname.random()>>\
<<set _npc.job = "Thug">>\
<<set _npc.driving_exp = 0>>\
<<set _npc.combat_exp = 0>>\
<<set _npc.cun_exp = 0>>\
<<set _npc.training = 0>>\
<<set _npc.inTraining = 0>>\
<<run $accomplices_list.push(_npc)>>\
<<count_str>>\
<</widget>>\
<<widget "addaccomplice_thief">>\
<<set $active_npc.nickname = $thief_nickname.random()>>\
<<set $active_npc.job = "Thief">>\
<<set $active_npc.driving_exp = 0>>\
<<set $active_npc.combat_exp = 0>>\
<<set $active_npc.cun_exp = 0>>\
<<run $accomplices_list.push($active_npc)>>\
<<count_str>>\
<</widget>>\
<<widget "addaccomplice_thief_temp">>\
<<set _npc.nickname = $thief_nickname.random()>>\
<<set _npc.job = "Thief">>\
<<set _npc.driving_exp = 0>>\
<<set _npc.combat_exp = 0>>\
<<set _npc.cun_exp = 0>>\
<<run $accomplices_list.push(_npc)>>\
<<count_str>>\
<</widget>>\
<<widget "addaccomplice_slut">>\
<<set $active_npc.work_location = "none">>\
<<set $active_npc.nickname = $slut_nickname.random()>>\
<<set $active_npc.job = "Slut">>\
<<set $active_npc.body_upgrade = false>>\
<<run $sluts_list.push($active_npc)>>\
<</widget>>\
<<widget "accomplice_jail">>\
<<remove_from_pos>>\
<<remove_from_crew>>\
<<removeAccomplice>>\
<<count_str>>\
<<run $jail_list.push($active_npc)>>\
<</widget>>\
<<widget "out_of_jail">>\
<<set $active_npc.jail_term = "">>\
<<set $active_npc.jail_year = "">>\
<<set $active_npc.jail_month = "">>\
<<set $active_npc.jail_day = "">>\
<<set $active_npc.buyback = "">>\
<<set $active_npc.crime = "">>\
<<run $accomplices_list.push($active_npc)>>\
<<count_str>>\
<<for _i = 0; _i < $jail_list.length; _i = _i + 1>>\
<<if $active_npc.id === $jail_list[_i].id>>\
<<run $jail_list.deleteAt($jail_list.indexOf($jail_list[_i]))>>\
<</if>>\
<</for>>\
<</widget>>\
<<widget "setNpc">>\
<<for _i = 0; _i < $npc_list.length; _i = _i + 1>>\
<<if $active_npc.id === $npc_list[_i].id>>\
<<set $npc_list[_i] = $active_npc>>\
<</if>>\
<</for>>\
<</widget>>
<<widget "setNpc_fem">>\
<<for _i = 0; _i < $npc_fem_list.length; _i = _i + 1>>\
<<if $active_npc.id === $npc_fem_list[_i].id>>\
<<set $npc_fem_list[_i] = $active_npc>>\
<</if>>\
<</for>>\
<</widget>>
<<widget "removeNpc">>\
<<for _i = 0; _i < $npc_list.length; _i = _i + 1>>\
<<if $active_npc.id === $npc_list[_i].id>>\
<<run $npc_list.deleteAt($npc_list.indexOf($npc_list[_i]))>>\
<</if>>\
<</for>>\
<</widget>>
<<widget "removeNpc_fem">>\
<<for _i = 0; _i < $npc_fem_list.length; _i = _i + 1>>\
<<if $active_npc.id === $npc_fem_list[_i].id>>\
<<run $npc_fem_list.deleteAt($npc_fem_list.indexOf($npc_fem_list[_i]))>>\
<</if>>\
<</for>>\
<</widget>>
<<widget "removeAccomplice">>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $active_npc.id === $accomplices_list[_i].id>>\
<<run $accomplices_list.deleteAt($accomplices_list.indexOf($accomplices_list[_i]))>>\
<</if>>\
<</for>>\
<</widget>>
<<widget "removeSlut">>\
<<for _i = 0; _i < $sluts_list.length; _i = _i + 1>>\
<<if $active_npc.id === $sluts_list[_i].id>>\
<<run $sluts_list.deleteAt($sluts_list.indexOf($sluts_list[_i]))>>\
<</if>>\
<</for>>\
<</widget>><style>
body.outskirts::before {
content: '';
background-image: url("img/background/outskirts/bikersclub.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
The Fringe Club - a fitting name for an "offbeat" venue tucked away on the outskirts of the city. The place exudes grit, with leather-clad patrons and a parking lot packed with bikes and pickup trucks. Even before stepping inside the occasional burst of laughter hint at the atmosphere. You’d expect your arrival to turn heads, but as you walk in, the crowd barely spares you a glance, each engrossed in their own world.
<<if $outskirts_state == true>>\
<span class="male_text">- Heeey, big people are visiting us today! How are you, boss?</span>
<</if>>\
<<if $bikers_met > 0>>\
<<link "Volkov" "Bikers Leader O">>\
<</link>>
<span id="wares"></span>\
<<linkreplace "Check their wares.">>\
<<if $money >= 500>>\
<<link "Metal Chain - 500$">>
<<money `-500`>>\
<<pickup $p_melee "Metal Chain" 1>>\
<<replace "#wares">> Bought.<br><</replace>>\
<</link>>
<<else>>\
<span class="not_available"> Metal Chain - 500$.</span>
<</if>>\
<<if $money >= 2000>>\
<<link "Block 19 - 2000$">>
<<money `-2000`>>\
<<pickup $p_range "Block 19" 1>>\
<<replace "#wares">>Bought.<br><</replace>>\
<</link>>\
<<else>>\
<span class="not_available">Block 19 - 2000$</span>
<</if>>\
<<if $money >= 4000>>
<<link "Saga-12 - 4000$">>
<<money `-4000`>>\
<<pickup $p_range "Saga-12" 1>>\
<<replace "#wares">>Bought.<br><</replace>>\
<</link>>\
<<else>>\
<span class="not_available">Saga-12 - 4000$</span>\
<</if>>
<<if $money >= 5000>>\
<<link "I16 - 5000$">>
<<money `-5000`>>\
<<pickup $p_range "I16" 1>>\
<<replace "#wares">>Bought.<br><</replace>>\
<</link>>\
<<else>>\
<span class="not_available">I16 - 5000$</span>\
<</if>>\
<</linkreplace>>\
<<elseif $bikers_met == 0>>\
<<link "Ask around about biker's leader." "Bikers Leader O">>\
<</link>>\
<</if>>
<<out_link>><<link "Go back outside." "Outskirts">>
<<addmins 5>>
<</link>><</out_link>><<if $bikers_met == 0>>\
You've asked a few bikers about their leader and they very easily helped you to locate him.
He's standing at the corner of the bar. A hulking figure with a weathered leather jacket and a cigar hanging from his lips. His eyes flick to you as you approach, sharp and calculating.
He takes a slow puff, then nods slightly, motioning for you to sit. "Volkov," he says simply, his accent thick, voice gravelly. He taps his chest with two fingers, then points at you. "You?"
You introduce yourself, and he nods again, seemingly satisfied. He leans in, lowering his voice. "Business?" His eyes gleam at the word.
<span class="volkov">- "You got money? Dirty?"</span> he asks, leaning back. <span class="volkov">''"I clean. Three for one."''</span> He holds up three fingers, then one, to make sure you understand.
He takes a sip from his glass, never taking his eyes off you. <span class="volkov">"You got cargo?"</span> He makes a plane gesture with his hand, tilting it back and forth. <span class="volkov">"I ship. Big reward. At the local landing strip."</span> His grin is quick, almost feral. <span class="volkov">"You bring cash. I bring... solution."</span>
He leans back, giving a small, almost indifferent shrug. "No cash, no talk." He points to his pocket, then to you. "Money... speaks."
<br>\
<span class="in_link"><<link "Nod" "Bikers Leader O">>\
<<set $reputation += 150>>\
<<set $bikers_met = 1>>\
<</link>></span>\
<<else>>\
/*Everything if you know him should go below */\
<<if $p_boss == true && $outskirts_state == false>>\
<<linkreplace "Offer him to join your organization under your leadership.">>\
<<set _price = 1000000 - ($reputation * 12)>>\
<span class="volkov">- "Big move. Needs big money."</span> He pauses, then locks eyes with you. <span class="volkov">"Your reputation speaks for itself. Price is... price is... _price​$ in dirty. Pay that... and it's all yours." </span>
<<if $dirty_money >= _price>>\
<<linkreplace "Pay the price.">>\
<<dirty_money `-_price`>>\
<<set $outskirts_state = true>>\
Volkov eyes the stack of cash, his fingers twitching slightly. He doesn't say much, just gives a slow nod, the corner of his mouth curling into a grin. <span class="volkov">"Did not expect you to pay that much. Your gang now."</span> - he says, counting the money with quick, practiced hands. <span class="volkov">"I stay... for the cut."</span>
<</linkreplace>>\
<<else>>\
<span class="not_available"> You don't have such money. </span>\
<</if>>\
<</linkreplace>>\
<br>\
<</if>>\
<<if $dm_cap >= 150000>>\
<<linkreplace "Money exchange.">>\
<span class="volkov">- "No more money. Too much. Drained."</span> \
<</linkreplace>>
<<else>>\
<<linkreplace "Money exchange.">>\
<<if $dirty_money >= 3000>>\
<<trade_link>><<link "Exchange 3000$ dirty to 1000$.">>\
<<money `1000`>>\
<<dirty_money `-3000`>>\
<<set $dm_cap += 3000>>\
<<run Engine.show()>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available"> Exchange 3000$ dirty to 1000$. </span>\
<</if>>
\
<<if $dirty_money >= 15000>>\
<<trade_link>><<link "Exchange 15000$ dirty to 5000$.">>\
<<money `5000`>>\
<<dirty_money `-15000`>>\
<<set $dm_cap += 15000>>\
<<run Engine.show()>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available"> Exchange 15000$ dirty to 5000$. </span>\
<</if>>
\
<<if $dirty_money >= 30000>>\
<<trade_link>><<link "Exchange 30000$ dirty to 10000$.">>\
<<money `10000`>>\
<<dirty_money `-30000`>>\
<<set $dm_cap += 30000>>\
<<run Engine.show()>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available"> Exchange 30000$ dirty to 10000$. </span>\
<</if>>\
<</linkreplace>>
\
<<if $hackers_met == 0>>\
<span class="volkov"> - "I can help you. Build a connection. With useful people. Price. 5000$ for address."</span>\
<<if $money >= 5000>>\
<<linkreplace "Pay 5000$ for information.">>
<<money `-5000`>>\
<<set $hackers_met = 1>>\
Volkov wrote you an adress on small paper. Hackers den located in suburbs.
<span class="volkov">- "Visit me later. After you meet them. I will help you more."</span>\
<</linkreplace>>
<<else>>\
<span class="not_available"> You don't have enough money. </span>
<</if>>\
<</if>>\
<<if $hackers_met == 2 && $hackers_rep < 10>>\
<span class="volkov">- "Do you need a help... with, hm, trust issues with useful people? 5000$."</span>\
<<if $money >= 5000>>\
<<linkreplace "Pay 5000$ to fix the trust issues with hackers.">>
<<money `-5000`>>\
<<set $hackers_rep += 10>>\
Volkov nodded to you after counting the money. He told you that he'll resolve any issues.\
<</linkreplace>>
<<else>>\
<span class="not_available"> You don't have enough money. </span>
<</if>>\
<</if>>\
<</if>>\
<</if>>\<<silently>>\
<<set _media_sex = $volkov_sex.random()>>\
<<set _media_creampie = $creampie_anal.random()>>\
<</silently>>\
<style>
body.outskirts::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/outskirts/toomuchmuny.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center>\
He looked at you with surprise but didn't ask any questions.
Taking your hand, he led you to a bar lounge tucked away from the bustling public area of the club. The space felt private, almost intimate, shielded from the chaos outside. It even has a bed, huh.
Volkov didn’t bother with small talk.
- “Turn around,” he said simply, his tone leaving no room for hesitation.
The moment you turned, he pushed you forward, bending you over the nearby furniture with swift, deliberate force. He didn't bother with foreplay at all, he grabbed your ass, spread it open, enjoyed the view literally for a few seconds before proceeding to the <<linkappend "main course.">>
<<anal_whore_progress>>\
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
You gasped as he forced his way in, and just like that the room was filled with your moans and his grunts. He chose the quite debatable orifice but you won't complain, no time for it. Biker was really rough and quick with his motions, he wasn’t restraining himself. A low growl rumbled in his throat as you felt his body <<linkappend "tense against you.">>
<video @src="_media_creampie" autoplay loop muted controls width="600" height="350"></video>
He pulled out veeeery slowly while huffing, his cock slipping out of you with a wet sound.
- "You're a wild. One. Thanks." his voice filled with approval. You waved him off with a gesture, signaling that he shouldn't wait - you needed a few minutes to gather yourself.
<<link "Let's get back to the hustling." "Bikers Leader O">>
<</link>>\
<</linkappend>>\
<</linkappend>>\
</center>\<<widget "reset_orders">>\
<<set $orders = ["Order from Banana Republic", "Order from brothel", "Order from pimp", "Order from sport team", "Order from ghetto", "Order from pawnshop", "Order from drugdealer", "Order from hackers", "Order for party", "Order from IT company", "Concealed Melee shipment order", "Jewelry order"]>>\
<<set $order_1 = "">>\
<<set $order_1_desc = "">>\
<<dropall $order_1_inv>>\
<<set $order_1_reward = 0>>\
<<set $order_2 = "">>\
<<set $order_2_desc = "">>\
<<dropall $order_2_inv>>\
<<set $order_2_reward = 0>>\
<<set $order_3 = "">>\
<<set $order_3_desc = "">>\
<<dropall $order_3_inv>>\
<<set $order_3_reward = 0>>\
<</widget>>\
<<widget "turn_in_order_1">>\
<<if $warehouse_inv.compare($order_1_inv)>>
<<link "Turn in.">>\
<<unmerge $warehouse_inv $order_1_inv>>\
<<set $order_1 = "">>\
<<set $order_1_desc = "Done.">>\
<<dropall $order_1_inv>>\
<<pickup $order_1_inv "Block" 1>>\
<<dirty_money $order_1_reward>>\
<<set $order_1_reward = "">>\
<<set $reputation += 1000>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
<span class="not_available">Turn in.</span>\
<</if>>\
<</widget>>\
<<widget "turn_in_order_2">>\
<<if $warehouse_inv.compare($order_2_inv)>>
<<link "Turn in.">>\
<<unmerge $warehouse_inv $order_2_inv>>\
<<set $order_2 = "">>\
<<set $order_2_desc = "Done.">>\
<<dropall $order_2_inv>>\
<<pickup $order_2_inv "Block" 1>>\
<<dirty_money $order_2_reward>>\
<<set $order_2_reward = "">>\
<<set $reputation += 1000>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
<span class="not_available">Turn in.</span>\
<</if>>\
<</widget>>\
<<widget "turn_in_order_3">>\
<<if $warehouse_inv.compare($order_3_inv)>>
<<link "Turn in.">>\
<<unmerge $warehouse_inv $order_3_inv>>\
<<set $order_3 = "">>\
<<set $order_3_desc = "Done.">>\
<<dropall $order_3_inv>>\
<<pickup $order_3_inv "Block" 1>>\
<<dirty_money $order_3_reward>>\
<<set $order_3_reward = "">>\
<<set $reputation += 1000>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
<span class="not_available">Turn in.</span>\
<</if>>\
<</widget>>\
<<widget "set_order_1">>\
<<silently>>\
<<set $order_1 = $orders.pluck()>>
<<if $order_1 == "Order from Banana Republic">>
<<set $order_1_desc = "Help your colleagues from wild frontiers. They require a ''3 weapons shipments.'' Reward: 55000$.">>
<<pickup $order_1_inv "Weapons Shipment" 3>>
<<set $order_1_reward = 55000>>
<<elseif $order_1 == "Order from brothel">>\
<<set $order_1_desc = "Ma of some random brothel wanna to order additional boosts for her clientele. She needs a ''3 aphrodisiac shipments and 1 moonshine shipment.'' Reward: 17250$.">>
<<pickup $order_1_inv "Aphrodisiac Shipment" 3 "Moonshine Shipment" 1>>
<<set $order_1_reward = 17250>>
<<elseif $order_1 == "Order from pimp">>\
<<set $order_1_desc ="Local pimp wants to diversify the customer support. He needs ''2 shipments of aphrodisiac and 2 shipments of drugs.'' Reward: 19000$.">>
<<pickup $order_1_inv "Aphrodisiac Shipment" 2 "Drugs Shipment" 2>>
<<set $order_1_reward = 19000>>
<<elseif $order_1 == "Order from sport team">>\
<<set $order_1_desc ="Hockey, soccer, football - whatever, people wanna have an extra edge in their competitive games, ''3 shipments of steroids'' should do. Reward: 18000$.">>
<<pickup $order_1_inv "Steroids Shipment" 3>>
<<set $order_1_reward = 18000>>
<<elseif $order_1 == "Order from ghetto">>\
<<set $order_1_desc ="Local crimelord wants to establish they regiment, and you wanna do some money on this change of powers. They'll need ''1 weapons shipment, 2 drugs shipments and 1 stolen goods shipment'' (for good look). Reward: 27000$.">>
<<pickup $order_1_inv "Weapons Shipment" 1 "Drugs Shipment" 2 "Stolen Goods Shipment" 1>>
<<set $order_1_reward = 27000>>
<<elseif $order_1 == "Order from pawnshop">>\
<<set $order_1_desc ="Pawnshop requires restock, and your wallet requires more money. ''3 stolen goods shipments and 1 electronics shipment'' will suffice. Reward: 21500$.">>
<<pickup $order_1_inv "Stolen Goods Shipment" 3 "Electronic Shipment" 1>>
<<set $order_1_reward = 21500>>
<<elseif $order_1 == "Order from drugdealer">>\
<<set $order_1_desc ="Restock of local markets, nothing special. ''1 aphrodisiac shipment, 1 drugs shipments and 1 steroids shipment''. Reward: 16000$.">>
<<pickup $order_1_inv "Aphrodisiac Shipment" 1 "Drugs Shipment" 1 "Steroids Shipment" 1>>
<<set $order_1_reward = 16000>>
<<elseif $order_1 == "Order from hackers">>\
<<set $order_1_desc ="Usual replenishment of electronics supplies for shady techies. ''3 Electronic Shipments''. Reward: 24000$.">>
<<pickup $order_1_inv "Electronic Shipment" 3>>
<<set $order_1_reward = 24000>>
<<elseif $order_1 == "Order for party">>\
<<set $order_1_desc ="Order for party equipment. Someone gonna have a blast in nearby future. ''2 Moonshine Shipments'' and ''2 Drugs Shipments''. Reward: 16500$.">>
<<pickup $order_1_inv "Moonshine Shipment" 2 "Drugs Shipment" 2>>
<<set $order_1_reward = 16500>>
<<elseif $order_1 == "Order from IT company">>\
<<set $order_1_desc ="Big order from IT company for corporate event. They'll gonna need a few random electronics, they'll sort it out themselves, and a leisure products. ''1 Moonshine Shipment'' and ''2 Electronics Shipments''. Reward: 17000$.">>
<<pickup $order_1_inv "Moonshine Shipment" 1 "Electronic Shipment" 2>>\
<<set $order_1_reward = 17000>>\
<<elseif $order_1 == "Concealed Melee shipment order">>\
<<set $order_1_desc = "Shady request for shady tools for shady business. No connections to customer, no bridges to you, perfect opportunity. ''3 Concealed Melee Shipments''. Reward: 17500$.">>
<<pickup $order_1_inv "Concealed Melee Shipment" 3>>\
<<set $order_1_reward = 17500>>\
<<elseif $order_1 == "Jewelry order">>\
<<set $order_1_desc = "The local jewelry store is in need of supplies and is willing to pay a decent amount. However, their offer is far below the price they’d pay to real jewelers. ''2 Jewelry Shipments''. Reward: 46000$.">>
<<pickup $order_1_inv "Jewelry Shipment" 2>>\
<<set $order_1_reward = 46000>>\
<</if>>
<</silently>>\
<</widget>>\
<<widget "set_order_2">>\
<<silently>>\
<<set $order_2 = $orders.pluck()>>
<<if $order_2 == "Order from Banana Republic">>
<<set $order_2_desc = "Help your colleagues from wild frontiers. They require a ''3 weapons shipments.'' Reward: 55000$.">>
<<pickup $order_2_inv "Weapons Shipment" 3>>
<<set $order_2_reward = 55000>>
<<elseif $order_2 == "Order from brothel">>\
<<set $order_2_desc = "Ma of some random brothel wanna to order additional boosts for her clientele. She needs a ''3 aphrodisiac shipments and 1 moonshine shipment.'' Reward: 17250$.">>
<<pickup $order_2_inv "Aphrodisiac Shipment" 3 "Moonshine Shipment" 1>>
<<set $order_2_reward = 17250>>
<<elseif $order_2 == "Order from pimp">>\
<<set $order_2_desc ="Local pimp wants to diversify the customer support. He needs ''2 shipments of aphrodisiac and 2 shipments of drugs.'' Reward: 19000$.">>
<<pickup $order_2_inv "Aphrodisiac Shipment" 2 "Drugs Shipment" 2>>
<<set $order_2_reward = 19000>>
<<elseif $order_2 == "Order from sport team">>\
<<set $order_2_desc ="Hockey, soccer, football - whatever, people wanna have an extra edge in their competitive games, ''3 shipments of steroids'' should do. Reward: 18000$.">>
<<pickup $order_2_inv "Steroids Shipment" 3>>
<<set $order_2_reward = 18000>>
<<elseif $order_2 == "Order from ghetto">>\
<<set $order_2_desc ="Local crimelord wants to establish they regiment, and you wanna do some money on that. They need ''1 weapons shipment, 2 drugs shipments and 1 stolen goods shipment'' (for good look). Reward: 27000$.">>
<<pickup $order_2_inv "Weapons Shipment" 1 "Drugs Shipment" 2 "Stolen Goods Shipment" 1>>
<<set $order_2_reward = 27000>>
<<elseif $order_2 == "Order from pawnshop">>\
<<set $order_2_desc ="Pawnshop requires restock, and your wallet requires more money. ''3 stolen goods shipments and 1 electronics shipment'' will suffice. Reward: 21500$.">>
<<pickup $order_2_inv "Stolen Goods Shipment" 3 "Electronic Shipment" 1>>
<<set $order_2_reward = 21500>>
<<elseif $order_2 == "Order from drugdealer">>\
<<set $order_2_desc ="Restock of local markets, nothing special. ''1 aphrodisiac shipment, 1 drugs shipments and 1 steroids shipment''. Reward: 16000$.">>
<<pickup $order_2_inv "Aphrodisiac Shipment" 1 "Drugs Shipment" 1 "Steroids Shipment" 1>>
<<set $order_2_reward = 16000>>
<<elseif $order_2 == "Order from hackers">>\
<<set $order_2_desc ="Usual replenishment of electronics supplies for shady techies. ''3 Electronic Shipments''. Reward: 24000$.">>
<<pickup $order_2_inv "Electronic Shipment" 3>>
<<set $order_2_reward = 24000>>
<<elseif $order_2 == "Order for party">>\
<<set $order_2_desc ="Order for party equipment. Someone gonna have a blast in nearby future. ''2 Moonshine Shipments'' and ''2 Drugs Shipments''. Reward: 16500$.">>
<<pickup $order_2_inv "Moonshine Shipment" 2 "Drugs Shipment" 2>>
<<set $order_2_reward = 16500>>
<<elseif $order_2 == "Order from IT company">>\
<<set $order_2_desc ="Big order from IT company for corporate event. They'll gonna need a few random electronics, they'll sort it out themselves, and a leisure products. ''1 Moonshine Shipment'' and ''2 Electronics Shipments''. Reward: 17000$.">>
<<pickup $order_2_inv "Moonshine Shipment" 1 "Electronic Shipment" 2>>
<<set $order_2_reward = 17000>>
<<elseif $order_2 == "Concealed Melee shipment order">>\
<<set $order_2_desc = "Shady request for shady tools for shady business. No connections to customer, no bridges to you, perfect opportunity. ''3 Concealed Melee Shipments''. Reward: 17500$.">>
<<pickup $order_2_inv "Concealed Melee Shipment" 3>>\
<<set $order_2_reward = 17500>>\
<<elseif $order_2 == "Jewelry order">>\
<<set $order_2_desc = "The local jewelry store is in need of supplies and is willing to pay a decent amount. However, their offer is far below the price they’d pay to real jewelers. ''2 Jewelry Shipments''. Reward: 46000$.">>
<<pickup $order_2_inv "Jewelry Shipment" 2>>\
<<set $order_2_reward = 46000>>\
<</if>>
<</silently>>\
<</widget>>\
<<widget "set_order_3">>\
<<silently>>\
<<set $order_3 = $orders.pluck()>>
<<if $order_3 == "Order from Banana Republic">>
<<set $order_3_desc = "Help your colleagues from wild frontiers. They require a ''3 weapons shipments.'' Reward: 55000$.">>
<<pickup $order_3_inv "Weapons Shipment" 3>>
<<set $order_3_reward = 55000>>
<<elseif $order_3 == "Order from brothel">>\
<<set $order_3_desc = "Ma of some random brothel wanna to order additional boosts for her clientele. She needs a ''3 aphrodisiac shipments and 1 moonshine shipment.'' Reward: 17250$.">>
<<pickup $order_3_inv "Aphrodisiac Shipment" 3 "Moonshine Shipment" 1>>
<<set $order_3_reward = 17250>>
<<elseif $order_3 == "Order from pimp">>\
<<set $order_3_desc ="Local pimp wants to diversify the customer support. He needs ''2 shipments of aphrodisiac and 2 shipments of drugs.'' Reward: 19000$.">>
<<pickup $order_3_inv "Aphrodisiac Shipment" 2 "Drugs Shipment" 2>>
<<set $order_3_reward = 19000>>
<<elseif $order_3 == "Order from sport team">>\
<<set $order_3_desc ="Hockey, soccer, football - whatever, people wanna have an extra edge in their competitive games, ''3 shipments of steroids'' should do. Reward: 18000$.">>
<<pickup $order_3_inv "Steroids Shipment" 3>>
<<set $order_3_reward = 18000>>
<<elseif $order_3 == "Order from ghetto">>\
<<set $order_3_desc ="Local crimelord wants to establish they regiment, and you wanna do some money on that. They need ''1 weapons shipment, 2 drugs shipments and 1 stolen goods shipment'' (for good look). Reward: 27000$.">>
<<pickup $order_3_inv "Weapons Shipment" 1 "Drugs Shipment" 2 "Stolen Goods Shipment" 1>>
<<set $order_3_reward = 27000>>
<<elseif $order_3 == "Order from pawnshop">>\
<<set $order_3_desc ="Pawnshop requires restock, and your wallet requires more money. ''3 stolen goods shipments and 1 electronics shipment'' will suffice. Reward: 21500$.">>
<<pickup $order_3_inv "Stolen Goods Shipment" 3 "Electronic Shipment" 1>>
<<set $order_3_reward = 21500>>
<<elseif $order_3 == "Order from drugdealer">>\
<<set $order_3_desc ="Restock of local markets, nothing special. ''1 aphrodisiac shipment, 1 drugs shipments and 1 steroids shipment''. Reward: 16000$.">>
<<pickup $order_3_inv "Aphrodisiac Shipment" 1 "Drugs Shipment" 1 "Steroids Shipment" 1>>
<<set $order_3_reward = 16000>>
<<elseif $order_3 == "Order from hackers">>\
<<set $order_3_desc ="Usual replenishment of electronics supplies for shady techies. ''3 Electronic Shipments''. Reward: 24000$.">>
<<pickup $order_3_inv "Electronic Shipment" 3>>
<<set $order_3_reward = 24000>>
<<elseif $order_3 == "Order for party">>\
<<set $order_3_desc ="Order for party equipment. Someone gonna have a blast in nearby future. ''2 Moonshine Shipments'' and ''2 Drugs Shipments''. Reward: 16500$.">>
<<pickup $order_3_inv "Moonshine Shipment" 2 "Drugs Shipment" 2>>
<<set $order_3_reward = 16500>>
<<elseif $order_3 == "Order from IT company">>\
<<set $order_3_desc ="Big order from IT company for corporate event. They'll gonna need a few random electronics, they'll sort it out themselves, and a leisure products. ''1 Moonshine Shipment'' and ''2 Electronics Shipments''. Reward: 17000$.">>
<<pickup $order_3_inv "Moonshine Shipment" 1 "Electronic Shipment" 2>>
<<set $order_3_reward = 17000>>
<<elseif $order_3 == "Concealed Melee shipment order">>\
<<set $order_3_desc = "Shady request for shady tools for shady business. No connections to customer, no bridges to you, perfect opportunity. ''3 Concealed Melee Shipments''. Reward: 17500$.">>
<<pickup $order_3_inv "Concealed Melee Shipment" 3>>\
<<set $order_3_reward = 17500>>\
<<elseif $order_3 == "Jewelry order">>\
<<set $order_3_desc = "The local jewelry store is in need of supplies and is willing to pay a decent amount. However, their offer is far below the price they’d pay to real jewelers. ''2 Jewelry Shipments''. Reward: 46000$.">>
<<pickup $order_3_inv "Jewelry Shipment" 2>>\
<<set $order_3_reward = 46000>>\
<</if>>
<</silently>>\
<</widget>>\<<silently>>\
<<if $orders_reset == 0>>\
<<reset_orders>>\
<<set $orders_reset += 7>>\
<<set_order_1>>\
<<set_order_2>>\
<<set_order_3>>\
<</if>>\
<</silently>>\
<center>Days till the new orders: $orders_reset.
\
$order_1_desc
<<turn_in_order_1>>\
$order_2_desc
<<turn_in_order_2>>\
$order_3_desc
<<turn_in_order_3>>\
<<message "Your cargo:">>
<<inv $warehouse_inv inspect all>>
<</message>></center>\<style>
body.outskirts::before {
content: '';
background-image: url("img/background/outskirts/landingstrip.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
A cracked asphalt strip hidden beyond the low grounds, lit by makeshift floodlights. Rusty hangars, fuel drums, and a few armed men keeping watch. No control tower, no regulations - just a place where cargo lands fast and disappears even faster.
<<if $p_warehouse > 0>>\
<<include "Orders System">>\
<<else>>\
<span class="not_available"> You don't even have a warehouse. Get one, then you'll be ready for business.</span>\
<</if>>\
<br>
<<out_link>><<link "Go back to main road of outskirts." "Outskirts">>
<<addmins 5>>
<</link>><</out_link>><<silently>>\
<<set _payment = $chemist * $chemist_payment>>\
<<count_lab_production_speed>>\
<</silently>>\
<<button "Upgrade Menu">>\
<<if _upgrade === false || !_upgrade>>\
<<replace "#upgrade">><br> <<labs_upgrade>><</replace>>
<<set _upgrade = true>>\
<<else>>\
<<replace "#upgrade">><</replace>>\
<<set _upgrade = false>>\
<</if>>\
<</button>>\
<span id="upgrade"></span>\
<br>\
<<if $lab_prod_upgrade == 0>>\
A grimy setup with makeshift tools and questionable methods - barely functional but just enough to get the job done.
<style>
body.outskirts::before {
content: '';
background-image: url("img/background/outskirts/lab-t1.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<elseif $lab_prod_upgrade == 1>>\
Okayish lab for someone sketchy as you. Upgraded gear and a proper workspace make for faster, cleaner production. It almost feels professional.
<style>
body.outskirts::before {
content: '';
background-image: url("img/background/outskirts/lab-t2-3.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<elseif $lab_prod_upgrade == 2>>\
Modern lab. Safety equipment and modern tools take your operation to the next level - efficient, reliable, and less sketchy.
<style>
body.outskirts::before {
content: '';
background-image: url("img/background/outskirts/lab-t2-3.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<elseif $lab_prod_upgrade == 3>>\
A sleek underground lab with top-tier equipment and a farm shop up front to keep the heat off.
<style>
body.outskirts::before {
content: '';
background-image: url("img/background/outskirts/lab-t4.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<</if>>\
\
Amount of chemists in your lab: $chemist.
Each chemist are increasing a chem production by $lab_production_mod%. Percentage till the new batch: $lab_prod/100%.
Production speed: $lab_prod_speed%. <<if $lab_production_mod_bt > 1>> It is boosted by 100% from your drugs network. <</if>>
Each chemist demands $chemist_payment​$ a day. Total amount of payments right now: _payment​$.
You're also paying $lab_tax​$ as a property tax.
<<link "Start cooking." "Lab Workbench">>\
<</link>>
<<if $chemist > 0>>\
<<link "Fire one of the chemists." "Player Lab">>\
<<set $staff_payment -= 40>>\
<<set $chemist -= 1>>\
<</link>>
<</if>>\
\
<<if $lab_market == 2>>\
<br>\
Your workers are buying agricultural produce every morning at the cost of $80 per unit.
<<link "Stop it." "Player Lab">>\
<<set $lab_market = 1>>\
<</link>>\
<<elseif $lab_market == 1>>\
<br>\
You can tell your workers to start buying agricultural produce every morning from local market at the cost of $80 per unit.
<<link "Tell em." "Player Lab">>\
<<set $lab_market = 2>>\
<</link>>\
<</if>>\
\
<<if $p_lab_nc_prod == true>>\
<br>\
Percentage of produce going to $nc_name: $nc_lab_percentage%. <<change_lab_percentage>>
Amount of drugs daily for $nc_name: $nc_lab_prod pcs.
<</if>>\
\
<<if $nc_backrooms_deals == true && $lab_prod_drugs == true && $p_lab_nc_prod == false>>\
<br>\
<<link 'Create a drugs network between your lab and "$nc_name"' "Player Lab">>
<<set $p_lab_nc_prod = true>>\
<</link>>\
<<elseif $nc_backrooms_deals == true && $lab_prod_drugs == false && $p_lab_nc_prod == false>>\
<br>\
<span class="not_available"> You could set up a drugs network between your lab and your nightclub if you had a drugs production equipment. </span>
<<elseif $p_lab_nc_prod == true>>\
<<link "Cease all deliveries to the nightclub" "Player Lab">>\
<<set $p_lab_nc_prod = false>>\
<</link>>\
<</if>>\
\
<br>
<<out_link>><<link "Get back to home" "Home">>
<<addmins 30>>
<</link>><</out_link>>
<<out_link>><<link "Get back to outskirts" "Outskirts">>
<<addmins 15>>\
<</link>><</out_link>><<inv $p_craft use drop inspect all>>
<center><span id="result"></span></center>
<<nobr>>
<div class="crafting_table">
<div class="craft1"><<drugs_craft>></div>
<div class="craft2">Chems A x2</div>
<div class="craft3">Chems B</div>
<div class="craft4">Paper</div>
<div class="craft5"><<steroids_craft>></div>
<div class="craft6">Chems B x2</div>
<div class="craft7">Organic Mats</div>
<div class="craft8">Encapsulation Mats</div>
<div class="craft9"><<aphrodisiac_craft>></div>
<div class="craft10">Chems A</div>
<div class="craft11">Organic Mats x2</div>
<div class="craft12">Encapsulation Mats</div>
<div class="craft13"><<moonshine_craft>></div>
<div class="craft14">Organic Materials</div>
<div class="craft15">Agricultural Products</div>
<div class="craft16">Agricultural Products</div>
<div class="craft17"><<encapsulation_craft>></div>
<div class="craft18">Agricultural Products</div>
<div class="craft19">Agricultural Products</div>
<div class="craft20"></div>
</div>
<</nobr>>
<center>More chemists - quicker process.
<<link "Lights off." "Player Lab">><</link>>
</center>\<style>
body.center::before {
content: '';
background-image: url("img/background/center/bank.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Bank "The Bank" - the only bank in the city. Such an honorable title comes with its responsibilities, and it's evident that the management knows it. Cameras are installed all over this place, metal detectors are placed in all "staff" entry areas, and there’s more than one security guard in the lobby.
As for its services: there's a 20% commission rate. Your reputation and solvency will open up new loan opportunities. Note that 5% of any loan is deducted from your paycheck every day.
<<bank_loan_1>>\
<<bank_loan_2>>\
<<bank_loan_3>>\
<<bank_loan_4>>\
<br>
<<out_link>><<link "Get back to the main street of City Center" "City Center">>
<<addmins 15>>
<</link>><</out_link>><<widget "bank_loan_1">>\
<<if $bank_credit_1 == 0>>\
<<link "Take a 1000$ as a credit." "City Bank">>\
<<money `1000`>>\
<<set $bank_credit_1 = 1200>>\
<</link>>\
<<elseif $bank_credit_1 > 0 && $money >= $bank_credit_1>>\
<<link "Pay your loan - $bank_credit_1​$" "City Bank">>\
<<money `-$bank_credit_1`>>\
<<set $bank_credit_1 = 0>>\
<<set $bank_credit_1_paid = true>>\
<</link>>\
<<elseif $bank_credit_1 > 0 && $money < $bank_credit_1>>\
<span class="not_available"> You can't pay your loan. You need $bank_credit_1​$.</span>\
<</if>>\
<</widget>>\
<<widget "bank_loan_2">>\
<<if $bank_credit_2 == 0 && $bank_credit_1_paid == true && $reputation >= 1000>>\
<br>\
<<link "Take a 5000$ as a credit." "City Bank">>\
<<money `5000`>>\
<<set $bank_credit_2 = 6000>>\
<</link>>\
<<elseif $bank_credit_2 == 0 && $bank_credit_1_paid == true && $reputation < 1000>>\
<br>\
<span class="not_available"> You need a better reputation for a bigger loan. </span>\
<<elseif $bank_credit_2 > 0 && $money >= $bank_credit_2>>\
<br>\
<<link "Pay your loan - $bank_credit_2​$" "City Bank">>\
<<money `-$bank_credit_2`>>\
<<set $bank_credit_2 = 0>>\
<<set $bank_credit_2_paid = true>>\
<</link>>\
<<elseif $bank_credit_2 > 0 && $money < $bank_credit_2>>\
<br>\
<span class="not_available"> You can't pay your loan. You need $bank_credit_2​$.</span>\
<</if>>\
<</widget>>\
<<widget "bank_loan_3">>\
<<if $bank_credit_3 == 0 && $bank_credit_2_paid == true && $reputation >= 5000>>\
<br>\
<<link "Take a 16000$ as a credit." "City Bank">>\
<<money `16000`>>\
<<set $bank_credit_3 = 19200>>\
<</link>>\
<<elseif $bank_credit_3 == 0 && $bank_credit_2_paid == true && $reputation < 5000>>\
<br>\
<span class="not_available"> You need a better reputation for an even bigger loan. </span>\
<<elseif $bank_credit_3 > 0 && $money >= $bank_credit_3>>\
<br>\
<<link "Pay your loan - $bank_credit_3​$" "City Bank">>\
<<money `-$bank_credit_3`>>\
<<set $bank_credit_3 = 0>>\
<<set $bank_credit_3_paid = true>>\
<</link>>\
<<elseif $bank_credit_3 > 0 && $money < $bank_credit_3>>\
<br>\
<span class="not_available"> You can't pay your loan. You need $bank_credit_3​$.</span>\
<</if>>\
<</widget>>\
<<widget "bank_loan_4">>\
<<if $bank_credit_4 == 0 && $bank_credit_3_paid == true && $reputation >= 10000>>\
<br>\
<<link "Take a 30000$ as a credit." "City Bank">>\
<<money `30000`>>\
<<set $bank_credit_4 = 36000>>\
<</link>>\
<<elseif $bank_credit_4 == 0 && $bank_credit_3_paid == true && $reputation < 10000>>\
<br>\
<span class="not_available"> You need a better reputation for a biggest loan. </span>\
<<elseif $bank_credit_4 > 0 && $money >= $bank_credit_4>>\
<br>\
<<link "Pay your loan - $bank_credit_4​$" "City Bank">>\
<<money `-$bank_credit_4`>>\
<<set $bank_credit_4 = 0>>\
<<set $bank_credit_4_paid = true>>\
<</link>>\
<<elseif $bank_credit_4 > 0 && $money < $bank_credit_4>>\
<br>\
<span class="not_available"> You can't pay your loan. You need $bank_credit_4​$.</span>\
<</if>>\
<</widget>>\<style>
body.center::before {
content: '';
background-image: url("img/background/center/park.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Neatly trimmed hedges, spotless paths, and just enough fountains to feel expensive. The air is thick with overpriced coffee and self-importance as suits stroll past, pretending to enjoy nature. Even the grass looks like it pays rent here.
<span id="park"></span>\
<<action_link>><span class="action_link"><<link "Go meet someone." "Park Meeting">>\
<<addmins 30>>\
<<observer_progress>>\
<</link>></span><</action_link>>\
<<if $p_inv.count("Drugs", 20)>>\
<br>\
<<cun_link>><<link "Start selling drugs in the park.">>\
<<roll>>\
<<if _random > 1>>\
<<set $random_amount = random(3, 20)>>\
<<set _cun_bonus = $cun * 3>>
<<seller_progress>>\
<<set $reputation += 25>>\
<<set $got_money = (4 + _cun_bonus) * $random_amount>>\
<<money `$got_money`>>\
<<addhours 1>>\
<<drop $p_inv "Drugs" $random_amount>>\
<<run Engine.show()>>\
<<replace "#park">> You've sold $random_amount pieces of drugs and got $got_money​$.<br><</replace>>\
<<else>>\
<<goto "Central Park Caught">>\
<</if>>\
<</link>><</cun_link>> But beware, people in here are more... "normie" than usual in this city, and they'll not gonna play any games with you in case if you get caught. Police station is nearby. On a "bright" side, its easier to push a bigger price for illegal stuff in here.\
<<else>>\
<span class="not_available"><br> You could try selling a drugs in the park if you'd atleats 20pcs on you. But beware, people in here are more... "normie" than usual in this city, and they'll not gonna play any games with you in case if you get caught. Police station is nearby. On a "bright" side, its easier to push a bigger price for illegal stuff in here. </span>\
<</if>>\
<br>
<<out_link>><<link "Get back to the main street of City Center" "City Center">>
<<addmins 15>>
<</link>><</out_link>><style>
body.center::before {
content: '';
background-image: url("img/background/center/park.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<set _gender_roll = random(0, 10)>>\
<<if _gender_roll > 3>>\
<<createnpc_center>>\
<<depravity_talk>>\
You've met _name _surname, _job.
<<if $p_traits.includes("observer")>>\
You're pretty sure that he's trait is... _trait.
<<observer_combat_temp>>\
<<if $p_traits.includes("observer_2")>>\
<<observer_driving_temp>>\
<<observer_cun_temp>>\
<</if>>\
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly what his abilities are.</span>
<</if>>\
<br>\
Add to contacts?
<<link "Yes" "Central Park">>
<<addnpc>>
<</link>>
<<link "No" "Central Park">><</link>>
<<else>>\
<<createnpc_fem_center>>\
<<depravity_talk>>\
You've met _name _surname, she's a _job.
You can rate her at _rate out of 10.
<<moral_desc_temp>>
<<if $p_traits.includes("observer")>>\
She's <<beauty_desc_temp>> her clothes are <<clothes_desc_temp>> and body is <<body_desc_temp>>
<<depravity_desc_temp>>
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly why you rate her like that...</span>
<</if>>\
<br>\
Add to contacts?
<<link "Yes" "Central Park">>
<<addnpc_fem>>\
<</link>>
<<link "No" "Central Park">><</link>>
<</if>>\<<widget "job_check">>\
/* Taxmen */\
<<if _v.job == "Taxmen" && _v.friendship >= 50 && $taxmen_friend == false>>\
<<linkreplace "Ask for assistance with taxes.">>\
<<set $taxmen_friend = true>>\
<<removeNpc>>\
<<run Engine.show()>>\
<<script>>
Dialog.close();
<</script>>
<<replace "#contacts">>He'll gonna help you with taxes, but for that both of you have to stop contacting each other on a friendly basis to prevent any suspicions.<br><</replace>>\
<</linkreplace>>
<</if>>\
/* Chemist */\
<<if _v.job == "Chemist" && _v.friendship >= 50 && $p_lab == true>>\
<<linkreplace "Offer a job as a chemist in your lab for 40$/day.">>\
<<set $chemist += 1>>\
<<removeNpc>>\
<<run Engine.show()>>\
<<script>>
Dialog.close();
<</script>>
<<replace "#contacts">>You've got a new chemist.<br><</replace>>\
<</linkreplace>>
<</if>>\
<<if $active_npc.job == "Chemist" && $active_npc.friendship >= 50 && $active_npc.chemist_trade == true>>\
<<linkreplace "Ask him to fetch you a few chems from under the counter.">>\
<<set _chem = $chemist_offer.array.random()>>\
<<set _amount = random(1, 10)>>\
<<set _chems_price = random(80, 250) * _amount>>\
He offers you a _amount _chem for _chems_price​$.
<<if $money >= _chems_price>>\
<<link "Accept trade." "Contacts">>\
<<pickup $p_craft _chem _amount>>\
<<money `-_chems_price`>>\
<<set $active_npc.chemist_trade = false>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<<else>>\
<span class="not_available"> You don't have enough money. </span>
<</if>>\
<</linkreplace>>
<</if>>\
/* Hardware Engineer */\
<<if $active_npc.job == "Hardware Engineer" && $active_npc.friendship >= 50 && $active_npc.engineer_trade == true>>\
<<linkreplace "Ask him to fetch you a few electrical components.">>\
<<set _amount = random(2, 8)>>\
<<set _components_price = 157 * _amount>>\
He offers you a _amount components for _components_price​$.
<<if $money >= _components_price>>\
<<link "Accept the bargain." "Contacts">>\
<<pickup $p_inv "Electrical Components" _amount>>\
<<money `-_components_price`>>\
<<set $active_npc.engineer_trade = false>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<<else>>\
<span class="not_available"> You don't have enough money. </span>\
<</if>>\
<</linkreplace>>
<</if>>\
/* Farmer */ \
<<if $active_npc.job == "Farmer" && $active_npc.friendship >= 50 && $active_npc.farmer_trade == true>>\
<<linkreplace "Ask him to sell you a few products from his farm.">>\
<<set _amount = random(2, 5)>>\
<<set _agricultural_price = 104 * _amount>>\
He offers you a _amount bags of various agricultural products for _agricultural_price​$.
<<if $money >= _agricultural_price>>\
<<link "Accept trade." "Contacts">>\
<<pickup $p_craft "Agricultural Products" _amount>>\
<<money `-_agricultural_price`>>\
<<set $active_npc.farmer_trade = false>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<<else>>\
<span class="not_available"> You don't have enough money. </span>
<</if>>\
<</linkreplace>>
<</if>>\
<<if $active_npc.job == "Farmer" && $active_npc.friendship >= 50 && $moonshine_trailer == true && $moonshine_farmers < $moonshine_farmers_max>>\
<<link "Hire him as a moonshiner for 100$/day.">>\
<<set $moonshine_farmers += 1>>\
<<removeNpc>>\
<<run Engine.show()>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<</if>>\
/* Banker */\
<<if $active_npc.job == "Banker" && $active_npc.friendship >= 50 && $active_npc.banker_intel == true>>\
<<linkreplace "Try to buy intel about cash collector's route from him.">>\
<<set _intel_info = random(100, 1500)>>\
He's willing to sell you intel... for _intel_info​$.
<<if $money >= _intel_info>>\
<<link "Accept his offer." "Contacts">>\
<<money `-_intel_info`>>\
<<set $active_npc.banker_intel = false>>\
<<set $banker_intel = true>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<<else>>\
<span class="not_available"> You don't have enough money. </span>\
<</if>>\
<</linkreplace>>
<<elseif $active_npc.job == "Banker" && $active_npc.friendship >= 50 && $active_npc.banker_intel == true && $banker_intel == true>>\
<span class="not_available"> You already has unused intel from another banker. </span>
<</if>>\
<</widget>>\
<<widget "job_check_fem">>\
<<if $active_npc.job == "Chemist" && $active_npc.friendship >= 50 && $active_npc.chemist_trade == true>>
<<linkreplace "Ask her to fetch you a few chems from under the counter.">>
<<set _chem = $chemist_offer.array.random()>>\
<<set _amount = random(1, 10)>>\
<<set _chems_price = 70 * _amount>>\
She offers you a _amount _chem for _chems_price​$.
<<if $money >= _chems_price>>\
<<link "Accept trade." "Contacts">>\
<<pickup $p_craft _chem _amount>>\
<<money `-_chems_price`>>\
<<set $active_npc.chemist_trade = false>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<<else>>\
<span class="not_available"> You don't have enough money. </span>\
<</if>>\
<</linkreplace>>\
<</if>>\
<<if $active_npc.job == "Chemist" && $active_npc.friendship >= 50 && $p_lab == true>>\
<<link "Offer a job as a chemist in your lab for 40$/day.">>\
<<set $chemist += 1>>\
<<set $lab_prod_speed += 15>>\
<<removeNpc_fem>>\
<<run Engine.show()>>\
<<script>>
Dialog.close();
<</script>>
<<replace "#contacts">>You've got a new chemist.<br><</replace>>\
<</link>>
<</if>>\
/* Banker */\
<<if $active_npc.job == "Banker" && $active_npc.friendship >= 50 && $active_npc.banker_intel == true && $banker_intel == false>>\
<<linkreplace "Try to buy intel about cash collector's route from her.">>\
<<set _intel_info = random(100, 1500)>>\
She's willing to sell you intel... for _intel_info​$.
<<if $money >= _intel_info>>\
<<link "Accept her offer." "Contacts">>\
<<money `-_intel_info`>>\
<<set $active_npc.banker_intel = false>>\
<<set $banker_intel = true>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<<else>>\
<span class="not_available"> You don't have enough money. </span>
<</if>>\
<</linkreplace>>
<<elseif $active_npc.job == "Banker" && $active_npc.friendship >= 50 && $active_npc.banker_intel == true && $banker_intel == true>>\
<span class="not_available"> You already has unused intel from another banker. </span>
<</if>>\
<</widget>>\
<<widget "trait_check">>\
<<if $active_npc.trait == "Thug" && $active_npc.friendship >= 50>>\
<<link "Offer him to join your gang.">>\
<<addaccomplice_thug>>\
<<set $reputation += 50>>\
<<removeNpc>>\
<<run Engine.show()>>\
<<script>>
Dialog.close();
<</script>>
<<if $p_boss == false>>\
<<replace "#contacts">>You don't have a gang... yet. But he gladly accepts your invitation to join your future crew and will wait for your call.<br><</replace>>\
<<else>>\
<<replace "#contacts">>He accepts your offer.<br><</replace>>\
<</if>>\
<</link>>
<</if>>\
\
<<if $active_npc.trait == "Thief" && $active_npc.friendship >= 50>>\
<<link "Offer him to join your gang.">>
<<addaccomplice_thief>>\
<<set $reputation += 50>>\
<<removeNpc>>\
<<run Engine.show()>>\
<<script>>
Dialog.close();
<</script>>
<<if $p_boss == false>>\
<<replace "#contacts">>You don't have a gang... yet. But he gladly accepts your invitation to join your future crew and will wait for your call.<br><</replace>>\
<<else>>\
<<replace "#contacts">>He accepts your offer.<br><</replace>>\
<</if>>\
<</link>>
<</if>>\
<</widget>>\
<<widget "bikersLeaderPhrases">>\
<<if $dm_cap === 0>>\
<<if $outskirts_state == false>>\
<span class="volkov">- "Making money?"</span>\
<<else>>\
<span class="volkov">- "Making money, boss?"</span>\
<</if>>\
<<elseif $dm_cap >= 3000 && $dm_cap < 9000>>\
<span class="volkov">- "Not bad. Need much bigger numbers."</span>\
<<elseif $dm_cap >= 9000 && $dm_cap < 15000>>\
<span class="volkov">- "Nice. More?"</span>\
<<elseif $dm_cap >= 15000 && $dm_cap < 30000>>\
<span class="volkov">- "Solid. Money."</span>\
<<elseif $dm_cap >= 30000 && $dm_cap < 90000>>\
<span class="volkov">- "Big numbers, good sum."</span> \
<<elseif $dm_cap >= 90000 && $dm_cap < 150000>>\
<span class="volkov">- "Dohuya money, yes."</span>\
<<elseif $dm_cap >= 150000 && $dm_cap_too_much == false>>\
<span class="volkov">- "Prekrasno. Great money. Come tomorrow, i'm hard, gonna find someone."</span>\
<br>\
<<charm_link>><<link "Offer your help." "Too Much Muny O">>\
<<addhours 1>>\
<<depravity `2`>>\
<<set $dm_cap_too_much = true>>\
<</link>><</charm_link>>\
<<elseif $dm_cap >= 150000 && $dm_cap_too_much == true>>\
<<if $outskirts_state == false>>\
<span class="volkov">- "Uh... Good. Thanks."</span>\
<<else>>\
<span class="volkov">- "Uh... Good. Thanks. You're the best, boss."</span>\
<</if>>\
<</if>>
<</widget>>\
<<widget "bikersLeaderPhrases_NC">>\
<<if $dm_cap === 0>>\
<<if $outskirts_state == false>>\
<span class="volkov">- "Making money?"</span>\
<<else>>\
<span class="volkov">- "Making money, boss?"</span>\
<</if>>\
<<elseif $dm_cap >= 3000 && $dm_cap < 9000>>\
<span class="volkov">- "Not bad. Need much bigger numbers."</span>\
<<elseif $dm_cap >= 9000 && $dm_cap < 15000>>\
<span class="volkov">- "Nice. More?"</span>\
<<elseif $dm_cap >= 15000 && $dm_cap < 30000>>\
<span class="volkov">- "Solid. Money."</span>\
<<elseif $dm_cap >= 30000 && $dm_cap < 90000>>\
<span class="volkov">- "Big numbers, good sum."</span> \
<<elseif $dm_cap >= 90000 && $dm_cap < 150000>>\
<span class="volkov">- "Dohuya money, yes."</span>\
<<elseif $dm_cap >= 150000 && $dm_cap_too_much == false>>\
<span class="volkov">- "Prekrasno. Great money. Come tomorrow, i'm hard, gonna find someone."</span>\
<br>\
<<charm_link>><<link "Offer your help." "Too Much Muny NC">>\
<<addhours 1>>\
<<depravity `2`>>\
<<set $dm_cap_too_much = true>>\
<</link>><</charm_link>>\
<<elseif $dm_cap >= 150000 && $dm_cap_too_much == true>>\
<<if $outskirts_state == false>>\
<span class="volkov">- "Uh... Good. Thanks."</span>\
<<else>>\
<span class="volkov">- "Uh... Good. Thanks. You're the best, boss."</span>\
<</if>>\
<</if>>
<</widget>>\
<<widget "friendship_check">>\
<<if _v.friendship >= 50>>\
Friend.
<<elseif _v.friendship >= 90>>\
"Close" friend.
<</if>>\
<</widget>>\
<<widget "bar_check">>\
<<if _v.bar == true && $money >= 200>>\
<<button "Hit a bar together - 200$.">>\
<<set _v.friendship += 2 * $charm>>\
<<observer_progress>>\
<<set _v.bar = false>>\
<<money `-200`>>\
<<notify 4s>>You spent some time together.<</notify>>\
<<addhours 1>>\
<<script>>
Dialog.close();
<</script>>
<<goto "Contacts">>\
<</button>>\
<</if>>\
<</widget>>\
<<widget "talk_check">>
<<if $active_npc.talk == true>>\
<<button "Invite to hangout">>\
<<set $active_npc.friendship += $charm>>\
<<set $active_npc.talk = false>>\
<<observer_progress>>\
<<addhours 1>>\
<<script>>
Dialog.close();
<</script>>
<<goto "NPC Talking">>\
<</button>>\
<</if>>\
<</widget>>\
<<widget "talk_check_fem">>
<<if $active_npc.talk == true>>\
<<button "Invite to hangout">>\
<<set $active_npc.friendship += 2 * $charm>>\
<<set $active_npc.talk = false>>\
<<addhours 1>>\
<<script>>
Dialog.close();
<</script>>
<<goto "NPC Talking Fem">>\
<</button>>
<</if>>\
<</widget>>\
<<widget "temper_check">>\
<<if _v.temper > 80>>\
Very confident
<<elseif _v.temper > 40>>\
Confident
<<else>>\
Not-confident
<</if>>\
<</widget>>\
<<widget "observer_combat_temp">>\
<<switch _combat>>\
<<case 1 2>>\
Poor combat abilities.
<<case 3 4>>\
Mediocre combat abilities.
<<case 5 6>>\
Good combat abilities.
<<case 7 8>>\
Obvious fighter.
<<case 9 10>>
Superior combat abilities.
<</switch>>\
<</widget>>\
<<widget "observer_combat">>\
<<switch $active_npc.combat>>\
<<case 1 2>>\
Poor combat abilities.
<<case 3 4>>\
Mediocre combat abilities.
<<case 5 6>>\
Good combat abilities.
<<case 7 8>>\
Obvious fighter.
<<case 9 10 11 12 13 14 15>>
Superior combat abilities.
<</switch>>\
<</widget>>\
<<widget "observer_driving_temp">>\
<<switch _driving>>\
<<case 0 1 2>>\
Doesn't know how to drive a car.
<<case 3 4 5>>\
He’s a mediocre driver and will cause problems on the road if he drives too fast.
<<case 6 7 8>>\
Good driver. He's able to keep it calm in any situation.
<<case 9 10>>\
Great driver. You can rely on him on the road.
<</switch>>\
<</widget>>\
<<widget "observer_driving">>\
<<switch $active_npc.driving>>\
<<case 0 1 2>>\
Doesn't know how to drive a car.
<<case 3 4 5>>\
He’s a mediocre driver and will cause problems on the road if he drives too fast.
<<case 6 7 8>>\
Good driver. He's able to keep it calm in any situation.
<<case 9 10>>\
Great driver. You can rely on him on the road.
<</switch>>\
<</widget>>\
<<widget "observer_cun_temp">>\
<<switch _cun>>\
<<case 0 1 2>>\
Awkward and clumsy person. What a klutz.
<<case 3 4 5>>\
Not a slick person.
<<case 6 7 8>>\
A cunning and agile person.
<<case 9 10 11 12 13 14 15 16 17 18 19 20>>\
You can tell that this person is very finesse - hands like a magician, moves like a shadow.
<</switch>>\
<</widget>>\
<<widget "observer_cun">>\
<<switch $active_npc.cun>>\
<<case 0 1 2>>\
Awkward and clumsy person. What a klutz.
<<case 3 4 5>>\
Not a slick person.
<<case 6 7 8>>\
A cunning and agile person.
<<case 9 10 11 12 13 14 15 16 17 18 19 20>>\
You can tell that this person is very finesse - hands like a magician, moves like a shadow.
<</switch>>\
<</widget>>\
<<widget "set_fem_rate">>\
<<set $active_npc.rate = ($active_npc.beauty + $active_npc.body + $active_npc.clothes)>>\
<</widget>>\
<<widget "set_fem_rate_temp">>\
<<set _v.rate = (_v.beauty + _v.body + _v.clothes)>>\
<</widget>>\
<<widget "beauty_desc_temp">>\
<<switch _beauty>>\
<<case 0>>\
looking harshly and has a poor appearance,\
<<case 1>>\
looking quite ordinary,\
<<case 2>>\
generally good and healthy looking person,\
<<case 3>>\
really gorgeous, damn,\
<</switch>>\
<</widget>>\
<<widget "beauty_desc">>\
<<switch $active_npc.beauty>>\
<<case 0>>\
looking harshly and has a poor appearance,\
<<case 1>>\
looking quite ordinary,\
<<case 2>>\
generally good and healthy looking person,\
<<case 3>>\
really gorgeous, damn,\
<</switch>>\
<</widget>>\
<<widget "clothes_desc_temp">>\
<<switch _clothes>>\
<<case 0>>\
worn-out and mismatched\
<<case 1>>\
simple, even unremarkable\
<<case 2>>\
neatly dressed with some style\
<<case 3>>\
impeccable, model-like style\
<</switch>>\
<</widget>>\
<<widget "clothes_desc">>\
<<switch $active_npc.clothes>>\
<<case 0>>\
worn-out with mismatched pieces\
<<case 1>>\
simple, even unremarkable\
<<case 2>>\
neatly dressed with some style\
<<case 3>>\
impeccable, model-like style\
<</switch>>\
<</widget>>\
<<widget "body_desc_temp">>\
<<switch _body>>\
<<case 0>>\
unhealthy and frail-looking.\
<<case 1>>\
average, slightly out of shape.\
<<case 2>>\
fit and toned, healthy appearance.\
<<case 3>>\
perfectly shaped, athletic and stunning.\
<</switch>>\
<</widget>>\
<<widget "body_desc">>\
<<switch $active_npc.body>>\
<<case 0>>\
unhealthy and frail-looking.\
<<case 1>>\
average, slightly out of shape.\
<<case 2>>\
fit and toned, healthy appearance.\
<<case 3>>\
perfectly shaped, athletic and stunning.\
<</switch>>\
<</widget>>\
<<widget "depravity_desc">>\
<<switch $active_npc.depravity>>\
<<case 20 21 22 23 24 25 26 27 28 29 30>>\
Her stance, her gaze - she's definitely not some innocent girl.\
<<case 11 12 13 14 15 16 17 18 19>>\
She appears quite... liberated.\
<<case 0 1 2 3 4 5 6 7 8 9 10>>\
You can easily tell that she doesn't have any dirty thoughts in mind.\
<</switch>>\
<</widget>>\
<<widget "depravity_desc_temp">>\
<<switch _depravity>>\
<<case 20 21 22 23 24 25 26 27 28 29 30>>\
Her stance, her gaze - she's definitely not some innocent girl.\
<<case 11 12 13 14 15 16 17 18 19>>\
She appears quite... liberated.\
<<case 0 1 2 3 4 5 6 7 8 9 10>>\
You can easily tell that she doesn't have any dirty thoughts in mind.\
<</switch>>\
<</widget>>\
<<widget "moral_desc">>\
<<switch $active_npc.moral>>\
<<case 0 1 2 3 4>>\
She looks like a decent person. It'll be hard to convince her to work for you.\
<<case 5 6 7 8 9 10>>\
She seems like a rather amoral person who would do anything to achieve her goals. She'll be easy to hire.\
<</switch>>\
<</widget>>\
<<widget "moral_desc_temp">>\
<<switch _moral>>\
<<case 0 1 2 3 4>>\
She looks like a decent person.\
<<case 5 6 7 8 9 10>>\
She seems like a rather amoral person.\
<</switch>>\
<</widget>>\
<<widget "friendship_decisions_fem">>\
<<if $active_npc.moral > 4 && $active_npc.friendship >= 0 && $p_boss == true && $active_npc.asked_today == true>>\
<<set _payment_reason = $payment_reasons.random()>>\
<<set _payment_amount_slut = random(8000, 20000)>>\
<<linkreplace "Try to convince her to work as an escort for your $band_type.">>\
<<set $active_npc.asked_today = false>>\
She asks you to pay her _payment_reason first, _payment_amount_slut​$ exactly; then she'll consider it.
And you'll consider whether to go back to her the next day, only to hear another excuse to get money from you... for reasons...
<<if $money >= _payment_amount_slut>>\
<<link "Accept." "Contacts">>\
<<money `-_payment_amount_slut`>>\
<<addaccomplice_slut>>\
<<removeNpc_fem>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<<else>>\
<span class="not_available"> You don't have enough money even for this lame proposition.</span>\
<</if>>\
<</linkreplace>>\
<</if>>\
<</widget>>\
<<widget "clothes_upgrade">>\
<<if $active_npc.clothes == 0 && $money >= 500>>\
<<link "Buy her some okeish clothes - 500$.">>\
<<set $active_npc.clothes = 1>>\
<<money `-500`>>\
<<script>>
Dialog.close();
<</script>>
<</link>>\
<br>\
<</if>>\
<<if $active_npc.clothes == 0 && $money >= 2500>>\
<<link "Buy her some fine clothes - 2500$.">>\
<<set $active_npc.clothes = 2>>\
<<money `-2500`>>\
<<script>>
Dialog.close();
<</script>>
<</link>>\
<br>\
<</if>>\
<<if $active_npc.clothes == 0 && $money >= 5000>>\
<<link "Buy her some expensive clothes - 5000$.">>\
<<set $active_npc.clothes = 3>>\
<<money `-5000`>>\
<<script>>
Dialog.close();
<</script>>
<</link>>\
<</if>>\
\
<<if $active_npc.clothes == 1 && $money >= 2000>>\
<<link "Buy her some fine clothes - 2000$.">>\
<<set $active_npc.clothes = 2>>\
<<money `-2500`>>\
<<script>>
Dialog.close();
<</script>>
<</link>>\
<br>\
<</if>>\
<<if $active_npc.clothes == 1 && $money >= 4500>>\
<<link "Buy her some expensive clothes - 4500$.">>\
<<set $active_npc.clothes = 3>>\
<<money `-4500`>>\
<<script>>
Dialog.close();
<</script>>
<</link>>\
<</if>>\
\
<<if $active_npc.clothes == 2 && $money >= 3000>>\
<<link "Buy her some expensive clothes - 3000$.">>\
<<set $active_npc.clothes = 3>>\
<<money `-3000`>>\
<<script>>
Dialog.close();
<</script>>
<</link>>\
<</if>>\
<</widget>>\
<<widget "body_upgrade">>\
<<if $active_npc.body_upgrade == false && $active_npc.body != 3 && $money >= 5000>>\\
<br>\
<<link "Hire her a fitness trainer for 5000$.">>
<<set $active_npc.body += 1>>\
<<set $active_npc.body_upgrade = true>>\
<<money `-5000`>>\
<<script>>
Dialog.close();
<</script>>
<</link>>\
<</if>>\
<</widget>>\
<<widget "depravity_talk">>\
<<if _depravity <= 15 && _gender == 0>>\
<<set _npc_talk = $male_npc_low_depravity.random()>>\
<span class="male_text"> - _npc_talk </span>
<<elseif _depravity >= 15 && _gender == 0>>\
<<set _npc_talk = $male_npc_high_depravity.random()>>\
<span class="male_text"> - _npc_talk </span>
<<elseif _depravity <= 15 && _gender == 1>>\
<<set _npc_talk = $fem_npc_low_depravity.random()>>\
<span class="fem_text"> - _npc_talk </span>
<<elseif _depravity >= 15 && _gender == 1>>\
<<set _npc_talk = $fem_npc_high_depravity.random()>>\
<span class="fem_text"> - _npc_talk </span>
<</if>>\
<</widget>>\<style>
body.center::before {
content: '';
background-image: url("img/background/center/casino.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
The Crown Casino. You might want to consider owning your own casino - who knows how much money they launder each day?
As a place for entertainment, it’s also impressive. The owner clearly invested heavily, outfitting the place with one-armed bandits, numerous tables for roulette, poker, and blackjack. There’s also a constant presence of security and waitstaff. It’s a cool location. Luckily, you’re not a gambling addict and prefer not to try to cheat the casino, knowing full well that the house always wins. Your limit is blackjack.
You need crowns in order to play in casino.
<<if $crowns >= 10>>\
<<action_link>><span class="action_link"><<link "Blackjack." "Blackjack Start">>\
<</link>></span><</action_link>>\
<<else>>\
<span class="not_available"> You need atleast 10 crowns in order to play a blackjack. </span>\
<</if>>
<<action_link>><span class="action_link"><<link "Talk with manager about any work leads." "Casino Escort Talk">>\
<</link>></span><</action_link>>\
<br>\
<<exchange_booth>>\
<br>
<<out_link>><<link "Get back to the main street of City Center" "City Center">>
<<addmins 15>>
<</link>><</out_link>><<widget "exchange_booth">>\
<<trade_link>><<link "Exchange booth.">>\
<<if $exchange_booth == false>>\
<<set $exchange_booth = true>>\
<<run Engine.show()>>\
<<elseif $exchange_booth == true>>\
<<set $exchange_booth = false>>\
<<run Engine.show()>>\
<</if>>\
<</link>><</trade_link>>\
<<if $exchange_booth == true>>\
<br>\
Rate is 1 to 1.
Amount of crowns on you: $crowns.
<<if $crowns > 0>> You have $crowns crowns. <br>\
<</if>>\
<<if $money >= 10>>\
<<button "Buy 10 crowns.">>\
<<money `-10`>>\
<<set $crowns += 10>>\
<<run Engine.show()>>\
<</button>>\
<<else>>\
<span class="not_available"> You need at very least 10$ to buy a smallest sum of crowns.</span>\
<</if>>\
<<if $money >= 50>>\
<<button "Buy 50 crowns.">>\
<<money `-50`>>\
<<set $crowns += 50>>\
<<run Engine.show()>>\
<</button>>\
<</if>>\
<<if $money >= 100>>\
<<button "Buy 100 crowns.">>\
<<money `-100`>>\
<<set $crowns += 100>>\
<<run Engine.show()>>\
<</button>>\
<</if>>\
<<if $money >= 200>>\
<<button "Buy 200 crowns.">>\
<<money `-200`>>\
<<set $crowns += 200>>\
<<run Engine.show()>>\
<</button>>\
<</if>>\
<<if $money >= 500>>\
<<button "Buy 500 crowns.">>\
<<money `-500`>>\
<<set $crowns += 500>>\
<<run Engine.show()>>\
<</button>>\
<</if>>\
<<if $crowns >= 10 && $exchange_cap < $exchange_cap_max>>\
<br>\
<<button "Exchange for 10$.">>\
<<money `10`>>\
<<set $crowns -= 10>>\
<<set $exchange_cap += 10>>\
<<run Engine.show()>>\
<</button>>\
<<elseif $exchange_cap >= $exchange_cap_max>>\
<br>\
"Sorry, but we cannot allow you to exchange any more crowns today. Please, either visit us tomorrow or play more." \
<</if>>\
<<if $crowns >= 50 && $exchange_cap < $exchange_cap_max>>\
<<button "Exchange for 50$.">>\
<<money `50`>>\
<<set $crowns -= 50>>\
<<set $exchange_cap += 50>>\
<<run Engine.show()>>\
<</button>>\
<</if>>\
<<if $crowns >= 100 && $exchange_cap < $exchange_cap_max>>\
<<button "Exchange for 100$.">>\
<<money `100`>>\
<<set $crowns -= 100>>\
<<set $exchange_cap += 100>>\
<<run Engine.show()>>\
<</button>>\
<</if>>\
<<if $crowns >= 200 && $exchange_cap < $exchange_cap_max>>\
<<button "Exchange for 200$.">>\
<<money `200`>>\
<<set $crowns -= 200>>\
<<set $exchange_cap += 200>>\
<<run Engine.show()>>\
<</button>>\
<</if>>\
<<if $crowns >= 500 && $exchange_cap < $exchange_cap_max>>\
<<button "Exchange for 500$.">>\
<<money `500`>>\
<<set $crowns -= 500>>\
<<set $exchange_cap += 500>>\
<<run Engine.show()>>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>\
<<widget "generate_escort_orders">>\
<<silently>>\
<<if $escort_orders_generated == false>>\
<<set $escort_description = ["Dude just wants to hang out.", "Not the freshest man came to win.", "Drunkyard just hit wits end and you're gonna end his wallet.", "Gambler gonna gamble, he's asking for a talisman or mascot for his wins.", "Middle aged man with kinda mid requests from his life. Better for you, i guess.", "Partygoer that already bothered the rest of the girls.", "Handsome, rich, gambling type. Perfect target."]>>\
<<set $escort_order_1 = true>>\
<<set $escort_order_2 = true>>\
<<set $escort_order_3 = true>>\
<<set _roll = random(0, 100)>>\
<<set $escort_orders_generated = true>>\
<<if _roll >= 70>>\
<<set $escort_order_1 = false>>\
<<set $escort_price_1 = random(20, 40) * $charm>>\
<<set $escort_desc_1 = $escort_description.pluck()>>\
<<set $escort_order_2 = false>>\
<<set $escort_price_2 = random(20, 40) * $charm>>\
<<set $escort_desc_2 = $escort_description.pluck()>>\
<<set $escort_order_3 = false>>\
<<set $escort_price_3 = random(20, 40) * $charm>>\
<<set $escort_desc_3 = $escort_description.pluck()>>\
<<elseif _roll >= 40>>\
<<set $escort_order_1 = false>>\
<<set $escort_price_1 = random(20, 40) * $charm>>\
<<set $escort_desc_1 = $escort_description.pluck()>>\
<<set $escort_order_2 = false>>\
<<set $escort_price_2 = random(20, 40) * $charm>>\
<<set $escort_desc_2 = $escort_description.pluck()>>\
<<elseif _roll >= 10>>\
<<set $escort_order_1 = false>>\
<<set $escort_price_1 = random(20, 40) * $charm>>\
<<set $escort_desc_1 = $escort_description.pluck()>>\
<</if>>\
<</if>>\
<</silently>>\
<</widget>>\
<<widget "escort_orders">>\
<<if $escort_order_1 == false>>\
$escort_desc_1. You can easily get $escort_price_1​$ from him.
<<link "Accept this lead.">>\
<<money `$escort_price_1`>>\
<<stam `-1`>>\
<<addhours 1>>\
<<set $escort_order_1 = true>>\
<<goto "Casino Escort">>\
<</link>>\
<br>\
<</if>>\
<<if $escort_order_2 == false>>\
$escort_desc_2. You can easily get $escort_price_2​$ from him.
<<link "Accept this lead.">>\
<<money `$escort_price_2`>>\
<<stam `-1`>>\
<<addhours 1>>\
<<set $escort_order_2 = true>>\
<<goto "Casino Escort">>\
<</link>>\
<br>\
<</if>>\
<<if $escort_order_3 == false>>\
$escort_desc_3. You can easily get $escort_price_3​$ from him.
<<link "Accept this lead.">>\
<<money `$escort_price_3`>>\
<<stam `-1`>>\
<<addhours 1>>\
<<set $escort_order_3 = true>>\
<<goto "Casino Escort">>\
<</link>>\
<br>\
<</if>>\
<<if $escort_order_1 == true && $escort_order_2 == true && $escort_order_3 == true>>\
<span class="not_available"> No available leads.</span>\
<br>\
<</if>>\
<</widget>>\
<<widget "exchange_mafia">>\
<<link "Crowns exchange.">>\
<<if $exchange_mafia == false>>\
<<set $exchange_mafia = true>>\
<<run Engine.show()>>\
<<elseif $exchange_mafia == true>>\
<<set $exchange_mafia = false>>\
<<run Engine.show()>>\
<</if>>\
<</link>>\
<<if $exchange_mafia == true>>\
<br>\
Rate is 1 crown to 2 dirty banknote.
Amount of crowns on you: $crowns.
<<if $crowns >= 10>>\
<br>\
<<button "Exchange 10c for 20$.">>\
<<dirty_money `20`>>\
<<set $crowns -= 10>>\
<<run Engine.show()>>\
<</button>>\
<</if>>\
<<if $crowns >= 50>>\
<<button "Exchange 50c for 100$.">>\
<<dirty_money `100`>>\
<<set $crowns -= 50>>\
<<run Engine.show()>>\
<</button>>\
<</if>>\
<<if $crowns >= 100>>\
<<button "Exchange 100c for 200$.">>\
<<dirty_money `200`>>\
<<set $crowns -= 100>>\
<<run Engine.show()>>\
<</button>>\
<</if>>\
<<if $crowns >= 400>>\
<<button "Exchange 200c for 400$.">>\
<<dirty_money `400`>>\
<<set $crowns -= 200>>\
<<run Engine.show()>>\
<</button>>\
<</if>>\
<<if $crowns >= 500>>\
<<button "Exchange 500c for 1000$.">>\
<<dirty_money `1000`>>\
<<set $crowns -= 500>>\
<<run Engine.show()>>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>\<style>
body.center::before {
content: '';
background-image: url("img/background/cards.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
$deck.length cards remain in the shoe.
crowns in your possession: <<=$crowns>>
Your bet:
<<button "25" "Deal">>
<<set $bet = 25>>
<<set $badbet = true>>
<<run startDeal()>>
<<addmins 5>>
<</button>>\
<<button "50" "Deal">>
<<set $bet = 50>>
<<set $badbet = true>>
<<run startDeal()>>
<<addmins 5>>
<</button>>\
<<button "100" "Deal">>
<<set $bet = 100>>
<<set $badbet = true>>
<<run startDeal()>>
<<addmins 5>>
<</button>>\
<<button "200" "Deal">>
<<set $bet = 200>>
<<set $badbet = true>>
<<run startDeal()>>
<<addmins 5>>
<</button>>\
<<button "500" "Deal">>
<<set $bet = 500>>
<<set $badbet = true>>
<<run startDeal()>>
<<addmins 5>>
<</button>>
<<button "Reshuffle">>
<<goto "Blackjack Start">>
<</button>>
<<button "Stop playing">>
<<goto "Casino">>
<</button>>
/* Deprecated
<<set _bet to Math.ceil($crowns/2)>>Amount to bet: $<<numberbox "$bet" _bet>>
<<button "Deal" "Deal">><<set $badbet to true>><<run startDeal()>><</button>>
*/<style>
body.center::before {
content: '';
background-image: url("img/background/cards.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $badbet>>@@color:red;You don't have enough crowns for this bet!@@
<<button "Bet" "Blackjack">><</button>><<else>>$deck.length cards remain in the shoe.
crowns: <<=$crowns>>
Pot: $<<=$pot>>
Dealer: <<= showHand($dealer, $hideDealer)>><<if !$hideDealer>> [<<= handValue($dealer)>>]<</if>>
You: <<= showHand($player)>> [<<= handValue($player)>>]<<if $result>> $result<<set $result to "">><</if>>
<<if $hideDealer>><<button "Hit" "Deal">><<run playerHit()>><</button>><<button "Stand" "Deal">><<run playerStand()>><</button>><<else>><<button "Bet" "Blackjack">><</button>><</if>><</if>><style>
body.center::before {
content: '';
background-image: url("img/background/cards.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
The dealer has shuffled the cards.
"No double downs, no splits."
Number of decks: $deckCount
<<button "Bet" "Blackjack">><<run buildDeck()>><</button>>
<<button "Stop playing">>
<<goto "Casino">>
<</button>><style>
body.center::before {
content: '';
background-image: url("img/background/center/casino.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if !$p_escort>>\
<<if $charm < 10>>\
Manager looked at you arrogantly and told you that there's no vacant places for casino's staff. \
<br>\
<span class="not_available"> Something tells you that if you were more charming, you could get yourself a place in here. </span>\
<br>\
<<link "Whatever." "Casino">>\
<</link>>\
<<elseif $charm >= 10>>\
Manager told you that there's no vacancies for staff, but you can work as an arm pillow for rich visitors. Literally escort job. On a bright side, you're not obligated to show up everyday for your "working hours". \
<br>\
<<link "Accept">>\
<<set $p_escort = true>>\
<<run Engine.show()>>\
<<replace "#manager">>Great. Welcome aboard. Just visit me any evening you're ready to work. And yes, all clients are mostly evening-type. <br>\<</replace>>\
<</link>>\
<</if>>\
<</if>>\
<<if $p_escort>>\
<span id="manager"></span>\
<<generate_escort_orders>>\
<<linkreplace "Check leads">>\
<<escort_orders>>\
<</linkreplace>>
<br>\
<<out_link>><<link "Get back to hustling" "Casino">>
<</link>><</out_link>>\
<</if>>\<style>
body.center::before {
content: '';
background-image: url("img/background/center/casino.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<set _roll = random(10, 50) + $charm>>\
<<if _roll >= 45>>\
<<set _roll_money = random(100, 160) * $charm>>\
Your cavalier hit a jackpot! He wants to celebrate it together with everyone here. He offers you an "unforgettable" evening with him and other gamblers in private room for _roll_money​$. You're gonna be more exhausted from that than usual...
<<charm_link>><<link "Accept." "Casino Gangbang">>\
<<money `_roll_money`>>\
<<addhours 2>>\
<<stam `-1`>>\
<<depravity `3`>>\
<</link>><</charm_link>>
<<link "Nah, that's too much." "Casino">>\
<</link>>\
<<elseif _roll >= 30>>\
<<set _roll_money = random(50, 100) * $charm>>\
Seems like your partner is reeeeally upset after a series of losses and requires a way to went off. He really wants to smack your ass for _roll_money​$.
<<charm_link>><<link "Accept." "Casino Quickie">>\
<<money `_roll_money`>>\
<<addhours 1>>\
<<depravity `1`>>\
<</link>><</charm_link>>
<<link "Nah, i'm fine." "Casino">>\
<</link>>\
<<else>>\
The chips came and went, the cards flipped in your clients favor just as often as they didn’t. No big wins, no crushing losses, it wasn’t a bad way to spend the evening.
<<link "But everything ends." "Casino">>\
<</link>>
<</if>>\<style>
body.center::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/center/casino-bedroom.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center><<set _media_bj = $home_blow.random()>>\
<<set_blowjob_desc>>\
The casino conveniently offers room rentals as part of its services. The manager winks at you while handing the keys to a free room to your client.
The room itself was quite spacious. Needless to say, the owners of this casino have poured a large amount of money into it.
A plush, king-sized bed dominates the room. And someone gonna be dominated on it today. You looked at your patron and saw how frustrated he was - struggling with his clothes like they were fighting back. Buttons wouldn’t budge, shoes were too tight, and the belt was a challenge to remove. With a deep sigh you realized that your partner wasn’t in a kinky mood and he just wants to relieve his stress after losses in casino. That’s so boring... but it’s the job you signed up for, after all.
Finally, he won his battles with a pants and proudly shows you his source of pride. With a sneaky smirk you've <<linkappend "got yourself on the knees.">>
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
_blowjob_desc
<<linkappend "He positioned you as desired and prepared himself for penetration.">>\
<br>\
<<roll_penetration>>\
<<if _penetration == "anal">>\
<<set _media_sex = $home_anal.random()>>\
<<anal_whore_progress>>\
<<else>>\
<<set _media_sex = $home_vag.random()>>\
<</if>>\
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<<set_event_desc>>\
_event_desc
<<linkappend "It wasnt really long before you heard a grunts of incoming orgasm from your bedfellow.">>\
<<finisher>>
You lay together with him for a while, and it didn’t take long before your patron... fell asleep. You could easily steal his belongings - it’s not like the reputation of this casino bothers you - but it would be counterproductive. At least as long as this job keeps paying you. You quickly cleaned yourself up and <<link "sneaked away" "Casino">><</link>>.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
\
</center>
Trahat, theme: home
[[Casino]] <style>
body.center::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/center/casino-bedroom.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center><<set _media_entrance = $gangbang_entrance.random()>>\
<<set _media_bj = $gangbang_blowjob.random()>>\
<<set _media_start = $gangbang_sex.random()>>\
<<set _media_hard = $gangbang_dp.random()>>\
<<set _media_creampie = $gangbang_creampie.random()>>\
<<set _media_facial = $gangbang_facial.random()>>\
The casino conveniently offers room rentals as part of its services. The manager gasped when he saw the number of people with you while handing the keys to a free room to your client. He quickly whispered to you how to call security by pressing a specific combination on the room phone. This information might be useful.
The patron and his new retinue behaved fairly calmly on the way to the room. The group grabbed a large amount of alcohol from the bar, even though the whole scenery downstairs was already well-stocked with drinks. On the way to the room they have appraised the patron's wins and, overall, were quite polite with you. You even thought that you might not be gangbanged today; the overall atmosphere suggested more of a friendly drinking party rather than a... "bachelor"-type of party.
But when you entered <<linkappend "the room...">>
<video @src="_media_entrance" autoplay loop muted controls width="600" height="350"></video>
They were getting quite touchy-feely. The men have lost all inhibitions, and you can see their desire for you reflected in their lustful gazes. No easy time for you today. Well, you signed up for this job on yourself. Most of the party already were shirtless and start stroking your bosom, slapping your bum and caress your thights, someone even skipped the foreplay stage and already was gently fingering you, without deep probing... That could be very inappropriate; they hadn’t even drunk enough, but everyone knew why you were there. So, in turn, you were over-dramatically squealing and moaning at every touch, even though you weren’t that sensitive... but it did make you feel fairly pumped up to be in the limelight with such a large crowd of people surrounding you.
Warmup ended in no time and gangbangers <<linkappend "put you on your knees.">>
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
One by one, the patron and his retinue took their turns with your mouth, each one taking their time without any rush or hustle, surprisingly.
While you was busy pleasuring the men with a mouth, the one's who already took their turn approached you from behind, eager to claim other holes. They took turns fingering both of your tight, atleast for now, orifices; stretching you open and preparing for the onslaught of cocks that would soon fill you up. The feeling of anticipation for what was to come made you loudly ask for a proper fuck.
At such eager plea, the men wasted no time in claiming you, so they are <<linkappend "begin to moving you into more suitable position for penetration.">>
<video @src="_media_start" autoplay loop muted controls width="600" height="350"></video>
You awaited for this with a grain of caution, but it seems like you won't need to use the casino’s emergency call for security. There’s no need for that - the gangbangers weren't planning to wear you out, even though they weren’t giving you any moments of respite either.
The men become more aggressive in their pursuit of pleasure. Hands roam across your body, exploring every inch of your skin. Your patron takes his turn to plunge his thick cock into your wet pussy, thrusting deep inside you as you arch your back and moan in pleasure.
But the real excitement begins when the men decide to engage in a group penetration.
As the gangbang continued, the men switched positions, taking turns fucking you in every imaginable way. Double penetration became the norm, with two cocks filling your pussy and ass simultaneously.
But the men are not done with you yet. They want to take your pleasure to new heights, and they think that they know exactly how to do that, without asking your opinion. They are going for double penetration.
From now on, <<linkappend "you're getting really hard fucked.">>
<<anal_whore_progress>>\
<video @src="_media_hard" autoplay loop muted controls width="600" height="350"></video>
As they push their cocks inside your ass, you can't help but let out a loud moan. The sensation of being filled up by two hard cocks is almost too much to bear, and you can feel your body trembling with pleasure.
Gladly, not everyone agrees on a double fucking a single orifice, it tests a man's friendship to feel each other's dick. Otherwise, you’d be too overwhelmed.
It wasnt really long before you heard a grunts of incoming orgasms from gangbangers that were pounding you. Everyone else start surrounding you while masturbating.
<<linkappend "The one's fucking you speed up their movement and bursts into you..">>
<video @src="_media_creampie" autoplay loop muted controls width="600" height="350"></video>
<<linkappend "Then they brought you to your knees and surrounded you.">>
<video @src="_media_facial" autoplay loop muted controls width="600" height="350"></video>
You lay on the bed, bathed in the aftermath of your... unforgettable experience. Some people were already leaving, while others were drinking, appraising your patron, and chatting with each other. It took you a few minutes to gather your senses and begin getting ready to leave, and these gentlemen helped you clean up and get dressed. As you moved toward the room's door, they offered for you to stay awhile and drink with them, but you'd had enough of their company. For now.
<<link "Leave the scene." "Casino">><</link>>.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
\
</center>
Trahat' group
[[Casino]] <style>
body.center::before {
content: '';
background-image: url("img/background/center/mall.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
The mall hums with activity, though many storefronts still stand empty waiting for tenants. Shoppers wander between the bright, polished corridors, and the scent of fast food lingers in the air. It’s open, it’s running, and it’s only growing.
<<trade_link>><<link "Clothing aisle." "Mall Clothing">>
<</link>><</trade_link>>
<<in_link>><<link "Changing cabin" "Changing Cabin Mall">><</link>><</in_link>>
<<if $brand_clothing == true>>\
<<trade_link>><<link "Brand Emporium store." "Brand Clothing">>
<</link>><</trade_link>>
<<else>>\
<span class="not_available">A brand clothing store is currently under construction. You see the </span><<action_link>><span class="action_link"><<link "number of construction agency">><<script>> Dialog.setup("Call"); Dialog.wiki(Story.get("Construction Call").processText()); Dialog.open(); <</script>><</link>></span> <span class="not_available">that is responsible for the work.</span><</action_link>>
<</if>>\
Miscellaneous wares:
<<button "Handheld Taser - 100$">>
<<if $money >= 100>>\
<<pickup $p_inv "Handheld Taser" 1>>\
<<money `-100`>>\
<<run Engine.show()>>\
<<notify 1s>>Bought.<</notify>>\
<<else>>\
<<notify 1s>>Not enough money!<</notify>>\
<</if>>\
<</button>>\
<br>\
<<button "Electrical Components - 250$">>
<<if $money >= 250>>\
<<pickup $p_inv "Electrical Components" 1>>\
<<money `-250`>>\
<<run Engine.show()>>\
<<notify 1s>>Bought.<</notify>>\
<<else>>\
<<notify 1s>>Not enough money!<</notify>>\
<</if>>\
<</button>>\
<br>
<<out_link>><<link "Get back to the main street of City Center" "City Center">>
<<addmins 15>>
<</link>><</out_link>><style>
body.downtown::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/downtown/residential.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center><<set _media_bj = $home_blow.random()>>\
<<set_blowjob_desc>>\
He began draggin you around the house while looking for perfect place to fuck... Not the sweetest place to ever get laid, its obvious that this is a living space of a narc - everything is in poor condition, you see a scattered pills and typical attributes of light drug addict, such as bong, plastic bottles and randomly lying around foil papers... Maybe you shouldnt go for it afterall...
Anyway, you didn't had a time to think about this - your partner finally found "that spot", got his dick out and very suggestive pointed at it. You have shrugged off your glimpses of reasons and <<linkappend "got yourself on the knees.">>
<video class="dark_media" @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
_blowjob_desc
<<linkappend "He carelessly dropped you into desired position and prepared himself for penetration.">>\
<br>\
<<roll_penetration>>\
<<if _penetration == "anal">>\
<<set _media_sex = $home_anal.random()>>\
<<anal_whore_progress>>\
<<else>>\
<<set _media_sex = $home_vag.random()>>\
<</if>>\
<video class="dark_media" @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<<set_event_desc>>\
_event_desc
<<linkappend "It wasnt really long before you heard a grunts of incoming orgasm from your bedfellow.">>\
<<finisher_dark>>
You laid together with him for a while and then you decided to <<link "sneak away" "Downtown">><</link>>. He won't hear a thing and won't remember your for sure, it's quite clear that he was intoxicated.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
\
</center><style>
body.suburbs::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/suburbs/suburbsburglary.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center><<set _media_bj = $home_blow.random()>>\
<<set_blowjob_desc>>\
He began draggin you while looking for perfect place to fuck... Well, he's house... It's dimly lit, with heavy dark curtains drawn shut. The furniture is a mismatched collection of worn-out couches and armchairs, giving the room a chaotic, cluttered feel... Here and there you can see an empty beer cans and fast-food wrappers, the smell of stale smoke lingers in the air. Everything shows on a questionable habits of the owner. Maybe you shouldnt go for it afterall...
Anyway, you didn't had a time to think about this - your partner finally found "that spot", got his dick out and very suggestive pointed at it. You have shrugged off your glimpses of reasons and <<linkappend "got yourself on the knees.">>
<video class="dark_media" @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
_blowjob_desc
<<linkappend "He carelessly dropped you into desired position and prepared himself for penetration.">>\
<br>\
<<roll_penetration>>\
<<if _penetration == "anal">>\
<<set _media_sex = $home_anal.random()>>\
<<anal_whore_progress>>\
<<else>>\
<<set _media_sex = $home_vag.random()>>\
<</if>>\
<video class="dark_media" @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<<set_event_desc>>\
_event_desc
<<linkappend "It wasnt really long before you heard a grunts of incoming orgasm from your bedfellow.">>\
<<finisher_dark>>
You laid together with him for a while and then you decided to <<link "sneak away through the window" "Suburbs">><</link>>. He won't hear a thing and won't remember your for sure, it's quite clear that he was intoxicated.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
\
</center><style>
body::before {
content: '';
background-image: url("img/background/events/car_theft.webp");
inset: 0;
position: fixed;
filter:grayscale(90%);
background-size: cover;
}
</style>\
<<silently>>\
<<restore_vehicle_theft_params>>\
<</silently>>\
<<if $do_it_anyway == true>>\
<span class="male_text">- "Oh, okay." The atmosphere shifted abruptly.</span>
<</if>>\
Okay, it's too late to run. Car door opens, it's time to fase a consequences...
<<if $reputation >= 8000 && $do_it_anyway == false>>\
<span class="male_text">- "Oh, it's you... Sorry, I didn't mean to bother you. I'm not going to stand in your way. But maybe you should stop trying to steal my car?... just maybe?"</span>
<<link "That's right." "Home">>
<</link>> - your reputation speaks for itself!
<<link "Tell him to go ahead and do what he was planning to do with you... You're not gonna hold a grudge.">>\
<<set $do_it_anyway = true>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
<<set $reputation -= 50>>\
<<set _roll = random(0, 20)>>\
<<if _roll >= 10>>\
A suspicious looking guy hungrily eyes you. Too hungrily, its a visible desire.
Yes, but of course he's on aphrodisiac. You can easily smell its specific strawberry-like smell. Why he's even on it in such place and daytime while being all alone? Strance coincidence. \
<br>\
And he definitely wants to punish you for this theft attempt. Either that, or he's calling a police.
<br>\
<<link "No way." "Custody">>\
<<set $do_it_anyway = false>>\
<<addhours 1>>\
<</link>> It's better to surrender to police than that. \
<br>\
<<link 'Accept your "punishment"' 'Motor Vehicle Quickie'>>
<<set $do_it_anyway = false>>\
<<addhours 1>>\
<<stam `-1`>>\
<<depravity `1`>>\
<</link>>\
<<if $p_inv.has("Handheld Taser")>>\
<br>\
<<link "Use a taser and run away." "Home">>\
<<set $do_it_anyway = false>>\
<<drop $p_inv "Handheld Taser" 1>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> If only you had a taser... </span>\
<</if>>\
<<if $p_traits.includes("fitness_2")>>\
<br>\
<<link "Push him away and run." "Home">>
<<set $do_it_anyway = false>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> Sadly, you're not strong enough to just push him away. </span>\
<</if>>\
<<else>>\
An energetic man swiftly pulled out a taser and, well, tased you.
It only took a moment before he called the police. Just when you thought you could get out of this situation, you got busted.
<<link "Sigh" "Custody">>
<<set $do_it_anyway = false>>\
<<addhours 1>>\
<</link>>\
<</if>>\
<</if>>\<style>
body::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/events/car_theft_q.webp");
inset: 0;
position: fixed;
filter:grayscale(70%);
background-size: cover;
}
</style>\
<center><<set _media_bj = $car_blow.random()>>\
<<set_blowjob_desc>>\
You started wondering how he planned to do it. It wouldn’t be very comfortable to mate each other in the car, but on the other hand, doing it outside the car might attract more unwanted attention... But who cares if its not a call for a police, yeah?
He clearly didn’t bother with such questions and simply got you out, pushing you into <<linkappend "blowjob position.">>
<video class="dark_media" @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
_blowjob_desc
<<linkappend "He carelessly dropped you into desired position and prepared himself for penetration.">>\
<br>\
<<roll_penetration>>\
<<if _penetration == "anal">>\
<<set _media_sex = $car_anal.random()>>\
<<else>>\
<<set _media_sex = $car_vag.random()>>\
<</if>>\
<video class="dark_media" @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<<set_event_desc>>\
_event_desc
<<linkappend "It wasnt really long before you heard a grunts of incoming orgasm from your bedfellow.">>\
<<finisher_dark>>
You <<link "got away" "Home">><</link>> the moment you saw an opening. There's no reason to continue your acquaintance.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
\
</center><style>
body.harbor::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/harbor/harborgb.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<set $harbor_gangbang = true>>\
<center><<set _media_entrance = $gangbang_entrance.random()>>\
<<set _media_bj = $gangbang_blowjob.random()>>\
<<set _media_start = $gangbang_sex.random()>>\
<<set _media_hard = $gangbang_dp.random()>>\
<<set _media_creampie = $gangbang_creampie.random()>>\
<<set _media_facial = $gangbang_facial.random()>>\
The guard led you by the hand out of the warehouse, your destination being a brightly lit house that served as a security rest room. Along the way, he used a walkie-talkie to tell everyone to bring themselves into the "fuck room," whatever that means. It seems like this isn't the first time they've done something like this. You could use that to your advantage if you ever plan to rob their warehouses with a team.
As you approached the aforementioned house, he asked you to wait a moment and lit a cigarette. You heard a voice crackle through the walkie-talkie:
<span class="male_text">- "Isn't it a bit early for your payday? Where’s all this sudden generosity coming from? Over."</span>
<span class="male_text">- "Nah, it's a special occasion... just don’t ask any more questions. Over."</span> - Your "companion" looked you over thoroughly before turning off the radio. <span class="male_text">- "To be honest, you should wear something more appropriate for this situation. We've got something left from previous... guests."</span> <<linkappend "Let's go.">>"
<video @src="_media_entrance" autoplay loop muted controls width="600" height="350"></video>
A few minutes later, he simply pushed you into a room full of people. Mostly naked ones. How many guards has the Cartel hired? It's definitely time to regret your hasty decision, thinking this would be light and fun entertainment.
They completely took over control, allowing themselves to touch you in very inappropriate places, and it was clear this wasn’t their first rodeo. You responded with moans to every rough touch or slap, which obviously excited them even more. Your reactions provoked them to grope you with greater enthusiasm, and they began pushing their fingers where they shouldn’t.
Foreplay wouldn't make it for them, so they <<linkappend "put you on your knees.">>
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
It was... rough. You didn't have even a second to say something or to voice your opinion about the inconveniences in your position - when you finish one cock, other one takes its place in your mouth, when someone finishes slapping or fingering your asshole, other one takes vacant place and start playing with your arse, your tits were slapped and groped, and someone really thought that it would be funny to spontaneously cock slap you onto face... it took you a lot of strength to not to bite anyone under this pressure.
And it aint gonna be easier in any means... Guys became bored by using only your lips'n'bits and <<linkappend "begin moving you into more suitable position for penetration.">>
<video @src="_media_start" autoplay loop muted controls width="600" height="350"></video>
You were... "assaulted" by dicks in every possible orifice. They weren't thinking about your own pleasure, it was a very rough test of your endurance. You are no longer quetly moaning, you're going full loud noise attack every time your mouth isn't busy servicing a dick, but even with lips around someone's prick you whimper and whine. Yikes.
As the gangbang continued, the men switched positions, taking turns fucking you in every imaginable way. Double penetration became the norm, with two cocks filling your pussy and ass simultaneously.
When you thought that you've got yourself into the perfect pace, someone drived a second cock into your backdoor.
It was not a rough sex before. But now, <<linkappend "you're getting really hard fucked.">>
<video @src="_media_hard" autoplay loop muted controls width="600" height="350"></video>
As they push their cocks inside your ass'n'pussy together, and even sometimes in a one single hole, you can't help but let out a loud moan. The sensation of being filled up by two hard cocks is almost too much to bear, and you can feel your body trembling with pleasure.
Gladly, not everyone agrees on a double fucking a single orifice, it tests a man's friendship to feel each other's dick. Otherwise, you’d be too overwhelmed.
It wasnt really long before you heard a grunts of incoming orgasms from gangbangers that were pounding you. Everyone else start surrounding you while masturbating. Is it some kind of code of honor to orgasm together, huh?
<<linkappend "The one's fucking you speed up their movement and bursts into you..">>
<video @src="_media_creampie" autoplay loop muted controls width="600" height="350"></video>
<<linkappend "Then they brought you to your knees and surrounded you.">>
<video @src="_media_facial" autoplay loop muted controls width="600" height="350"></video>
Some of them were close to finish and asked for your help, some on them just asked you to clean their pricks. Well, you're really gone too deep, so no shame in finishing your job. It took you somewhat a 10 mins before everyone were cleaning and chatting, its still working hours and obviously they weren't doing their job while fucking you. You could hear how they were discussing their achievements during gangbang. A few mans helped you to dress and get yourself in order and then led you <<link "ouf of warehouses territory." "Harbor">><</link>>. What a lovely people. Even tho they were making some dirty jokes about how funny you're gonna walk for a next few days, seems like you're allright after all of that.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
\
</center>\<style>
body.harbor::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/harbor/darkalley.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<set_outdoors_talks>>\
<center><<set _media_bj = $outdoors_blow.random()>>\
<<set_blowjob_desc>>\
<<set _media_finisher = $outdoors_finisher.random()>>\
He took you to the nearest "most secluded location possible," as he put it. But honestly, any passerby could easily see both of you, and the outdoors clearly isn’t very soundproof. This so-called "secluded place" is practically right by the road... Maybe it's the thing that turns this guy on?
Both of you started making out, and the moment someone appeared nearby, your partner began groping your breasts and dominantly squeezing your ass, your gasps and moans have found a very reactive responce in his crouch. Yeah, he's definitely obsessed with showing off in public. Well, whatever floats your boat.
He quickly, before anyone witnessing your performance could leave, unzipped his pants and pressed down on your shoulders.
<<linkappend "Get yourself on the knees.">>
<span id="public_gray">"_random_talk_1" - you hear a random mumbling from the passerby...</span>
<video class="dark_media" @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
_blowjob_desc
<<linkappend "He dropped you into desired position in haste and prepared himself for penetration.">>\
<br>\
<<roll_penetration>>\
<<if _penetration == "anal">>\
<<set _media_sex = $outdoors_anal.random()>>\
<<anal_whore_progress>>\
<<else>>\
<<set _media_sex = $outdoors_vag.random()>>\
<</if>>\
<span id="public_gray">"_random_talk_2" - you hear a conversations from the crowd that gathered around...</span>
<video class="dark_media" @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<<set_event_desc>>\
_event_desc
<span id="public_gray">"_random_talk_3" - people are shamelessly discussing your show...</span>
<<linkappend "It wasnt really long before you heard a grunts of incoming orgasm from your bedfellow.">>\
<video class="dark_media" @src="_media_finisher" autoplay loop muted controls width="600" height="350"></video>
You sat with him for a while, but then you decided to <<link "leave" "Dark Alleys">><</link>>. It's not like you needed anything more from him. Well, that was an experience for sure. You waved to him and strolled away.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
</center>\<<set_outdoors_talks>>\
<center><<set _media_bj = $outdoors_blow.random()>>\
<<set_blowjob_desc>>\
<<set _media_finisher = $outdoors_finisher.random()>>\
He took you to the nearest "most secluded location possible," as he put it. But honestly, any passerby could easily see both of you, and the outdoors clearly isn’t very soundproof. This so-called "secluded place" is practically right by the marketplace... Maybe it's the thing that turns this guy on?
Both of you started making out, and the moment someone appeared nearby, your partner began groping your breasts and dominantly squeezing your ass, your gasps and moans have found a very reactive responce in his crouch. Yeah, he's definitely obsessed with showing off in public. Well, whatever floats your boat.
He quickly, before anyone witnessing your performance could leave, unzipped his pants and pressed down on your shoulders.
<<linkappend "Get yourself on the knees.">>
<span id="public_gray">"_random_talk_1" - you hear a random mumbling from the passerby...</span>
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
_blowjob_desc
<<linkappend "He dropped you into desired position in haste and prepared himself for penetration.">>\
<br>\
<<roll_penetration>>\
<<if _penetration == "anal">>\
<<set _media_sex = $outdoors_anal.random()>>\
<<anal_whore_progress>>\
<<else>>\
<<set _media_sex = $outdoors_vag.random()>>\
<</if>>\
<span id="public_gray">"_random_talk_2" - you hear a conversations from the crowd that gathered around...</span>
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<<set_event_desc>>\
_event_desc
<span id="public_gray">"_random_talk_3" - people are shamelessly discussing your sex...</span>
<<linkappend "It wasnt really long before you heard a grunts of incoming orgasm from your bedfellow.">>\
<video @src="_media_finisher" autoplay loop muted controls width="600" height="350"></video>
You sat with him for a while, but then you decided to <<link "leave" "Marketplace">><</link>>. It's not like you needed anything more from him. Well, that was an experience for sure. You waved to him and strolled away.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
</center>\<<widget "rep_check_warden">>\
<<if $reputation >= 0 && $reputation < 300>>\
<<set _warden_bribe = 250>>\
nobody in this city,\
<<elseif $reputation >= 300 && $reputation < 1000>>\
<<set _warden_bribe = 600>>\
some ruffian,\
<<elseif $reputation >= 1000 && $reputation < 5000>>\
<<set _warden_bribe = 2000>>\
random thug,\
<<elseif $reputation >= 5000 && $reputation < 10000>>\
<<set _warden_bribe = 4000>>\
kind of big shot, and thats mean something,\
<<elseif $reputation >= 10000 && $reputation < 20000>>\
<<set _warden_bribe = 7000>>\
rogue boss i guess,\
<<elseif $reputation >= 20000 && $reputation < 30000>>\
<<set _warden_bribe = 14000>>\
big boss,\
<<elseif $reputation >= 30000>>\
<<set _warden_bribe = 25000>>\
crime lord, milady,\
<</if>>\
<</widget>>\
<<widget "bribe_pay">>\
<br>\
<<if $money >= _warden_bribe>>\
<span class="action_link"><<link "Pay your fine.">>\
<<money `-_warden_bribe`>>\
<<addhours 1>>\
<<goto "City Center">>
<</link>></span> Warden is right, time is money.
<<else>>\
<span class="not_available"> You don't have enough money for your fine. <br></span>\
<</if>>\
<</widget>>\
<<widget "warden_seduce">>\
<br>\
<<if $charm >= 12>>\
It's obvious he's not feeling himself comfortable in one room with you. Maybe its another way out.
<<linkreplace "Try to seduce him.">>\
You pressed yourself against the bars and looked at warden with appeal in the eyes.
<<set _warden_bribe = _warden_bribe / 2>>\
<<set _warden_bribe = Math.trunc(_warden_bribe)>>\
- "Eh... what... okay, just pay me _warden_bribe, whatever. Or... what if..." the flabbergasted warden stammered. A silent question hung in the air.
<<if $money >= _warden_bribe>>\
<<action_link>><<link "Pay with discount.">>\
<<money `-_warden_bribe`>>\
<<set $warden_seduced += 1>>\
<<addhours 1>>\
<<goto "City Center">>\
<</link>><</action_link>>\
<<else>>\
<span class="not_available"> Still not enough money...</span>\
<</if>>\
<<if $charm >= 13>>\
<br>\
<<charm_link>><<link "Hint at another way out of here for you...">>\
<<set $warden_seduced += 1>>\
<<goto "Custody Quickie">>\
<</link>><</charm_link>> ...it's evident that he wants you. And you don't want to pay any money.\
<<else>>\
<br>\
<span class="not_available"> You could push him further if you were a more charming, for sure... You need to be atleast 13/10 for this prick. </span>\
<</if>>\
<</linkreplace>>\
<</if>>\
<</widget>>\
<<widget "warden_seduce_2">>\
"Or we could arrange a same agreement as previously... but i'm not really in the mood right now. And don't you try to cut down the price, your charms is not enough for that."
<br>\
<<if $p_inv.has("Aphrodisiac") && $charm >= 12>>\
You're not going for price cutting. You're going for full payment through barter.<br><<charm_link>><<link "Hand him a pill of aphrodisiac and seal the deal.">>
<<drop $p_inv "Aphrodisiac" 1>>\
<<set $warden_seduced += 1>>\
<<goto "Custody Quickie">>\
<</link>><</charm_link>>\
<<elseif !$p_inv.has("Aphrodisiac")>>\
<span class="not_available">If only you had an aphrodisiac on you...</span>\
<<elseif $charm < 13>>\
<span class="not_available"> You're not charming enough... You need to be atleast 13/10 for this prick. </span>\
<</if>>\
<</widget>>\
<<widget "warden_seduce_3">>\
"Or we could arrange a same agreement as previously. Just give me a motivation for that. And i'm not expecting half measures from you."
<br>\
<<if $p_inv.has("Aphrodisiac")>>\
You're not going for price cutting. You're going for full payment through barter.<br> <<charm_link>><<link "Hand him a pill of aphrodisiac and seal the deal.">>
<<drop $p_inv "Aphrodisiac" 1>>\
<<goto "Custody Quickie">>\
<</link>><</charm_link>>\
<<else>>\
<span class="not_available">If only you had an aphrodisiac on you...</span>\
<</if>>\
<</widget>>\<<silently>>\
<<apply_all_stats>>
<<set $downtown_bribe = false>>
<<set $suburbs_bribe = false>>
<<set $do_it_anyway = false>>\
<<if $race_cd > 0>>
<<set $race_cd -= 1>>
<</if>>
<<set $race_active = true>>
<<set $mafia_blackjack = true>>
<<set _burglars_stole = $money / 100 * 3>>\
<<set _burglars_stole = Math.trunc(_burglars_stole)>>
<<if $nc_striptease_cd > 0>>
<<set $nc_striptease_cd -= 1>>
<</if>>
<</silently>>\
<br>\
<<if $reputation >= 1000 && $news_milestone_1 == false>>\
<<set $forum_new = true>>\
<<set $news_milestone_1 = true>>\
''Phone newsletter suggests to check the city forum.''
<br>\
<</if>>\
<<if $brand_clothing_construction == true && $news_milestone_2 == false>>\
<<set $brand_clothing = true>>\
<<set $forum_new = true>>\
<<set $news_milestone_2 = true>>\
''Phone newsletter suggests to check the city forum.''
<br>\
<</if>>\
<<if $p_boss == true && $news_milestone_band == false>>\
<<set $forum_new = true>>\
<<set $news_milestone_band = true>>\
''Phone newsletter suggests to check the city forum.''
<br>\
<</if>>\
<<if $reputation >= 8000 && $p_boss == true && $news_milestone_3 == false>>\
<<set $forum_new = true>>\
<<set $news_milestone_3 = true>>\
''Phone newsletter suggests to check the city forum.''
<br>\
<</if>>\
<<if $burglars_event == true>>\
<<money `_burglars_stole`>>\
''Burglars stole _burglars_stole​$ from you tonight!
<<set $total_loss += _burglars_stole>>\
<br>\
<</if>>\
<<set _burglars_roll = random(1, 50)>>\
<<if _burglars_roll >= 45 && $home_fence != 2>>\
<<set $burglars_event = true>>\
<</if>>\
<<set _result_amount = $total_gained + $total_loss>>\
<div class="success">Total gained (cleaning included): $total_gained​$</div><div class="even">Amount of cash cleaned: $total_washed​$</div><div class="even">Total gained in dirty: $total_gained_dirty​$</div><div class="fail">Total spent: $total_loss​$</div> Result for clean cut: _result_amount​$
<<if $band_event == false>>\
<<out_link>><<link "Get up" "Home">> \
<</link>><</out_link>>\
<<elseif $band_event == true && $band_first_event == false>>\
<<out_link>><<link "Your gang requires your attention" "Band Events Tutorial">> \
<<set $band_event_cd = 3>>\
<<set $band_event = false>>\
<</link>><</out_link>>\
<<elseif $band_event == true && $band_first_event == true>>\
<<out_link>><<link "Your gang requires your attention" "Band Events">> \
<<set $band_event_cd = 3>>\
<<set $band_event = false>>\
<</link>><</out_link>>\
<</if>>\<style>
body.center::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/center/custody.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center><<set _media_bj = $prison_blow.random()>>\
<<set_blowjob_desc>>\
The warden nervously looked out the door and then locked it. He proceeded to unlock your cell, his entire focus shifting to you, and you’re not going to disappoint him for making this decision.
This place is built with only one purpose: to hold someone in strict control with no comforts or distractions. And you're going to break that rule. Thrilling.
Its time to work on your... extenuating circumstances.
<<linkappend "Get yourself on the knees.">>
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
_blowjob_desc
<<linkappend "He carefully positioned you as desired and prepared himself for penetration.">>\
<br>\
<<roll_penetration>>\
<<if _penetration == "anal">>\
<<set _media_sex = $prison_anal.random()>>\
<<anal_whore_progress>>\
<<else>>\
<<set _media_sex = $prison_vag.random()>>\
<</if>>\
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<<set_event_desc>>\
_event_desc
<<linkappend "It wasnt really long before you heard a grunts of incoming orgasm from warden">>\
<<finisher>>
You sat with him for a while on the not-so-cozy cot. The warden helped you with self-cleaning and asked you not to talk to anyone about what happened here. After receiving your reassurance, he called a taxi for you and accompanied you to the station exit. <<link "Time to go home." "Home">><</link>>.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
</center>\<<silently>>\
<<apply_all_stats>>
<<set $downtown_bribe = false>>
<<set $suburbs_bribe = false>>
<<set $do_it_anyway = false>>\
<<if $race_cd > 0>>
<<set $race_cd -= 1>>
<</if>>
<<set $race_active = true>>
<<set $mafia_blackjack = true>>
<<set _burglars_stole = $money / 100 * 3>>\
<<set _burglars_stole = Math.trunc(_burglars_stole)>>
<<if $nc_striptease_cd > 0>>
<<set $nc_striptease_cd -= 1>>
<</if>>
<</silently>>\
<<if $burglars_event == true>>\
<<money `_burglars_stole`>>\
''Burglars stole _burglars_stole​$ from you tonight! Even though you are in a custody... unlucky, hyeah?
<br>\
<</if>>\
<<if $custody_term > 1>>\
You have $custody_term more days off your term.
<<out_link>><<link "Next Day" "NewDay">>\
<<set $custody_term -= 1>>\
<</link>><</out_link>>\
<<elseif $custody_term == 1>>\
Finally, it's time to leave this place.
Warden also took all money that he can for your fine. Your fine was a $fine_amount​$.
<span class="out_link"><<link "Go home" "Home">>\
<<money `-$fine_amount`>>\
<<set $custody_term = 0>>\
<<set $fine_amount = 0>>\
<</link>></span>\
<</if>>\<style>
body::before {
content: '';
background-image: url("img/background/home/sleep.webp");
inset: 0;
position: fixed;
background-size: cover;
filter:grayscale(90%);
}
</style>\
Its too late to roam around. Time to <<link "go home and sleep" "NewDay">><<set $gameDate.setHours(8)>><<set $gameDate.setMinutes(0)>><</link>>.\<<set $anal_low = [
"Your ass is hurt, you're not used to such things like this... nonetheless, your bum is pounded. And it'll hurt more, partner isn't planning to stop. You can only whimper and whine...", "You really shouldnt go for it, now you can only regret about such choice... Your ass is being fucked relentlessly, partner is obviously enjoys your whining.", "That's a wrong hole! Wrong! Why someone in their mind will go for anal!?... Your pleadings are ignored, and your butt is screwed...",
]>>
<<set $anal_mid = [
"This fucker chose a quite sensitive spot. You're trying to relax your rear while being fucked, but this might take some time... and your partner isn't giving you any idle minutes, even seconds, not even a lube...", "You already can tell that it'll be hard to move straight tomorrow. Why do people prefer to go for your backdoor and being so rough, gosh... Well, your ass is slammed already, and it's better to try to enjoy it too. Your partner is enjoying it without a doubt.", "You've got yourself into quite interesting situation. On one side, you're not really that against an anal... on other side - your bum is on fire and it reflects on your facial expression and moans. Your partner leers at you while keeping on pounding your ass...",
]>>
<<set $anal_high = [
"He thrusts into your butt and looks with a smirk at how you suddenly yell with high-pitched moans... That was quick and very rough... But you're taking it with excitement nonetheless.", "You are keeping your ass up, bounce your hips back and forth with pleasure, yell, moan and, overall, you're quite pleased by being anally fucked.", "You're shamelessly plead for more and ask for harder pounds, it's in your plans for today to bend down. Your partner can only scratch his head about how are depraved his buttslut.",
]>>
<<set $vag_low = [
"Your pussy - his target. Movements of your partner are forceful and unyielding. The roughness in his touch contrasts sharply with the tenderness you usually expect, but, you guess, it's not your usual coition...", "His grip on you is firm, almost possessive, as he enters into your body. The intensity in his movement is overwhelming, and you can't help but feel a thrill and exhilaration...", "He penetrates your pussy with quick thrusts, his movements more forceful than you’re accustomed to and this makes you squeel. No flowers and dating this time...?",
]>>
<<set $vag_high = [
"You are pleased by sex, he finds pleasure in fucking you, why not just enjoy it? Maybe its wrong to fuck with randos, but you're too depraved to overthink it, so, you just fully embrace this pulsating feeling each time he slams your pussy.", "You're happy to take it in your pussy, your whole body language speaks about it - constant bouncing, jiggling, giggling, pleading. You're helping your partner to keep the pace up, tho he's even kinda astonished by your behavior.", "Your moans and plapping sounds of your pussy being pounded are reverberating through whole location. You're not holding yourself and fully accept your position.",
]>>
<<set $blow_low = [
"Feeling a sudden surge of boldness, you part your lips and take the head of his cock into your mouth and start to gently kissing its tip. It was not enough to please this guy and he began to quickly buck his hips up and down, and the only thing left for you is to keep your mouth open...", "You've tried to lick his shaft with an obvious uncertainty in your actions. Seeing your hesitation, he reaches down to tangle his fingers in your hair and guides your movement with a firmly grip.", "Taking a moment to prepare yourself, you lean forward and let the tip of his cock graze your lips. Your gentle approach is doing its thing and guy melts by your touch, nonetheless, the moment you start actively sucking his cock he took the charge on."
]>>
<<set $blow_high = [
"You're not hesitating when you see the hard schlong near your face; you take it in your mouth and start to bob your head up and down, your lips and tongue working in tandem to stimulate his cock. The guy clearly enjoys your proactive moves, but he still tries to show you who's in charge.", "You quickly took control in this quite submissive position and began to bob your head up and down, taking more of his length into your mouth with each pass. Your sex partner isn't standing still, hence is using your mouth as he pleases.", "You were looking at his cock with obvious anticipation, and it was too provocative for him to resist. He firmly grips your head and starts bucking his hips into your mouth... and you gladly receive it.",
]>>
<<set $wc_dirty_talks = [
"I would screw her too.", "Gosh, again? Club owner just should open a somekind of orgy area at this point...", "Look at that ass, maaaan...", "Dude, look at how this bitch is dripping!", "I would squeeze these tits...", "This slut just asks for it.", "I wonder if i get fired for watching this...", "Fuck this bitch like you mean it!", "Nice cock, awesome balls. This whore should worship this dick.", "Spank her, please. I wanna hear her squel.", "Make her whine!", "What a slut...", "What a show! This cumslut should try herself in a porn!", "What a shameless people...", "I'm not sure that this man deserved such a baby...", "Hey, stud, do it harder! Don't you see how she begs for it!?", "Pound that whore!", "Fuck, this girl is a hottie!",
]>>
<<set $outdoors_dirty_talks = [
"Look at that... dirty fetishists...", "Hell yeah, that's why this town rules! Screw that bitch! $city_name is the best city!", "You have no shame!", "That's... really hot outside nowadays.", "I wish i had same courage as you guys...", "You should moan even louder, let everyone know what you're doing here!", "Yeah, man, you're lucky, we get it...", "I would fuck her everyday and everywhere too...", "Slap that ass!", "Shameless... I wanna try it too...", "Those sluts don't even trying to hide these days...", "Fuck, that's hot... Should we approach them?...", "Whores like that are destined to be fucked anywhere.", "Do it harder! Make her squirm!", "Oh, that's something new in here...", "Not bad maaan, not bad...", "Fuck her, do it really fucking hard! Bang that ass!", "Make her forget how to walk straight!", "God damn, look at these legs, oh boy!", "Breedable. Definitely, breedable. I'm the expert.", "I would make it much rougher for her... she's asking for it, dude...", "Why everyone so horny in this town...", "I wish i was on her place...", "I wish i was on his place...",
]>>
<<set $lesbian_sex_start = ["Both of you entered your bedroom, clearly sharing the same thought."]>>
<<set $lesbian_orgasm_desc_top = ["$active_npc.name started moaning too loud, clearly showing that she was close to her orgasm. Because of that, you just picked up more speed before both of you got on the verge and orgasmed together. Time to clean and get back on the feet."]>>
<<set $lesbian_orgasm_desc_bottom = ["$active_npc.name started moaning too loud, clearly showing that she was close to her orgasm. Because of that, she just picked up more speed before both of you got on the verge and orgasmed together. Time to clean and get back on the feet."]>>
<<set $gh_commentaries = ["Oh, come on bitch, do it faster, i don't have time!", "Yeeeeah, work with your tongue slut!", "Choke on my dick, baby!", "Tell her to do it faster, my balls are exploding already.", "I reeeeally needed that, thanks babe.", "I really wish i could enter that booth and make you walk funny!", "There's a bitch with enthusiasm today, nice!", "Yeah, like that!", "Fuck, you're so good at that!", "Finally, a good cocksucker in town.", "Perfecto! Che meraviglia!", "You obviously like this. Great cocksucker."]>>
<<set $intruder_dt = ["Today it my lucky day, huh? Stay still, i'm not finished yet.", "I heard that some crazy bitch lives here, but i didn't knew that you're THAT crazy!", "Fuck, you're the best score i could take!", "Who needs money when you get pussy like this!", "I'm gonna pry you open... In a figurative sense, of course."]>><<widget "roll_penetration">>\
<<set _roll_penetration = random(0, 10)>>\
<<if _roll_penetration >= 5>>\
<<set _penetration = "vaginal">>\
He's going for your pussy.
<<else>>\
<<set _penetration = "anal">>\
<<anal_whore_progress>>\
He's going for your ass!
<</if>>\
<</widget>>\
<<widget "set_event_desc">>\
<<silently>>\
<<if _penetration == "vaginal">>
<<if $p_depravity >= 15>>
<<set _event_desc = $vag_high.random()>>
<<else>>
<<set _event_desc = $vag_low.random()>>
<</if>>
<<elseif _penetration == "anal">>
<<if $p_depravity >= 25>>
<<set _event_desc = $anal_high.random()>>
<<elseif $p_depravity >= 15>>
<<set _event_desc = $anal_mid.random()>>
<<elseif $p_depravity < 15>>
<<set _event_desc = $anal_low.random()>>
<</if>>
<</if>>
<</silently>>\
<</widget>>\
<<widget "set_blowjob_desc">>\
<<silently>>\
<<if $p_depravity >= 15>>
<<set _blowjob_desc = $blow_high.random()>>
<<else>>
<<set _blowjob_desc = $blow_low.random()>>
<</if>>
<</silently>>\
<</widget>>\
<<widget "finisher">>\
<<set _roll = random(0, 20)>>\
<<if _roll >= 10>>\
<<set _finish_media = $cumshot.random()>>\
He's going for facial cumshot!
<<elseif _roll < 10 && _penetration == "anal">>\
<<set _finish_media = $creampie_anal.random()>>\
He wants to finish in your ass!
<<else>>\
<<set _finish_media = $creampie_vag.random()>>\
He wants to finish in your pussy!
<</if>>\
<video @src="_finish_media" autoplay loop muted controls width="600" height="350"></video>
<</widget>>\
<<widget "finisher_dark">>\
<<set _roll = random(0, 20)>>\
<<if _roll >= 10>>\
<<set _finish_media = $cumshot.random()>>\
He's going for facial cumshot!
<<elseif _roll < 10 && _penetration == "anal">>\
<<set _finish_media = $creampie_anal.random()>>\
He wants to finish in your ass!
<<else>>\
<<set _finish_media = $creampie_vag.random()>>\
He wants to finish in your pussy!
<</if>>\
<video class="dark_media" @src="_finish_media" autoplay loop muted controls width="600" height="350"></video>
<</widget>>\
<<widget "set_wc_talks">>\
<<set _random_talk_1 = $wc_dirty_talks.pluck()>>\
<<set _random_talk_2 = $wc_dirty_talks.pluck()>>\
<<set _random_talk_3 = $wc_dirty_talks.pluck()>>\
<<set $wc_dirty_talks = [
"I would screw her too.", "Gosh, again? Club owner just should open a somekind of orgy area at this point...", "Look at that ass, maaaan...", "Dude, look at how this bitch is dripping!", "I would squeeze these tits...", "This slut just asks for it.", "I wonder if i get fired for watching this...", "Man, you should fuck this bitch really-really hard!", "Nice cock, awesome balls. This whore should worship this dick.", "Spank her. I wanna hear the squels.", "Make her whine!", "What a slut...", "What a show! This cumslut should try herself in a porn!", "What a shameless people...", "I'm not sure that this man deserved such a baby...", "Hey, stud, do it harder! Don't you see how she begs for it!?", "Pound that whore!", "Fuck, this girl is a hottie!", "You people are really horny sometimes.",
]>>\
<</widget>>\
<<widget "set_outdoors_talks">>\
<<set _random_talk_1 = $outdoors_dirty_talks.pluck()>>\
<<set _random_talk_2 = $outdoors_dirty_talks.pluck()>>\
<<set _random_talk_3 = $outdoors_dirty_talks.pluck()>>\
<<set $outdoors_dirty_talks = [
"Look at that... such horny people...", "Hell yeah, that's why this town rules! Screw that bitch!", "You have no shame!", "That's... really hot outside nowadays.", "I wish i had same courage as you guys...", "You should moan even louder, let everyone know what you're doing here!", "Yeah, man, you're lucky, we get it...", "I would fuck her everyday and everywhere too...", "Slap that ass!", "Shameless... I wanna try it too...", "Those sluts don't even trying to hide these days...", "Fuck, that's hot... Should we approach them?...", "Whores like that are destined to be fucked anywhere.", "Do it harder! Make her squirm!", "Oh, that's something new in here...", "Not bad maaan, not bad...", "Bang her really hard! She deserved it!",
]>>\
<</widget>>\<<set $creampie_vag = [
"img/media/v_c/0.webm", "img/media/v_c/1.webm", "img/media/v_c/2.webm", "img/media/v_c/3.webm", "img/media/v_c/4.webm",
]>>
<<set $creampie_anal = [
"img/media/a_c/0.webm", "img/media/a_c/1.webm", "img/media/a_c/2.webm", "img/media/a_c/3.webm",
"img/media/a_c/4.webm", "img/media/a_c/5.webm",
]>>
<<set $outdoors_finisher = [
"img/media/outdoors/0f.webm", "img/media/outdoors/1f.webm", "img/media/outdoors/2f.webm",
]>>
<<set $cumshot = [
"img/media/f_c/0.webm", "img/media/f_c/1.webm", "img/media/f_c/2.webm", "img/media/f_c/3.webm", "img/media/f_c/4.webm", "img/media/f_c/5.webm", "img/media/f_c/6.webm",
]>>
<<set $home_blow = [
"img/media/indoors/bj/0.webm", "img/media/indoors/bj/1.webm", "img/media/indoors/bj/2.webm", "img/media/indoors/bj/3.webm", "img/media/indoors/bj/4.webm", "img/media/indoors/bj/5.webm", "img/media/indoors/bj/6.webm", "img/media/indoors/bj/7.webm", "img/media/indoors/bj/8.webm", "img/media/indoors/bj/9.webm",
"img/media/indoors/bj/10.webm",
"img/media/indoors/bj/11.webm",
"img/media/indoors/bj/12.webm",
"img/media/indoors/bj/13.webm",
"img/media/indoors/bj/14.webm",
"img/media/indoors/bj/15.webm",
"img/media/indoors/bj/16.webm",
"img/media/indoors/bj/17.webm",
"img/media/indoors/bj/18.webm",
"img/media/indoors/bj/19.webm",
"img/media/indoors/bj/20.webm",
"img/media/indoors/bj/21.webm",
"img/media/indoors/bj/22.webm",
]>>
<<set $home_vag = [
"img/media/indoors/vanilla/doggy/0.webm", "img/media/indoors/vanilla/doggy/1.webm", "img/media/indoors/vanilla/doggy/2.webm", "img/media/indoors/vanilla/doggy/3.webm", "img/media/indoors/vanilla/doggy/4.webm", "img/media/indoors/vanilla/doggy/5.webm", "img/media/indoors/vanilla/doggy/6.webm", "img/media/indoors/vanilla/doggy/7.webm", "img/media/indoors/vanilla/doggy/8.webm", "img/media/indoors/vanilla/doggy/9.webm", "img/media/indoors/vanilla/doggy/10.webm",
"img/media/indoors/vanilla/doggy/11.webm",
"img/media/indoors/vanilla/doggy/12.webm",
"img/media/indoors/vanilla/doggy/13.webm",
"img/media/indoors/vanilla/doggy/14.webm",
"img/media/indoors/vanilla/generic/0.webm",
"img/media/indoors/vanilla/generic/1.webm",
"img/media/indoors/vanilla/generic/2.webm",
"img/media/indoors/vanilla/generic/3.webm",
"img/media/indoors/vanilla/generic/4.webm",
"img/media/indoors/vanilla/generic/5.webm",
"img/media/indoors/vanilla/generic/6.webm",
"img/media/indoors/vanilla/generic/7.webm",
"img/media/indoors/vanilla/generic/8.webm",
"img/media/indoors/vanilla/generic/9.webm",
"img/media/indoors/vanilla/generic/10.webm",
"img/media/indoors/vanilla/missionary/0.webm",
"img/media/indoors/vanilla/missionary/1.webm",
"img/media/indoors/vanilla/missionary/2.webm",
"img/media/indoors/vanilla/missionary/3.webm",
"img/media/indoors/vanilla/missionary/4.webm",
"img/media/indoors/vanilla/missionary/5.webm",
"img/media/indoors/vanilla/missionary/6.webm",
"img/media/indoors/vanilla/missionary/7.webm",
"img/media/indoors/vanilla/missionary/8.webm",
"img/media/indoors/vanilla/missionary/9.webm",
]>>
<<set $home_anal = [
"img/media/indoors/anal/doggy/0.webm", "img/media/indoors/anal/doggy/1.webm", "img/media/indoors/anal/doggy/2.webm", "img/media/indoors/anal/doggy/3.webm", "img/media/indoors/anal/doggy/4.webm", "img/media/indoors/anal/doggy/5.webm", "img/media/indoors/anal/doggy/6.webm", "img/media/indoors/anal/doggy/7.webm", "img/media/indoors/anal/doggy/8.webm",
"img/media/indoors/anal/doggy/9.webm",
"img/media/indoors/anal/doggy/10.webm",
"img/media/indoors/anal/doggy/11.webm",
"img/media/indoors/anal/doggy/12.webm",
"img/media/indoors/anal/doggy/13.webm",
"img/media/indoors/anal/doggy/14.webm",
"img/media/indoors/anal/generic/0.webm",
"img/media/indoors/anal/generic/1.webm",
"img/media/indoors/anal/generic/2.webm",
"img/media/indoors/anal/generic/3.webm",
"img/media/indoors/anal/generic/4.webm",
"img/media/indoors/anal/generic/5.webm",
"img/media/indoors/anal/generic/6.webm",
"img/media/indoors/anal/generic/7.webm",
"img/media/indoors/anal/generic/8.webm",
"img/media/indoors/anal/generic/9.webm",
"img/media/indoors/anal/generic/10.webm",
"img/media/indoors/anal/generic/11.webm",
"img/media/indoors/anal/generic/12.webm",
"img/media/indoors/anal/generic/13.webm",
"img/media/indoors/anal/generic/14.webm",
"img/media/indoors/anal/generic/15.webm",
"img/media/indoors/anal/generic/16.webm",
"img/media/indoors/anal/generic/17.webm",
"img/media/indoors/anal/missionary/0.webm",
"img/media/indoors/anal/missionary/1.webm",
"img/media/indoors/anal/missionary/2.webm",
"img/media/indoors/anal/missionary/3.webm",
"img/media/indoors/anal/missionary/4.webm",
"img/media/indoors/anal/missionary/5.webm",
"img/media/indoors/anal/missionary/6.webm",
"img/media/indoors/anal/missionary/7.webm",
]>>
<<set $striptease_private = [
"img/media/special/striptease/private/0.webm",
"img/media/special/striptease/private/1.webm",
"img/media/special/striptease/private/2.webm",
"img/media/special/striptease/private/3.webm",
"img/media/special/striptease/private/4.webm",
]>>
<<set $striptease_pole = [
"img/media/special/striptease/0.webm", "img/media/special/striptease/1.webm", "img/media/special/striptease/2.webm", "img/media/special/striptease/3.webm", "img/media/special/striptease/4.webm",
]>>
<<set $striptease_blow = [
"img/media/special/striptease/bj/0.webm",
"img/media/special/striptease/bj/1.webm",
"img/media/special/striptease/bj/2.webm",
"img/media/special/striptease/bj/3.webm",
"img/media/special/striptease/bj/4.webm",
"img/media/special/striptease/bj/5.webm",
"img/media/special/striptease/bj/6.webm",
]>>
<<set $striptease_vag = [
"img/media/special/striptease/vanilla/0.webm",
"img/media/special/striptease/vanilla/1.webm",
"img/media/special/striptease/vanilla/2.webm",
"img/media/special/striptease/vanilla/3.webm",
"img/media/special/striptease/vanilla/4.webm",
"img/media/special/striptease/vanilla/5.webm",
"img/media/special/striptease/vanilla/6.webm",
]>>
<<set $striptease_anal = [
"img/media/special/striptease/anal/0.webm",
"img/media/special/striptease/anal/1.webm",
"img/media/special/striptease/anal/2.webm",
"img/media/special/striptease/anal/3.webm",
"img/media/special/striptease/anal/4.webm",
]>>
<<set $wc_blow = [
"img/media/special/wc/bj/0.webm",
"img/media/special/wc/bj/1.webm",
"img/media/special/wc/bj/2.webm",
"img/media/special/wc/bj/3.webm",
"img/media/special/wc/bj/4.webm",
"img/media/special/wc/bj/5.webm",
]>>
<<set $wc_vag = [
"img/media/special/wc/vanilla/0.webm",
"img/media/special/wc/vanilla/1.webm",
"img/media/special/wc/vanilla/2.webm",
"img/media/special/wc/vanilla/3.webm",
"img/media/special/wc/vanilla/4.webm",
"img/media/special/wc/vanilla/5.webm",
]>>
<<set $wc_anal = [
"img/media/special/wc/anal/0.webm",
"img/media/special/wc/anal/1.webm",
"img/media/special/wc/anal/2.webm",
"img/media/special/wc/anal/3.webm",
"img/media/special/wc/anal/4.webm",
]>>
<<set $shower_blow = [
"img/media/special/shower/bj/0.webm",
"img/media/special/shower/bj/1.webm",
"img/media/special/shower/bj/2.webm",
"img/media/special/shower/bj/3.webm",
"img/media/special/shower/bj/4.webm",
]>>
<<set $shower_vag = [
"img/media/special/shower/vanilla/0.webm",
"img/media/special/shower/vanilla/1.webm",
"img/media/special/shower/vanilla/2.webm",
"img/media/special/shower/vanilla/3.webm",
"img/media/special/shower/vanilla/4.webm",
]>>
<<set $shower_anal = [
"img/media/special/shower/anal/0.webm",
"img/media/special/shower/anal/1.webm",
"img/media/special/shower/anal/2.webm",
"img/media/special/shower/anal/3.webm",
"img/media/special/shower/anal/4.webm",
]>>
<<set $gangbang_entrance = [
"img/media/gb/entrance/0.webm", "img/media/gb/entrance/1.webm",
"img/media/gb/entrance/2.webm",
"img/media/gb/entrance/3.webm",
"img/media/gb/entrance/4.webm",
]>>
<<set $gangbang_blowjob = [
"img/media/gb/bj/0.webm", "img/media/gb/bj/1.webm", "img/media/gb/bj/2.webm", "img/media/gb/bj/3.webm", "img/media/gb/bj/4.webm", "img/media/gb/bj/5.webm",
]>>
<<set $gangbang_sex = [
"img/media/gb/generic/0.webm", "img/media/gb/generic/1.webm", "img/media/gb/generic/2.webm", "img/media/gb/generic/3.webm", "img/media/gb/generic/4.webm", "img/media/gb/generic/5.webm",
]>>
<<set $gangbang_dp = [
"img/media/gb/dp/0.webm", "img/media/gb/dp/1.webm", "img/media/gb/dp/2.webm", "img/media/gb/dp/3.webm", "img/media/gb/dp/4.webm",
]>>
<<set $gangbang_facial = [
"img/media/gb/facial/0.webm", "img/media/gb/facial/1.webm", "img/media/gb/facial/2.webm", "img/media/gb/facial/3.webm", "img/media/gb/facial/4.webm",
]>>
<<set $gangbang_creampie = [
"img/media/v_c/0.webm", "img/media/v_c/1.webm", "img/media/v_c/2.webm", "img/media/v_c/3.webm", "img/media/v_c/4.webm", "img/media/a_c/0.webm", "img/media/a_c/1.webm", "img/media/a_c/2.webm", "img/media/a_c/3.webm", "img/media/a_c/4.webm", "img/media/a_c/5.webm",
]>>
<<set $outdoors_blow = [
"img/media/outdoors/bj/0.webm",
"img/media/outdoors/bj/1.webm",
"img/media/outdoors/bj/2.webm",
"img/media/outdoors/bj/3.webm",
"img/media/outdoors/bj/4.webm",
"img/media/outdoors/bj/5.webm",
"img/media/outdoors/bj/6.webm",
]>>
<<set $outdoors_vag = [
"img/media/outdoors/vanilla/0.webm", "img/media/outdoors/vanilla/1.webm", "img/media/outdoors/vanilla/2.webm", "img/media/outdoors/vanilla/3.webm", "img/media/outdoors/vanilla/4.webm",
]>>
<<set $outdoors_anal = [
"img/media/outdoors/anal/0.webm", "img/media/outdoors/anal/1.webm", "img/media/outdoors/anal/2.webm", "img/media/outdoors/anal/3.webm", "img/media/outdoors/anal/4.webm",
"img/media/outdoors/anal/5.webm",
]>>
<<set $car_blow = [
"img/media/special/car/bj/0.webm",
"img/media/special/car/bj/1.webm",
"img/media/special/car/bj/2.webm",
"img/media/special/car/bj/3.webm",
"img/media/special/car/bj/4.webm",
]>>
<<set $car_vag = [
"img/media/special/car/vanilla/0.webm", "img/media/special/car/vanilla/1.webm", "img/media/special/car/vanilla/2.webm", "img/media/special/car/vanilla/3.webm", "img/media/special/car/vanilla/4.webm", "img/media/special/car/vanilla/5.webm", "img/media/special/car/vanilla/6.webm", "img/media/special/car/vanilla/7.webm",
"img/media/special/car/vanilla/8.webm",
]>>
<<set $car_anal = [
"img/media/special/car/anal/0.webm", "img/media/special/car/anal/1.webm", "img/media/special/car/anal/2.webm", "img/media/special/car/anal/3.webm", "img/media/special/car/anal/4.webm", "img/media/special/car/anal/5.webm",
]>>
<<set $prison_blow = [
"img/media/special/prison/bj/0.webm",
"img/media/special/prison/bj/1.webm",
"img/media/special/prison/bj/2.webm",
"img/media/special/prison/bj/3.webm",
"img/media/special/prison/bj/4.webm",
"img/media/special/prison/bj/5.webm",
"img/media/special/prison/bj/6.webm",
]>>
<<set $prison_vag = [
"img/media/special/prison/vanilla/0.webm",
"img/media/special/prison/vanilla/1.webm",
"img/media/special/prison/vanilla/2.webm",
"img/media/special/prison/vanilla/3.webm",
"img/media/special/prison/vanilla/4.webm",
]>>
<<set $prison_anal = [
"img/media/special/prison/anal/0.webm",
"img/media/special/prison/anal/1.webm",
"img/media/special/prison/anal/2.webm",
"img/media/special/prison/anal/3.webm",
"img/media/special/prison/anal/4.webm",
]>>
<<set $distributor_blowjob = [
"img/media/characters/distributor/bj/0.webm",
"img/media/characters/distributor/bj/1.webm",
"img/media/characters/distributor/bj/2.webm",
"img/media/characters/distributor/bj/3.webm",
"img/media/characters/distributor/bj/4.webm",
]>>
<<set $distributor_anal = [
"img/media/characters/distributor/anal/0.webm",
"img/media/characters/distributor/anal/1.webm",
"img/media/characters/distributor/anal/2.webm",
"img/media/characters/distributor/anal/3.webm",
"img/media/characters/distributor/anal/4.webm",
]>>
<<set $distributor_creampie = [
"img/media/characters/distributor/a_c/0.webm",
"img/media/characters/distributor/a_c/1.webm",
"img/media/characters/distributor/a_c/2.webm",
"img/media/characters/distributor/a_c/3.webm",
"img/media/characters/distributor/a_c/4.webm",
]>>
<<set $romano_blowjob = [
"img/media/characters/romano/bj/0.webm",
"img/media/characters/romano/bj/1.webm",
"img/media/characters/romano/bj/2.webm",
"img/media/characters/romano/bj/3.webm",
]>>
<<set $romano_sex = [
"img/media/characters/romano/vanilla/0.webm",
"img/media/characters/romano/vanilla/1.webm",
"img/media/characters/romano/vanilla/2.webm",
]>>
<<set $gh_media = [
"img/media/special/gloryhole/0.webm",
"img/media/special/gloryhole/1.webm",
"img/media/special/gloryhole/2.webm",
"img/media/special/gloryhole/3.webm",
"img/media/special/gloryhole/4.webm",
"img/media/special/gloryhole/5.webm",
"img/media/special/gloryhole/6.webm",
"img/media/special/gloryhole/7.webm",
"img/media/special/gloryhole/8.webm",
"img/media/special/gloryhole/9.webm",
]>>
<<set $intruder_sex = [
"img/media/special/intruder/0.webm",
"img/media/special/intruder/1.webm",
"img/media/special/intruder/2.webm",
"img/media/special/intruder/3.webm",
]>>
<<set $ffm_bj = [
"img/media/special/ffm/bj/0.webm",
"img/media/special/ffm/bj/1.webm",
"img/media/special/ffm/bj/2.webm",
"img/media/special/ffm/bj/3.webm",
"img/media/special/ffm/bj/4.webm",
"img/media/special/ffm/bj/5.webm",
"img/media/special/ffm/bj/6.webm",
]>>
<<set $ffm_sex = [
"img/media/special/ffm/sex/0.webm",
"img/media/special/ffm/sex/1.webm",
"img/media/special/ffm/sex/2.webm",
"img/media/special/ffm/sex/3.webm",
"img/media/special/ffm/sex/4.webm",
"img/media/special/ffm/sex/5.webm",
"img/media/special/ffm/sex/6.webm",
"img/media/special/ffm/sex/7.webm",
"img/media/special/ffm/sex/8.webm",
]>>
<<set $slick_trick_sex = [
"img/media/characters/slick-trick/0.webm",
"img/media/characters/slick-trick/1.webm",
"img/media/characters/slick-trick/2.webm",
"img/media/characters/slick-trick/3.webm",
]>>
<<set $volkov_sex = [
"img/media/characters/volkov/0.webm",
"img/media/characters/volkov/1.webm",
"img/media/characters/volkov/2.webm",
"img/media/characters/volkov/3.webm",
"img/media/characters/volkov/4.webm",
]>>
<<set $warehouse_raid_sex = [
"img/media/special/warehouse_raid/0.webm",
"img/media/special/warehouse_raid/1.webm",
"img/media/special/warehouse_raid/2.webm",
"img/media/special/warehouse_raid/3.webm",
]>>
<<set $pool_entrance = [
"img/media/special/pool/e_0.webm",
"img/media/special/pool/e_1.webm",
"img/media/special/pool/e_2.webm",
"img/media/special/pool/e_3.webm",
]>>
<<set $pool_sex = [
"img/media/special/pool/s_0.webm",
"img/media/special/pool/s_1.webm",
"img/media/special/pool/s_2.webm",
"img/media/special/pool/s_3.webm",
"img/media/special/pool/s_4.webm",
]>>
<<set $changing_room_sex = [
"img/media/special/changing_room/0.webm",
"img/media/special/changing_room/1.webm",
"img/media/special/changing_room/2.webm",
"img/media/special/changing_room/3.webm",
"img/media/special/changing_room/4.webm",
]>>
<<set $nc_sex = [
"img/media/special/nightclub/0.webm",
"img/media/special/nightclub/1.webm",
"img/media/special/nightclub/2.webm",
"img/media/special/nightclub/3.webm",
"img/media/special/nightclub/4.webm",
"img/media/special/nightclub/5.webm",
"img/media/special/nightclub/6.webm",
]>><style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/hackers.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<set _sixth_yapping = $sixth_yapping.random()>>\
The hideout is a compact space humming with the constant, low-frequency buzz of electronics. Flickering monitors line the walls, their screens displaying streams of code and somekind of cryptic data. Those are screensavers for sure, right? Either that or these guys are posers.
At the center of this technological labyrinth sits Sixth, comfortably ensconced at a cluttered desk.
<span class="male_text">- "_sixth_yapping"</span>
<<if $p_inv.has("Electrical Components")>>\
<<button "Sell a bunch of electrical components - 150$." "Hackers Den">>
<<drop $p_inv 'Electrical Components' 1>>
<<money `150`>>
<<set $hackers_rep += 1>>\
<</button>>
<</if>>\
\
<<if $hackers_rep >= 10 && $hackers_met != 3>>\
<span class="male_text">- "Yo, seems like that we are ready to entrust our special services to ya. You have supplied us with lot of devices." </span>
<<linkreplace "What kind of services?">>\
<span class="male_text"> - "Do you know how are we utilizing these components? Do you hear this humming? That's how sounds kakashicoin farms at work. If ya have no idea what thats mean... well, in a nutshell, you're trading electricity for money. Simple as that. And these money, especially in this city, aren't considered as some stocks, digital assets or, how'd you said that, uh... capital assets, i guess. In short - you can launder you money with it. And we can help you with farming setup for mere sum of... 8000$. And you'll gonna need a place for it. Also, components on you. Don't overthink much about electronics, i'm not gonna bother you with mumbo-jumbo, just bring me a lot of thingies... but pack them in something, and i'll find some spare details for farms and pack them with some guide for dummies."</span>
<<link '"Got it"' 'Hackers Den'>>\
<<set $hackers_met = 3>>\
<</link>>\
<</linkreplace>>\
<br>\
<</if>>\
\
<<if $hackers_met >= 3>>\
<<if $warehouse_inv.has("Electronic Shipment") && $money >= 8000>>\
<<button "Order a kakoshicoin farm - 1 electronic shipment, 8000$ and 2 hours.">>
<<drop $warehouse_inv "Electronic Shipment" 1>>\
<<money `-8000`>>\
<<pickup $p_inv "Kakoshicoin Farm Kit" 1>>\
<<addhours 2>>\
<<run Engine.show()>>\
<</button>>
<<elseif $warehouse_inv.has("Electronic Shipment") && $money < 8000>>\
<span class="not_available"> Order a kakoshicoin farm - 1 electronic shipment, 8000$ and 2 hours.</span>\
<<elseif !$warehouse_inv.has("Electronic Shipment")>>\
<span class="not_available">Order a kakoshicoin farm - 1 electronic shipment, 8000$ and 2 hours.</span>
<</if>>\
<</if>>\
\
<<if $heist_type>>\
<br>\
<<hackers_intel>>\
<<if $hackers_intel == false && $money >= _intel_price>>\
<span class="action_link"><<link "Buy intel boost for your heist." "Hackers Den">>
<<money `-_intel_price`>>\
<<heist_progress `_intel_boost`>>\
<<set $hackers_intel = true>>\
<</link>></span> You'll get _intel_boost pts of intel for _intel_price​$.
<<elseif $money < _intel_price>>\
<span class="not_available"> Buy intel boost for your heist. You'll get _intel_boost pts of intel for _intel_price​$. </span>
<<elseif $hackers_intel == true>>\
<span class="not_available"> You already bought intel for this heist. </span>
<</if>>\
<</if>>\
<<out_link>><<link "Get back to the main street of Suburbs" "Suburbs">>\
<<addmins 10>>\
<</link>><</out_link>>\
\
<<silently>>\
<<if $hackers_met == 1>>
<<goto "Meeting Hackers">>
<</if>>\
<</silently>>\<<widget "distributor_hackers_quest">>\
<<if $distributor_hackers == 0>>\
<br>\
<<linkreplace "Special order?">>\
<span class="distributor">- "Yes, i want to introduce you to someone. Someone who's quite stealthy. Bring me an electronics shipment and I'll show you where to look for tech-savvies for our business. And mind you, they revel in electronics. And you'll get a small bonus from me."</span>
<<if $hackers_met > 0>>\
<<linkreplace '"I already know about hackers."'>>\
<<set $distributor_hackers = 2>>\
<<run Engine.show()>>\
<<replace "#distributor_answer">><span class="distributor">- "Oh, nevermind then. You're not messing around, eh?"</span><</replace>>\
<</linkreplace>>\
<</if>>\
<br>\
<<link "Accept." "The Distributor">>\
<<set $distributor_hackers = 1>>\
<</link>>\
<<if $p_inv.compare($distributor_quest)>>\
<br>\
<<linkreplace '"I already have components on me."'>>\
<<drop $p_inv "Electrical Components" 10>>\
<<money `2000`>>\
<<set $distributor_hackers = 2>>\
<<set $hackers_met = 1>>\
<<run Engine.show()>>\
<<replace "#distributor_answer">><br><span class="distributor">- "Why would yo... Great. Now listen closely..."</span> - Distributor tells you how to get to the hackers hideout. Apparently, their den located in Suburbs. Also, Distributor gave you 2000$ for this order. ''From now you can visit hackers den.''<</replace>>\
<</linkreplace>>\
<</if>>
<</linkreplace>>\
<</if>>\
<<if $distributor_hackers == 1 && $p_inv.compare($distributor_quest)>>\
<br>\
<<link "Turn in the special order with 10 electrical components.">>
<<drop $p_inv "Electrical Components" 10>>\
<<set $distributor_hackers = 2>>\
<<set $hackers_met = 1>>\
<<run Engine.show()>>\
<<replace "#distributor_answer">><span class="distributor">- "Great work. Now listen closely..."</span> - Distributor tells you how to get to the hackers hideout. Apparently, their den located in Suburbs. Also, Distributor gave you 2000$ for this order. ''From now you can visit hackers den.''<</replace>>\
<</link>>\
<<elseif $distributor_hackers == 1 && !$p_inv.compare($distributor_quest)>>\
<span class="not_available"> You don't have enough electrical components for Distributor's special order.</span>\
<</if>>\
<</widget>>\<<recount_crypto>>\
<<if $basement == 1>>\
A plain concrete basement with just enough space for your schemes. A few worktables, some scattered tools, and that hum of hidden potential. It’s not glamorous, but it’s yours - and it’s perfect for getting things done under the radar.
<style>
body::before {
content: '';
background-image: url("img/background/home/basement-t1.webp");
inset: 0;
position: fixed;
background-size: cover;
filter:grayscale(90%);
}
</style>\
<<elseif $basement == 2>>\
The once bare concrete walls now host sturdy shelves, organized gear, and a hint of purpose. Upgraded lighting keeps things practical, and there’s just enough space to feel like a proper headquarters for your growing ambitions. It’s not luxury, but it’s progress.
<style>
body::before {
content: '';
background-image: url("img/background/home/basement-t2.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<else>>\
Spacious and well-organized, this basement feels like a true command center. Polished floors, reinforced walls, and ample storage for tools and gear give it a professional edge. There’s room for bigger plans and the means to pull them off.
<style>
body::before {
content: '';
background-image: url("img/background/home/basement-t3.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 30%, rgba(10,8,2,0.6) 100%);
background-size: cover;
}
</style>\
<</if>>\
<<if $installed_farm > 0>>\
You have Kakoshicoin cryptofarm down here.
Farms installed right now: $installed_farm out of $coins_farm_size.
Electricity bill suffers because of this for $farm_tax​$ more.
Clean profit from crypto: $farm_earnings​$/day.
Potential laundry: _potential_income​$/day.
<</if>>\
<<if $p_inv.has("Kakoshicoin Farm Kit") && $installed_farm < $coins_farm_size>>\
<<link "Setup kakoshicoin farm." "Basement">>\
<<drop $p_inv "Kakoshicoin Farm Kit" 1>>\
<<addmins 30>>\
<<set $installed_farm += 1>>\
<<set $farm_tax += 40>>\
<<set $farm_earnings += 50>>\
<</link>>\
<<elseif $hackers_met < 3>>\
<span class="not_available"> This place is fairly cold. Maybe you could setup here a cryptocoins farm if you knew how... </span>\
<<elseif $installed_farm == $coins_farm_size || $installed_farm > $coins_farm_size>>\
<span class="not_available"> You don't have any more space for farms. </span>\
<<else>>\
<span class="not_available"> You don't have any additional kits on you.</span>\
<</if>>
<<if $p_boss == true && $band_right_hand == true>>\
<<include "HeistMenu">>\
<br>\
<</if>>\
<<out_link>><<link "Go back upstairs" "Home">>\
<<addmins 5>>\
<</link>><</out_link>>\<<silently>>\
<<set _market_money_roll = random(500, 1500)>>
<<set _ring_money_roll = random(1500, 3000)>>
<<count_lab_production_speed>>
<<set $lab_prod += $lab_prod_speed>>
<<recount_crypto>>
<<if $night_club == true>>
<<nc_calculations>>
<<nc_newday>>
<<if $nc_angry_event_cd > 0>>
<<set $nc_angry_event_cd -= 1>>
<</if>>
<</if>>
<<if $moonshine_trailer == true>>
<<moonshine_newday>>
<</if>>
<<if $p_warehouse > 0>>
<<count_warehouse_tax>>
<</if>>
<</silently>>\
Your ''personal spendings'':
$rent​$ - food and property tax.
<<money `- $rent`>>\
<<set $total_loss -= $rent>>\
<<rent_check>>\
\
<<if $car_1 == true || $car_2 == true || $car_3 == true>>\
20$ - car maintenance.
<<money `-20`>>\
<<set $total_loss -= 20>>\
<</if>>\
\
<<if $p_warehouse === 1>>\
_warehouse_tax​$ - warehouse rent.
<<money `-_warehouse_tax`>>\
<<set $total_loss -= _warehouse_tax>>\
<</if>>\
<<if $p_warehouse >= 2>>\
_warehouse_tax​$ - warehouse property tax.
<<money `-_warehouse_tax`>>\
<<set $total_loss -= _warehouse_tax>>\
<</if>>\
\
<<if $p_lab == true>>\
$lab_tax​$ - your lab on the outskirts.
<<money `-$lab_tax`>>\
<<set $total_loss -= $lab_tax>>\
<</if>>\
\
<<if $night_club == true>>\
$nc_tax​$ - maintenance cost for your night club.
<<money `-$nc_tax`>>\
<<set $total_loss -= $nc_tax>>\
<<set $reputation += 30>>\
<<set _risk_roll = random(1, 100)>>\
<<if _risk_roll <= $nc_risks>>\
<<set _risk_desc = $nc_risk_desc.random()>>\
<<set _risk_price = random(8, 20) * $nc_pop>>\
<<set _risk_pop_roll = random(1, 4)>>\
<<nc_pop `-_risk_pop_roll`>>\
<<if $money >= _risk_price>>\
_risk_desc You had to pay _risk_price​$ and reputation of your club is damaged.
<<money `-_risk_price`>>\
<<set $total_loss -= _risk_price>>\
<<else>>\
_risk_desc You would had to pay _risk_price​$, but you don't have such money so reputation of your club is damaged even more.
<<nc_pop `-2`>>\
<</if>>\
<</if>>\
<</if>>\
\
<<if $brothel == true>>\
$brothel_tax​$ - rent for brothel.
<<money `-$brothel_tax`>>\
<<set $reputation += 30>>\
<<set $total_loss -= $brothel_tax>>\
<</if>>\
<<if $installed_farm > 0>>\
$farm_tax​$ - maintenance of crypto farm.
<<money `-$farm_tax`>>\
<<set $total_loss -= $farm_tax>>\
<</if>>\
\
<<if $bank_credit_1 > 0>>\
<<money `-60`>>\
<<set $bank_credit_1 -= 60>>\
60$ - your payment for bank loan. You need to pay $bank_credit_1​$ more.
<<set $total_loss -= 60>>\
<</if>>\
\
<<if $bank_credit_2 > 0>>\
<<money `-300`>>\
<<set $bank_credit_2 -= 60>>\
300$ - your payment for bank loan. You need to pay $bank_credit_2​$ more.
<<set $total_loss -= 300>>\
<</if>>\
\
<<if $bank_credit_3 > 0>>\
<<money `-960`>>\
<<set $bank_credit_3 -= 960>>\
960$ - your payment for bank loan. You need to pay $bank_credit_3​$ more.
<<set $total_loss -= 960>>\
<</if>>\
\
<<if $bank_credit_4 > 0>>\
<<money `-1800`>>\
<<set $bank_credit_4 -= 1800>>\
1800$ - your payment for bank loan. You need to pay $bank_credit_4​$ more.
<<set $total_loss -= 1800>>\
<</if>>\
Your ''legal businesses'':
<<if $installed_farm > 0>>\
$farm_earnings​$ - your "clean" cut from cryptofarm.
<<money `$farm_earnings`>>\
<<set $total_gained += $farm_earnings>>\
<</if>>\
<<if $night_club == true>>\
<<set $nc_income = $nc_income + $nc_oscillation>>\
$nc_income​$ - your profit from "$nc_name".
<<money `$nc_income`>>\
<<set $total_gained += $nc_income>>\
<</if>>\
<<if $brothel == true>>\
<<brothel_work>>\
<</if>>\
Your ''dirty revenue'':
<<if $downtown_state == true>>\
<<dirty_money `_market_money_roll`>>\
<<set $total_gained_dirty += _market_money_roll>>\
_market_money_roll​$ - dirty money from marketplace racket.
<</if>>\
<<if $suburbs_state == true>>\
<<dirty_money `_ring_money_roll`>>\
<<set $total_gained_dirty += _ring_money_roll>>\
_ring_money_roll​$ - dirty money from underground ring.
<</if>>\
<<if $dirty_money > 0>>\
Your ''laundry'':
<<if $installed_farm > 0>>\
<<cryptofarm_laundry>>\
_crypto_laundry​$ - cleaned by cryptofarm.
<<set $total_gained += _crypto_laundry>>\
<<set $total_washed += _crypto_laundry>>\
<</if>>\
<<if $night_club == true>>\
<<set_cleaning_amount_nc>>\
<<set $total_gained += _cleaning_amount_nc>>\
<<set $total_washed += _cleaning_amount_nc>>\
_cleaning_amount_nc​$ - cleaned in "$nc_name".
<</if>>\
<<if $suburbs_state == true>>\
<<set_cleaning_amount_autocenter>>\
<<set $total_gained += _cleaning_amount_autocenter>>\
<<set $total_washed += _cleaning_amount_autocenter>>\
_cleaning_amount_autocenter​$ - cleaned by Mafia through auto center.
<</if>>\
<</if>>\
<<if $sluts_list.length > 0>>\
<<set _sluts_earnings_da = 0>>\
<<message "''Prostitution in Dark Alley'':">>\
<<for _i = 0; _i < $sluts_list.length; _i = _i + 1>>\
<<if $sluts_list[_i].work_location == "Dark Alleys">>\
<<set _v = $sluts_list[_i]>>\
<<capture _v, _i>>\
<<set_fem_rate_temp>>\
<<set _slut_earning = (_v.rate * random(7, 21) + random(0, 400)) * $sluts_bt>>\
<<set _sluts_earnings_da += _slut_earning>>\
_v.name _v.nickname has earned _slut_earning​$ today.
<</capture>>\
<</if>>\
<</for>>\
Total earnings in Dark Alley: ''_sluts_earnings_da​$''.
<<set $total_gained += _sluts_earnings_da>>\
<<money `_sluts_earnings_da`>>\
<</message>>
<</if>><<widget "cryptofarm_laundry">>\
<<silently>>\
<<set _crypto_laundry = 0>>\
<<set _cleaning_amount = ($farm_mod * 100)>>\
<<for _i = $installed_farm; _i > 0; _i-->>\
<<if $dirty_money >= _cleaning_amount>>\
<<dirty_money `-_cleaning_amount`>>\
<<money `_cleaning_amount`>>\
<<set _crypto_laundry += _cleaning_amount>>\
<<else>>\
<<set _cleaning_amount = $dirty_money>>\
<<dirty_money `-_cleaning_amount`>>\
<<money `_cleaning_amount`>>\
<<set _crypto_laundry += _cleaning_amount>>\
<</if>>\
<</for>>\
<</silently>>\
<</widget>>\
<<widget "lab_production">>\
Lab: \
<<if $lab_prod >= 100>>\
<<for $lab_prod >= 100>>\
<<set $lab_prod -= 100>>\
<<chems_production>>\
<</for>>\
<<else>>\
Not enough production speed to finish the batch.
<<if $lab_market == 2>>\
Agricultural produce from local market - 80$.
<<money `-80`>>\
<<pickup $p_craft "Agricultural Products" 1>>\
<</if>>\
<</if>>\
<</widget>>\
<<widget "chems_production">>\
<<set _random_chem = $chemist_offer.array.random()>>\
<<set _random_amount_chem = random(4, 6)>>\
_random_amount_chem _random_chem; \
<<pickup $p_craft _random_chem _random_amount_chem>>\
<<if $lab_prod_drugs == true>>\
<<set _random_amount = random(30, 60)>>\
_random_amount drugs;
<<pickup $p_inv "Drugs" _random_amount>>\
<</if>>\
<</widget>>\
<<widget "set_cleaning_amount_nc">>\
<<silently>>\
<<set _cleaning_amount_nc = $nc_laundry>>\
<<if $dirty_money >= _cleaning_amount_nc>>\
<<dirty_money `-_cleaning_amount_nc`>>\
<<money `_cleaning_amount_nc`>>\
<<else>>\
<<set _cleaning_amount_nc = $dirty_money>>\
<<dirty_money `-_cleaning_amount_nc`>>\
<<money `_cleaning_amount_nc`>>\
<</if>>\
<</silently>>\
<</widget>>\
<<widget "set_cleaning_amount_autocenter">>\
<<silently>>\
<<set _cleaning_amount_autocenter = random(1000, 2500)>>\
<<if $dirty_money >= _cleaning_amount_autocenter>>\
<<dirty_money `-_cleaning_amount_autocenter`>>\
<<money `_cleaning_amount_autocenter`>>\
<<else>>\
<<set _cleaning_amount_autocenter = $dirty_money>>\
<<dirty_money `-_cleaning_amount_autocenter`>>\
<<money `_cleaning_amount_autocenter`>>\
<</if>>\
<</silently>>\
<</widget>>\
<<widget "labs_upgrade">>\
<<if $lab_prod_upgrade == 0>>\
Better equipment, 25000$ - upgraded heating equipment, a gas extraction system, proper flasks and measurement apparatus (definitely not stolen!) - plus a complete renovation of the "facility". This will increase the production speed for each chemist by 5% and payment by 10$.
<<if $money >= 25000>>\
<<link "Upgrade!" "Player Lab">>
<<money `-25000`>>\
<<set $lab_prod_upgrade = 1>>\
<<set $chemist_payment += 25>>\
<<set $lab_production_mod += 5>>\
<</link>>\
<<else>>\
<span class="not_available">You don't have enough money. </span>\
<</if>>\
<<elseif $lab_prod_upgrade > 0>>\
<s>Better equipment, 25000$ - upgraded heating equipment, a gas extraction system, proper flasks and measurement apparatus (definitely not stolen!) - plus a complete renovation of the "facility". This will increase the production speed for each chemist by 5% and payment by 25$. </s> \
<</if>>\
\
<<if $lab_prod_upgrade == 1>>\
<br>\
Even better equipment, 45000$ - Safety equipment such as goggles, gloves, and coats - rather than plastic bags on the body - will surely boost your production! Also, modern thermometers, pH meters, and proper Bunsen burners (not homemade ones) are the way to go if you want to upgrade your ghetto lab. This will increase the production speed for each chemist by 10% and payment by $45.
<<if $money >= 45000>>\
<<link "Upgrade!" "Player Lab">>
<<money `-45000`>>\
<<set $lab_prod_upgrade = 2>>\
<<set $chemist_payment += 45>>\
<<set $lab_production_mod += 10>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available">You don't have enough money. </span>\
<</if>>\
<<elseif $lab_prod_upgrade > 1>>\
<br>\
<s> Even better equipment, 45000$ - Safety equipment such as goggles, gloves, and coats - rather than plastic bags on the body - will surely boost your production! Also, modern thermometers, pH meters, and proper Bunsen burners (not homemade ones) are the way to go if you want to upgrade your ghetto lab. This will increase the production speed for each chemist by 10% and payment by $25. </s> \
<</if>>\
\
<<if $lab_prod_upgrade == 2>>\
<br>\
A complete modernization of production, 100000$ - We’ll acquire all the necessary lab equipment and construct an underground lab with full ventilation and waste disposal systems. To divert attention, we’ll also set up a farm shop outside. You’re going to need to pay substitute workers, plus a tax, that will costs you additional $600 per day. This will increase the production speed for each chemist by 15% and payment by 65$.
<<if $money >= 100000>>\
<<link "Upgrade!" "Player Lab">>
<<money `-100000`>>\
<<set $lab_prod_upgrade = 3>>\
<<set $chemist_payment += 65>>\
<<set $lab_production_mod += 15>>\
<<set $lab_tax += 600>>
<</link>>\
<<else>>\
<br>\
<span class="not_available">You don't have enough money. </span>\
<</if>>\
<<elseif $lab_prod_upgrade > 2>>\
<br>\
<s> A complete modernization of production, 100000$ - We’ll acquire all the necessary lab equipment and construct an underground lab with full ventilation and waste disposal systems. To divert attention, we’ll also set up a farm shop outside. You’re going to need to pay substitute workers, plus a tax, that will costs you additional $200 per day. This will increase the production speed for each chemist by 15% and payment by 35$. </s> \
<</if>>\
\
<<if $lab_prod_upgrade > 2 && $lab_market == 0>>\
<br>\
Set up a small market around the lab, 30000$ - use the current business disguise to establish a full-fledged, local farmers' market. This will allow us to buy agricultural produce cheaply every day. Estimated price: $80 per unit.
<<if $money >= 30000>>\
<<link "Set up the market!" "Player Lab">>
<<money `-30000`>>\
<<set $lab_prod_upgrade = 4>>\
<<set $lab_market = 2>>\
<<set $lab_tax += 80>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available">You don't have enough money. </span>\
<</if>>\
<<elseif $lab_prod_upgrade > 2 && $lab_market == 1 || $lab_market == 2>>\
<br>\
<s> Set up a small market around the lab, 30000$ - use the current business disguise to establish a full-fledged, local farmers' market. This will allow us to buy agricultural produce cheaply every day. Estimated price: $80 per unit. </s> \
<</if>>\
<<if $lab_prod_drugs == false>>\
<br>\
Prepare equipment for drugs production, 15000$ -
this upgrade mainly involves acquiring all the necessary recipes and figuring out the production technologies. Most of the money will go toward bribing the right people. This will allow your chemists to produce a small amount of drugs each production cycle, materials used are leftovers.
<<if $money >= 15000>>\
<<link "Upgrade!" "Player Lab">>
<<money `-15000`>>\
<<set $lab_prod_drugs = true>>\
<</link>>\
<<else>>\
<span class="not_available">You don't have enough money. </span>\
<</if>>\
<<elseif $lab_prod_drugs == true>>\
<br>\
<s> Prepare equipment for drugs production, 15000$ - this upgrade mainly involves acquiring all the necessary recipes and figuring out the production technologies. Most of the money will go toward bribing the right people. This will allow your chemists to produce a small amount of drugs each production cycle, materials used are leftovers. </s> \
<</if>>\
<</widget>><style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/stripclub.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Disappointed client has reported about your shenanigans with aphrodisiac to manager.
Manager told you that it's not a first time something like that happens and he asks you to pay the fine for lost client - 500$. Everything else is ok and is within acceptable boundaries in this club.
He'll send you to the custody with small accusations, just "to clear your head" if you're not gonna pay. However, you won't be fired.
<<if $money >= 500>>\
<<link "Pay 500$." "Striptease Club">>
<<money `-500`>>\
<</link>>\
<<else>>\
<span class="not_available"> You don't have enough money. </span>
<</if>>
<<link "Just get me to the custody already." "Custody">>
<</link>>\<style>
body.center::before {
content: '';
background-image: url("img/background/center/park.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $do_it_anyway == true>>\
- "Oh, okay." The atmosphere shifted abruptly. He quickly run out of your sight and...
<</if>>\
You've seen that someone was following you. That's... creepy, <<linkappend "and the moment you thought its time to leave...">>
<<if $reputation >= 7000 && $do_it_anyway == false>>\
- "Oh, it's you... Sorry, I didn't mean to bother you. I'm not going to stand in your way. But please refrain from trying to rob my flat..."
<<link "That's right." "Central Park">>
<</link>> - your reputation speaks for itself!
<<link "Tell him to go ahead and do what he was planning to do with you... You're not gonna hold a grudge.">>\
<<set $do_it_anyway = true>>\
<<run Engine.show()>>\
<</link>>\
<<else>>\
<<set _roll = random(0, 20)>>\
<<if _roll >= 10>>\
A decent-looking man in a suit has blocked your way and told you that police is already on the way. That's your default office plankton, he shouldnt be a problem if you are well-preppared.
<<if $p_inv.has("Handheld Taser")>>\
<br>\
<<link "Use a taser and run away." "City Center">>\
<<set $do_it_anyway = false>>\
<<drop $p_inv "Handheld Taser" 1>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<span class="not_available"> If only you had taser on you...</span>
<</if>>\
<<if $p_traits.includes("fitness_2")>>\
<br>\
<<link "Push him off and run away." "City Center">>
<<set $do_it_anyway = false>>\
<<addmins 30>>\
<<stam `-1`>>\
<</link>>\
<<else>>\
<br>\
<span class="not_available"> Sadly, you're not strong enough to just push him away. </span>\
<</if>>\
<br>\
<<link "Accept your situation and wait for police." "Custody">>\
<<set $do_it_anyway = false>>\
<<addmins 30>>\
<</link>>\
<<else>>\
A plainclothes patrol officer has blocked your path. You're absolutely <<link "busted." "Custody">><<addmins 30>><</link>>\
<</if>>\
<</if>>\
<</linkappend>>\<style>
body.downtown::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/downtown/wc.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<set_wc_talks>>\
<center><<set _media_bj = $wc_blow.random()>>\
<<set_blowjob_desc>>\
He leads you into the club's WC. When you enter the bathroom, you smell a subtle haze of smoke and perfume. This "sacred" place has its own vibe that nightlife goers probably like a lot. This is a perfect spot to fresh yourself up, to take a smoke with a friend, maybe even to have a drug or... to fuck. And latter is the reason why are you here.
Seems like your fuckbuddy has the same thoughts, it took him a moment after door to the club closes before he starts making out with you. But you didn't expect that he's wanna to have sex with you right in front of other club patrons... Surprisingly, nobody seems to be astonished or shocked by your performance. Is it a normal thing in here? What a strange place...
Your partner has already unbuttoned his pants and begins to urgently put pressure on your shoulders, without any fear of the crowd.
<<linkappend "Get yourself on the knees.">>
<span id="public_gray">"_random_talk_1" - you hear a whispers from the crowd...</span>
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
_blowjob_desc
<<linkappend "He positioned you as desired and prepared himself for penetration.">>\
<br>\
<<roll_penetration>>\
<<if _penetration == "anal">>\
<<set _media_sex = $wc_anal.random()>>\
<<anal_whore_progress>>\
<<else>>\
<<set _media_sex = $wc_vag.random()>>\
<</if>>\
<span id="public_gray">"_random_talk_2" - they do not whisper anymore...</span>
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<<set_event_desc>>\
_event_desc
<span id="public_gray">"_random_talk_3" - people are attentively watching your performance...</span>
<<linkappend "It wasnt really long before you heard a grunts of incoming orgasm from the guy.">>\
<<finisher>>
You sit together for a while and then you decided to clean up and go <<link "back to the club" "Nightclub">><</link>>. He took the cigarette and began smoking while looking at the phone, you're not interesting for him anymore. Rude.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
\
</center><style>
body.suburbs::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/suburbs/gym.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center><<set _media_bj = $shower_blow.random()>>\
<<set_blowjob_desc>>\
With a surprised expression, he took the pill. It didn't take long to see the results of the aphrodisiac's effects. His eyes were quickly filled with desire, his mannerisms became more unhinged, and he straightened his shoulders and stuck out his chest, looking like a peacock searching for a partner. It's a good thing you're not taking those pills, you're fucking for a good sports, not because some animalistic urges.
He took you by the hand and led you to the showers. He couldn't make it more obvious to the other gym-goers why you were going there... Oh well, it's your fault after all.
He swiftly shed his own clothes the moment you entered the shower area, and, gladly, he took care of your clothes more carefully. His behavior seemed too zealous, you thought. Maybe it's because the aphrodisiac doesn’t mix well with steroids?... before you had time to think about ghetto chemistry, he turned the closest shower on, prolly wants to muffle the sounds, and impatiently pressed on your shoulders, so only thing left is to <<linkappend "get yourself on the knees.">>
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
_blowjob_desc
<<linkappend "He quickly dropped you into desired position and prepared himself for penetration.">>\
<br>\
<<roll_penetration>>\
<<if _penetration == "anal">>\
<<set _media_sex = $shower_anal.random()>>\
<<anal_whore_progress>>\
<<else>>\
<<set _media_sex = $shower_vag.random()>>\
<</if>>\
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<<set_event_desc>>\
_event_desc
<<linkappend "It wasnt really long before you heard a grunts of incoming orgasm from your bedfellow.">>\
<<finisher>>
You stayed in the shower for a while longer <<link "before you left your partner." "Gym">><</link>>. Anyway, you don't have any obligations to him, and he's not pressing you to continue the relationship.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
\
</center><<silently>>\
<<set _head_t1 = Object.values($mall_head_t2)>>
<<set _top_t1 = Object.values($mall_top_t2)>>
<<set _bottom_t1 = Object.values($mall_bottom_t2)>>
<<set _multislot_t1 = Object.values($mall_multislot_t2)>>
<<set _underbottom_t1 = Object.values($mall_underbottom_t2)>>
<<set _shoe_t1 = Object.values($mall_shoe_t2)>>
<<set _misc_t1 = Object.values($mall_misc_t2)>>
<</silently>>\
<style>
body.center::before {
content: '';
background-image: url("img/background/center/mall.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<button "Neck">>\
<<replace "#shop_list">> \
<<head_list>> \
<</replace>>\
<</button>>\
<<button "Top">>\
<<replace "#shop_list">> \
<<top_list>> \
<</replace>>\
<</button>>\
<<button "Bottom">>\
<<replace "#shop_list">> \
<<bottom_list>> \
<</replace>>\
<</button>>\
<<button "Dresses">>\
<<replace "#shop_list">> \
<<multislot_list>> \
<</replace>>\
<</button>>\
<<button "Lingerie">>\
<<replace "#shop_list">> \
<<underbottom_list>> \
<</replace>>\
<</button>>\
<<button "Shoes">>\
<<replace "#shop_list">> \
<<shoe_list>> \
<</replace>>\
<</button>>\
<<button "Misc">>\
<<replace "#shop_list">> \
<<misc_list>> \
<</replace>>\
<</button>>\
<<button "Stop browsing">>\
<<replace "#shop_list">> \
<</replace>>\
<</button>>\
<span id="shop_list"></span>
<<out_link>><<link "Let's get out of here" "Mall">>
<</link>><</out_link>>
<<out_link>><<link "Get back to the main street of City Center" "City Center">>
<<addmins 15>>
<</link>><</out_link>><<dt_encounter>>\
<center><<enemy_status>>
<span id="enemy_log">Only one thug is gonna walk away from this alley today.</span>\
<<enemy_intentions>>\
<span id="p_log"></span>\
</center>\
<<melee_attack>>\
<<silently>>\
<<if $enemy_hp <= 0>>
<<combat_reset>>\
<<melee_success>>\
<<goto "Downtown Win">>\
<</if>>
<<if $p_hp <= 0>>
<<melee_fail>>\
<<combat_reset>>\
<<goto "Downtown Lose">>\
<</if>>
<</silently>>\<<widget "combat_stam">>\
<<set $combat_stamina = Math.clamp($combat_stamina + _args[0], 0, 100)>>\
<</widget>>\
<<widget "melee_attack">>\
<<if $stun_timer == 0>>\
<<if $weapon_equipped == "Nothing" || $weapon_equipped == "Brass Knuckles">>\
<<punch>>\
<<elseif $weapon_equipped == "Stanley Knife">>\
<<stab>>\
<<elseif $weapon_equipped == "Butterfly Knife">>\
<<stab_t2>>\
<<elseif $weapon_equipped == "Baseball Bat">>\
<<hit_t2>>\
<<elseif $weapon_equipped == "Spiked Knuckles">>\
<<punch_t2>>\
<<elseif $weapon_equipped == "Metal Chain">>\
<<hit_t2>>\
<<elseif $weapon_equipped == "Crowbar">>\
<<hit_t2>>\
<<else>>\
<<hit>>\
<</if>>
<<defence>>
<<evasion>>
\
<<if $skill_cd == 0>>\
<<skills>>\
<<else>>\
<span class="not_available"> Skills cooldown: $skill_cd. </span>
<</if>>\
\
<<if $p_traits.includes("melee_3")>>\
<<if $refresh_cd == 0>>\
<<deep_breath>>\
<<else>>\
<span class="not_available"> "Deep Breath" cooldown: $refresh_cd.</span>
<</if>>\
<</if>>\
<<else>>\
<<link "You're stunned!">>\
<<enemy_turn>>\
<<set $p_log = " You just stood there, trying to pull yourself together.">>\
<<end_turn>>\
<</link>>\
<</if>>\
<</widget>>\
<<widget "skills">>\
<<switch $weapon_equipped>>\
<<case "Brass Knuckles">>\
<<knuckles_buff>>\
<<case "Stanley Knife">>\
<<knife_bleed>>\
<<case "Telescopic Baton">>\
<<telescopic_baton>>\
<<case "Butterfly Knife">>\
<<knife_bleed_t2>>\
<<case "Baseball Bat">>\
<<baseball_bat>>\
<<case "Spiked Knuckles">>\
<<knuckles_buff>>\
<<kito>>\
<<case "Metal Chain">>\
<<chain_buff>>\
<<case "Crowbar">>\
<<crowbar_attack>>\
<</switch>>\
<<if $p_traits.includes("melee_1")>>\
<<go_for_the_jugular>>\
<</if>>\
<<if $p_traits.includes("melee_5")>>\
<<MOYL>>\
<</if>>\
<</widget>>
<<widget "end_turn">>\
<<status_check>>\
<<run Engine.show()>>\
<<replace "#enemy_log">> $enemy_log <</replace>>\
<<replace "#p_log">> $p_log <</replace>>\
<<set $enemy_damage = 0>>\
<<set $damage_done = 0>>\
<<set $pure_damage = 0>>\
<<set $moyl_money = 0>>
<</widget>>\
<<widget "status_check">>\
<<silently>>
<<if $skill_cd > 0>>
<<set $skill_cd -= 1>>
<</if>>
<<if $enemy_skill_cd > 0>>
<<set $enemy_skill_cd -= 1>>
<</if>>
<<if $bleed_timer > 0 && $bleed_just_applied == false>>
<<set $p_hp -= 2>>
<<set $bleed_timer -= 1>>
<<elseif $bleed_just_applied == true>>\
<<set $bleed_just_applied = false>>\
<</if>>
<<if $refresh_cd > 0>>
<<set $refresh_cd -= 1>>
<</if>>
<<if $stun_timer > 0>>
<<set $stun_timer -= 1>>
<</if>>
/* STATUSES ON ENEMIES */
<<if $enemy_bleed > 0 && $fresh_bleed == false>>
<<set $enemy_hp -= 2>>
<<set $enemy_bleed -= 1>>
<<elseif $fresh_bleed == true>>
<<set $fresh_bleed = false>>\
<<set $enemy_bleed -= 1>>\
<</if>>
<<if $enemy_stun > 0>>\
<<set $enemy_stun -= 1>>\
<</if>>\
<</silently>>\
<</widget>>\
<<widget "enemy_intentions">>\
<<silently>>
<<if $enemy_stun == 0>>
<<set _random_number = random(1, 20)>>
<<if _random_number <= 3 && $enemy_hp_max > $enemy_hp>>
<<set $intent = "evasion">>
<<elseif _random_number <= 7 && $enemy_hp_max > $enemy_hp>>
<<set $intent = "defence">>
<<elseif _random_number <= 16>>
<<set $intent = "attack">>
<<elseif $enemy_skill_cd == 0>>
<<set $intent = "skill">>
<<set $enemy_skill_cd = 4>>
<<else>>
<<set $intent = "attack">>
<</if>>
<<else>>
<<set $intent = "stun">>
<</if>>
<</silently>>
<<switch $intent>>\
<<case "evasion">>\
$enemy_name preps for evasion move.
<<case "defence">>\
$enemy_name is taking a defensive position.
<<case "attack">>\
$enemy_name plans to attack you!
<<case "skill">>\
$enemy_name is doing something unusual.
<<case "stun">>\
$enemy_name is stunned!
<</switch>>\
<</widget>>\
<<widget "enemy_intentions_boss">>\
<<silently>>
<<if $enemy_stun == 0>>
<<set _random_number = random(1, 20)>>
<<if _random_number <= 3 && $enemy_hp_max > $enemy_hp>>
<<set $intent = "evasion">>
<<elseif _random_number <= 7 && $enemy_hp_max > $enemy_hp>>
<<set $intent = "defence">>
<<elseif _random_number <= 14>>
<<set $intent = "attack">>
<<elseif $enemy_skill_cd == 0>>
<<set $intent = "skill">>
<<else>>
<<set $intent = "attack">>
<</if>>
<<else>>
<<set $intent = "stun">>
<</if>>
<</silently>>
<<switch $intent>>\
<<case "evasion">>\
$enemy_name preps for evasion move.
<<case "defence">>\
$enemy_name is taking a defensive position.
<<case "attack">>\
$enemy_name plans to attack you!
<<case "skill">>\
$enemy_name is doing something unusual.
<<case "stun">>\
$enemy_name is stunned!
<</switch>>\
<</widget>>\
<<widget "enemy_turn">>
<<silently>>
<<switch $intent>>
<<case "evasion">>
<<set $damage_done = 0>>
<<set $enemy_log = "$enemy_name tries to evade your attack.">>
<<case "defence">>
<<set $damage_done = $damage_done / 2>>
<<set $damage_done = Math.trunc($damage_done)>>
<<set $enemy_log = "$enemy_name has deflected $damage_done damage.">>
<<case "attack">>\
<<set _spread = random(-3, 3)>>
<<set $enemy_damage = $enemy_combat + _spread>>
<<set $enemy_log = "$enemy_name has stabbed you for ''$enemy_damage'' damage!">>
<<case "stun">>\
<<set $enemy_log = "$enemy_name was stunned and couldn't do anything to you.">>
<<case "skill">>\
<<enemy_skill_check>>\
<</switch>>
<<set $p_hp -= $enemy_damage>>
<</silently>>
<</widget>>
<<widget "combat_reset">>
<<silently>>
<<set $enemy = false>>
<<set $enemy_hp = 0>>
<<set $enemy_hp_max = 0>>
<<set $enemy_skill_cd = 0>>
<<set $enemy_bleed = 0>>
<<set $enemy_stun = 0>>
<<set $fresh_bleed = false>>
<<if $knuckles_buff == true>>
<<set $combat -= 2>>
<<set $knuckles_buff = false>>
<</if>>
<<if $chain_buff == true>>
<<set $combat -= 3>>
<<set $chain_buff = false>>
<</if>>
<<set $combat_stamina = $combat_stamina_base>>
<<set $p_hp = $p_hp_max>>
<<set $skill_cd = 0>>
<<set $bleed_timer = 0>>
<<set $money_or_your_life = false>>
<<set $moyl_money = 0>>
<<set $stun_timer = 0>>
<<set $random_amount = 0>>
<<set $bleed_just_applied = false>>
<<set $money_roll = 0>>
<</silently>>\
<</widget>>
<<widget "enemy_status">>\
<<set _enemy_combat_health = $enemy_hp / $enemy_hp_max>>\
$enemy_name
<<showmeter "enemy_health_meter" _enemy_combat_health>>\
<<if $enemy_bleed > 0>>\
<br>\
BLEED, 2 damage each turn, turns left: $enemy_bleed. \<</if>>\
<<if $enemy_stun > 0>>\
<br>\
STUN. $enemy_name can't do anything for $enemy_stun more turns! \
<</if>>\
<</widget>>\
<<widget "dt_encounter">>\
<<silently>>
<<if $enemy == false>>
<<set $enemy_hp = random(20, 35)>>
<<set $enemy_hp_max = $enemy_hp>>
<<set $enemy_combat = random(3, 6)>>
<<set $enemy_name = $dt_mob_name.random()>>
<<set $enemy_skill = "bleed">>
<<set $enemy = true>>
<</if>>
<</silently>>\
<</widget>>\
<<widget "racketeer_encounter">>\
<<silently>>
<<if $enemy == false>>
<<set $enemy_hp = random(25, 40)>>
<<set $enemy_hp_max = $enemy_hp>>
<<set $enemy_combat = random(4, 7)>>
<<set $enemy_name = $dt_mob_name.random()>>
<<set $enemy_skill = "bleed">>
<<set $enemy = true>>
<</if>>
<</silently>>\
<</widget>>\
<<widget "gym_encounter">>\
<<silently>>
<<if $enemy == false>>
<<set $enemy_hp = random(30, 55)>>
<<set $enemy_hp_max = $enemy_hp>>
<<set $enemy_combat = random(4, 7)>>
<<set $enemy_name = $gym_mob_name.random()>>
<<set $enemy_skill = "uppercut">>
<<set $enemy = true>>
<</if>>
<</silently>>\
<</widget>>\
<<widget "darkalleys_encounter">>\
<<silently>>
<<if $enemy == false>>
<<set $enemy_hp = random(15, 30)>>
<<set $enemy_hp_max = $enemy_hp>>
<<set $enemy_combat = random(2, 5)>>
<<set $enemy_name = $darkalleys_mob_name.random()>>
<<set $enemy_skill = "test_subject">>
<<set $enemy = true>>
<</if>>
<</silently>>\
<</widget>>\
<<widget "burglar_encounter">>\
<<silently>>
<<if $enemy == false>>
<<set $enemy_hp = random(10, 25)>>
<<set $enemy_hp_max = $enemy_hp>>
<<set $enemy_combat = random(2, 5)>>
<<set $enemy_name = $dt_mob_name.random()>>
<<set $enemy_skill = "pry_it_off">>
<<set $enemy = true>>
<</if>>
<</silently>>\
<</widget>>\
<<widget "bleed_check">>\
<<silently>>\
<<if $bleed_timer > 0>>
<<set $p_hp -= 2>>
<<set $bleed_timer -= 1>>
<</if>>
<</silently>>\
<</widget>>\<<widget "defence">>\
<<link "Defend yourself">>\
<<combat_stam `30`>>\
<<enemy_turn>>\
<<set $deflected_damage = $enemy_damage / 2>>\
<<set $deflected_damage = Math.trunc($deflected_damage)>>\
<<set $p_hp += $deflected_damage>>\
<<set $p_log = " You've deflected ''$deflected_damage'' damage.">>\
<<end_turn>>\
<</link>> - restore 30 STA and deflect half of the enemy's damage. \
<</widget>>\
<<widget "evasion">>\
<<if $intent == "attack" || $intent == "skill">>\
<<if $combat_stamina >= 50>>\
<<link "Evade the next attack">>\
<<enemy_turn>>\
<<set $p_log = " You've gonne full defence.">>\
<<combat_stam `-50`>>\
<<set $p_hp += $enemy_damage>>\
<<end_turn>>\
<</link>> - use 50 STA and fully deflect the next enemy's attack. \
<<else>>\
<span class="not_available"> Evade the next attack - use 50 STA and fully deflect the next enemy's direct attack. </span>\
<</if>>\
<<else>>\
<span class="not_available"> Evade the next attack - use 50 STA and fully deflect the next enemy's attack. </span>\
<</if>>\
<</widget>>\
<<widget "punch">>\
<<if $combat_stamina >= 20>>\
<<link "Punch">>\
<<set $damage_done = $combat + random(-2, 3)>>\
<<enemy_turn>>\
<<combat_stam `-20`>>\
<<set $enemy_hp -= $damage_done>>\
<<set $p_log = " You've punched the $enemy_name for ''$damage_done'' damage.">>
<<end_turn>>\
<</link>> - 20 STA, damage depends on your combat skills. \
<<else>>\
<span class="not_available"> Punch - 20 STA </span>\
<</if>>\
<</widget>>\
<<widget "punch_t2">>\
<<if $combat_stamina >= 20>>\
<<link "Punch">>\
<<set $damage_done = ($combat + 1) + random(-2, 3)>>\
<<enemy_turn>>\
<<combat_stam `-20`>>\
<<set $enemy_hp -= $damage_done>>\
<<set $p_log = " You've punched the $enemy_name for ''$damage_done'' damage.">>
<<end_turn>>\
<</link>> - 20 STA, damage depends on your combat skills. \
<<else>>\
<span class="not_available"> Punch - 20 STA </span>\
<</if>>\
<</widget>>\
<<widget "stab">>\
<<if $combat_stamina >= 20>>\
<<link "Stab">>\
<<set $damage_done = $combat + random(-2, 3)>>\
<<enemy_turn>>\
<<combat_stam `-20`>>\
<<set $enemy_hp -= $damage_done>>\
<<set $p_log = " You've stabbed the $enemy_name for ''$damage_done'' damage.">>
<<end_turn>>\
<</link>> - 20 STA, damage depends on your combat skills. \
<<else>>\
<span class="not_available"> Stab - 20 STA </span>\
<</if>>\
<</widget>>\
<<widget "stab_t2">>\
<<if $combat_stamina >= 20>>\
<<link "Stab">>\
<<set $damage_done = $combat + random(-2, 3)>>\
<<enemy_turn>>\
<<combat_stam `-20`>>\
<<set $enemy_hp -= $damage_done>>\
<<set $p_log = " You've stabbed the $enemy_name for ''$damage_done'' damage.">>
<<set _bleed_roll = random(0, 10)>>\
<<if _bleed_roll >= 5>>\
<<set $enemy_bleed += 1>>\
<<set $p_log = " You've stabbed the $enemy_name for ''$damage_done'' damage. You've inflicted additional bleed for ''2 more damage!''">>
<</if>>\
<<end_turn>>\
<</link>> - 20 STA, damage depends on your combat skills. \
<<else>>\
<span class="not_available"> Stab - 20 STA </span>\
<</if>>\
<</widget>>\
<<widget "hit">>\
<<if $combat_stamina >= 20>>\
<<link "Hit">>\
<<set $damage_done = $combat + random(-2, 3)>>\
<<enemy_turn>>\
<<combat_stam `-20`>>\
<<set $enemy_hp -= $damage_done>>\
<<set $p_log = " You hit the $enemy_name for ''$damage_done'' damage.">>
<<end_turn>>\
<</link>> - 20 STA, damage depends on your combat skills. \
<<else>>\
<span class="not_available"> Hit - 20 STA, damage depends on your combat skills </span>\
<</if>>\
<</widget>>\
<<widget "hit_t2">>\
<<if $combat_stamina >= 20>>\
<<link "Hit">>\
<<set $damage_done = ($combat + 1) + random(-2, 3)>>\
<<enemy_turn>>\
<<combat_stam `-20`>>\
<<set $enemy_hp -= $damage_done>>\
<<set $p_log = " You hit the $enemy_name for ''$damage_done'' damage.">>
<<end_turn>>\
<</link>> - 20 STA, damage depends on your combat skills. \
<<else>>\
<span class="not_available"> Hit - 20 STA, damage depends on your combat skills. </span>\
<</if>>\
<</widget>>\
/* INNATE SKILLS */
<<widget "deep_breath">>\
<<link '"Deep Breath"'>>\
<<set $combat_stamina = 100>>\
<<enemy_turn>>\
<<set $refresh_cd = 6>>\
<<set $p_log = " You take a deep breath and feel your strength fully restored. You’re no yogi, but you’ve got a knack for this.">>\
<<end_turn>>\
<</link>> - fully restores your stamina, 5 turns CD.
<</widget>>
<<widget "go_for_the_jugular">>\
<<if $combat_stamina >= 25>>\
<<link '"Go for the Jugular"'>>
<<set $pure_damage = $combat * 2>>\
<<enemy_turn>>
<<combat_stam `-25`>>\
<<set $enemy_hp -= $pure_damage>>\
<<set $skill_cd = 5>>\
<<set $p_log = " Nothing will help against it. And $enemy_name gonna feel it. Gonna feel for ''$pure_damage damage'' points.">>\
<<end_turn>>
<</link>> - x2 attack that ignores ANY defences, 25 STA, 4 CD.
<<else>>\
<span class="not_available"> "Go for the Jugular" - x2 attack that ignores ANY defences, 25 STA, 4 CD. </span>
<</if>>\
<</widget>>\
<<widget "MOYL">>\
<<if $combat_stamina >= 50 && $money_or_your_life == false>>\
<<link '"Money Or Your Life"'>>
<<set $moyl_money = $cun * random(250, 850)>>\
<<enemy_turn>>\
<<combat_stam `-50`>>\
<<money `$moyl_money`>>\
<<set $skill_cd = 4>>\
<<set $p_log = " You pointed your finger at the $enemy_name and commanded in a firm tone to hand over all their money. It worked, and they swiftly transferred all savings to you through online banking, cash, and by other methods. ''$moyl_money​$ exactly.''">>\
<<set $money_or_your_life = true>>\
<<end_turn>>\
<</link>> - Forces the opponent to part with their wallet (on top of whatever you’ll shake out of them after the victory), 50 STA, 3 CD. Can be done only once per fight.
<<elseif $combat_stamine < 50>>\
<span class="not_available"> "Money Or Your Life" - Forces the opponent to part with their wallet (on top of whatever you’ll shake out of them after the victory), 50 STA, 3 CD. Can be done only once per fight. </span>
<<elseif $money_or_your_life == true>>\
<span class="not_available"> $enemy_name has already given you all his pocket change. </span>
<</if>>\
<</widget>>\
/* WEAPON SKILLS */
<<widget "knife_bleed">>\
<<if $combat_stamina >= 40>>\
<<link '"Bleed for me"'>>
<<set $damage_done = $combat * 2>>\
<<enemy_turn>>
<<combat_stam `-40`>>\
<<set $enemy_hp -= $damage_done>>\
<<set $enemy_bleed += 3>>\
<<set $skill_cd = 3>>\
<<set $fresh_bleed = true>>\
<<set $p_log = "Your stab left a deep cut on $enemy_name! He took ''$damage_done'' damage and ''he's bleeding!''">>\
<<end_turn>>
<</link>> - x2 attack, BLEED 2, 40 STA, 2 CD.
<<else>>\
<span class="not_available"> "Bleed for me" - x2 attack, BLEED 2, 40 STA, 2 CD. </span>
<</if>>\
<</widget>>
<<widget "knife_bleed_t2">>\
<<if $combat_stamina >= 40>>\
<<link '"Bleed for me"'>>
<<set $damage_done = ($combat + 1) * 2>>\
<<enemy_turn>>
<<combat_stam `-40`>>\
<<set $enemy_hp -= $damage_done>>\
<<set $enemy_bleed += 3>>\
<<set $skill_cd = 3>>\
<<set $fresh_bleed = true>>\
<<set $p_log = "Your stab left a deep cut on $enemy_name! He took ''$damage_done'' damage and ''he's bleeding!''">>\
<<end_turn>>
<</link>> - x2 attack, BLEED 2, 40 STA, 2 CD.
<<else>>\
<span class="not_available"> "Bleed for me" - x2 attack, BLEED 2, 40 STA, 2 CD. </span>
<</if>>\
<</widget>>
<<widget "knuckles_buff">>\
<<if $combat_stamina >= 25 && $knuckles_buff == false>>\
<<link '"Just getting started"'>>
<<enemy_turn>>
<<combat_stam `-25`>>\
<<set $knuckles_buff = true>>\
<<set $combat += 2>>\
<<set $skill_cd = 3>>\
<<set $p_log = "You flexed your muscles and felt the blood rush - time to kick some ass! ''+2 combat skills'' until the end of the fight.">>\
<<end_turn>>
<</link>> - +2 combat skill until the end of the fight. Can be cast only once. 25 STA. 3 CD.
<<else>>\
<span class="not_available"> +2 combat skill until the end of the fight. Can be cast only once. 25 STA. 3 CD. </span>
<</if>>\
<</widget>>
<<widget "kito">>\
<<if $combat_stamina >= 50>>\
<<link '"Knock Its Teeth Out"'>>
<<set $damage_done = ($combat + 1) * 3>>\
<<enemy_turn>>
<<combat_stam `-50`>>\
<<set $enemy_hp -= $damage_done>>\
<<set $skill_cd = 5>>\
<<set $p_log = " Someone's going to be eating through a straw after this. Devastating strike! ''$damage_done'' damage were inflicted to $enemy_name!">>\
<<end_turn>>
<</link>> - x3 attack, 50 STA, 4 CD.
<<else>>\
<span class="not_available"> "Knock Its Teeth Out" - x3 attack, 50 STA, 4 CD. </span>
<</if>>\
<</widget>>
<<widget "telescopic_baton">>\
<<if $combat_stamina >= 40>>\
<<link '"Kneecups Crush"'>>
<<set $damage_done = $combat>>\
<<enemy_turn>>
<<combat_stam `-40`>>\
<<set $enemy_hp -= $damage_done>>\
<<set $enemy_stun += 2>>\
<<set $skill_cd = 3>>\
<<set $p_log = " You pulled a dirty trick you picked up from somewhere in the media and struck him right in the kneecap! That was clearly painful, exactly for ''$damage_done'' damage painful, - and $enemy_name is ''stunned for the next turn!''">>\
<<end_turn>>
<</link>> - x1 attack, STUN 1, 40 STA, 2 CD.
<<else>>\
<span class="not_available"> "Kneecaps Crush" - x1 attack, STUN 1, 40 STA, 2 CD </span>
<</if>>\
<</widget>>
<<widget "baseball_bat">>\
<<if $combat_stamina >= 50>>\
<<link '"Bonk"'>>
<<set $damage_done = ($combat + 1) * 2>>\
<<enemy_turn>>
<<combat_stam `-50`>>\
<<set $enemy_hp -= $damage_done>>\
<<set $enemy_stun += 2>>\
<<set $skill_cd = 4>>\
<<set $p_log = " BONK for ''$damage_done'' damage, - and $enemy_name is ''stunned for the next turn!''">>\
<<end_turn>>
<</link>> - x2 attack, STUN 1, 50 STA, 3 CD.
<<else>>\
<span class="not_available"> "Bonk" - x2 attack, STUN 1, 50 STA, 3 CD. </span>
<</if>>\
<</widget>>
<<widget "chain_buff">>\
<<if $combat_stamina >= 25 && $chain_buff == false>>\
<<link '"Waving"'>>
<<enemy_turn>>
<<combat_stam `-25`>>\
<<set $chain_buff = true>>\
<<set $combat += 3>>\
<<set $skill_cd = 3>>\
<<set $p_log = "It's time to use knowledge from physics about the dynamics of rotational motion! ''+3 combat skills'' until the end of the fight.">>\
<<end_turn>>
<</link>> - +3 combat skill until the end of the fight. Can be cast only once. 25 STA. 3 CD.
<<else>>\
<span class="not_available"> +3 combat skill until the end of the fight. Can be cast only once. 25 STA. 3 CD. </span>
<</if>>\
<</widget>>
<<widget "crowbar_attack">>\
<<if $combat_stamina >= 80>>\
<<link '"Pry it off"'>>
<<set $damage_done = $combat * 3>>\
<<enemy_turn>>
<<combat_stam `-80`>>\
<<set $enemy_hp -= $damage_done>>\
<<set $skill_cd = 5>>\
<<set $p_log = " Oh, you're feeling yourself soooo free by doing it! You've opened this 'crate' for ''$damage_done'' damage.">>\
<<end_turn>>
<</link>> - x3 attack, 80 STA, 4 CD.
<<else>>\
<span class="not_available"> "Kneecaps Crush" - x3 attack, 80 STA, 4 CD </span>
<</if>>\
<</widget>>
/* ENEMY MOVES */
<<widget "enemy_skill_check">>\
<<silently>>\
<<switch $enemy_skill>>
<<case "bleed">>
<<set $enemy_damage = 3>>
<<set $bleed_just_applied = true>>
<<bleed_check>>
<<set $bleed_timer += 3>>
<<set $enemy_log = "$enemy_name's stab left a deep cut on you! You took ''$enemy_damage'' damage and ''you're bleeding!''">>
<<case "uppercut">>
<<set $enemy_damage = $enemy_combat>>
<<set $p_hp -= $enemy_combat>>
<<set $stun_timer += 2>>
<<set $enemy_log = "$enemy_name throws an uppercut at you! You took ''$enemy_damage'' damage and ''you're stunned!''">>
<<case "test_subject">>
<<set _skill_roll = random(0, 20)>>
<<set $random_amount = random(150, 500)>>
<<if _skill_roll < 5>>
<<set $enemy_damage = 0>>
<<set $p_hp -= 5>>
<<set $enemy_log = "$enemy_name throws a syringe at you! Nobody knows what's in it, but it hurts! You took ''5'' true damage through your defence!">>
<<elseif _skill_roll < 10>>
<<set $combat_stamina -= 50>>
<<set $enemy_log = "$enemy_name throws a syringe at you! God knows what's in it, but you suddenly feel very... relaxed. ''-50 STA.''">>
<<elseif _skill_roll < 15>>
<<set $enemy_damage = 0>>
<<bleed_check>>
<<set $bleed_timer += 3>>
<<set $bleed_just_applied = true>>
<<set $enemy_log = "$enemy_name throws a syringe at you! It didn’t have any substances in it, but the needle gave you a deep cut! It left ''3 bleeds on you.''">>
<<elseif _skill_roll < 20 && $money >= $random_amount>>
<<set $enemy_damage = 0>>
<<money `-$random_amount`>>
<<set $enemy_log = "$enemy_name throws a syringe at you! It didn’t have any substances in it, but $enemy_name took advantage of your confusion and ''stole $random_amount bucks from you!'' Then he ate it... What...">>
<<elseif _skill_roll < 20 && $money < $random_amount>>
<<set $enemy_damage = 0>>
<<money `-$random_amount`>>
<<set $enemy_log = "$enemy_name throws a syringe at you! It didn’t have any substances in it, but $enemy_name took advantage of your confusion and ''stole $random_amount money from you!'' Even though you didn’t have that much, he took whatever he could and then he ate it... What...">>
<</if>>
<<case "pry_it_off">>\
<<set $enemy_damage = $enemy_combat * 3>>
<<set $enemy_log = "$enemy_name has bonked you with his crowbar! You took ''$enemy_damage''!">>
<<case "gangs_roulette">>\
<<set _roll_gangs = random(1, 20)>>
<<if _roll_gangs >= 14>>
<<set $enemy_damage = 0>>
<<set $enemy_log = "Biggie throws at you his bag of chips... and it does nothing.">>
<<elseif _roll_gangs >= 7>>
<<set $enemy_damage = $enemy_combat>>
<<bleed_check>>
<<set $bleed_timer += 4>>
<<set $bleed_just_applied = true>>
<<set $enemy_log = "Slick Tricks stabbs you with his knife for $enemy_damage and it leaves a reeeeally deep $bleed_timer cuts on you!">>
<<else>>\
<<set $enemy_damage = 0>>\
<<set $p_hp -= 5>>\
<<set $enemy_log = "Sub-Dizzy shot you a very disapproving look from his spot. You took 5 true damage.">>
<</if>>\
<<case "alfas_deck">>
<<set _roll_alfa = random(1, 20)>>
<<if _roll_alfa >= 15>>
<<set $p_hp -= 10>>
<<set $enemy_log = "Romano throws a card... thats an ''ace''! Ooch, that stings for 10 true damage!">>
<<elseif _roll_alfa >= 8>>
<<set $enemy_log = "Romano hurls a card... thats a ''jack''! It hurts you for 5 true damage!">>
<<else>>\
<<set $p_hp -= 2>>
<<set $enemy_log = "Romano throws a card... thats a ''two''! Surprisignly, it still hits hard and deal 2 true damage to you!">>
<</if>>\
<<case "volkovs_money_throw">>\
<<set _roll_alfa = random(1, 20)>>
<<if _roll_volkov >= 15>>
<<set $enemy_damage = 15>>
<<set $volkov_money_roll = random(13000, 17000)>>
<<dirty_money `$volkov_money_roll`>>
<<set $enemy_log = "Volkov hurls a comically large bag of cash your way - it smacks you squarely, dealing 15 damage! On the bright side, you're $volkov_money_roll​$ richer now!">>
<<elseif _roll_alfa >= 8>>
<<set $enemy_damage = 10>>
<<set $volkov_money_roll = random(8000, 12000)>>
<<dirty_money `$volkov_money_roll`>>
<<set $enemy_log = "Volkov hurls a briefcase adorned with a dollar sign at you! Sure, it smacks you for 10 damage, but hey, free $volkov_money_roll​$ - totally worth it!">>
<<else>>\
<<set $enemy_damage = 5>>
<<set $volkov_money_roll = random(4000, 6000)>>
<<dirty_money `$volkov_money_roll`>>
<<set $enemy_log = "Volkov throws a brick-sized wallet at you! It hurts for 5 damage but you've got for yourself $volkov_money_roll bucks!">>
<</if>>\
<</switch>>
<</silently>>\
<</widget>>\<<item "Stanley Knife" "stanley knife">>
<<description>>
<em>"Oh my, oh my
What a wretched life
I was born on the day
That my poor mama died
I was cut from her belly
With a Stanley knife
My daddy did a jig
With the drunk midwife"</em>
Combat bonus on attack: none.
Perk: "Bleed for me" - x2 attack with a bleed for 2 turns, 2 turns CD, 40 STA.
<</item>>
<<item "Brass Knuckles" "brass knuckles">>
<<description>>
A true thug's weapon. A poser might be satisfied with a lighter in hand to feel something weighty, but this... this will help you put anyone in their place.
Combat bonus on attack: none.
Perk: "Just getting started" - +2 combat for a whole fight, CD 2, 25 STA.
<</item>>
<<item "Telescopic Baton" "telescopic baton">>
<<description>>
Very quick weapon of self-defence. Paired with a stun gun, it’ll make anyone think twice about crossing your path in a dark alley. It makes a very distinct sound when unfolding.
Combat bonus on attack: none.
Perk: "Kneecaps crush" - x1 attack + stun, CD 2 turns, 40 STA.
<</item>>
<<item "Baseball Bat" "baseball bat">>
<<description>>
Sports equipment: As we know, sports gear can be traumatic, but its risks are fully justified by the results it delivers. This classic woodwork is your go-to for any situation.
Combat bonus on attack: +1.
Perk: "Bonk" - x2 attack + stun, CD 3, 50 STA.
<</item>>
<<item "Butterfly Knife" "butterfly knife">>
<<description>>
A balisong. Perfect for slicing through the competition - or just impressing your friends with your mad flipping skills.
Combat bonus on attack: +1.
Perk: "Bleed for me" - x2 attack with a bleed for 2 turns, CD 2, 40 STA.
Has a chance to inflict bleed on the attack target.
<</item>>
<<item "Spiked Knuckles" "spiked knuckles">>
<<description>>
Why settle for a regular handshake when you can make a point? Perfect for when you need to add a little extra 'oomph' to your high-fives - or, you know, your street brawls. Just remember, they're not exactly manicure-friendly.
Combat bonus on attack: +1.
Perk: "Just getting started" - +2 combat for a whole fight, CD 2, 25 STA.
"Knock its teeth out" - x3 attack, 4 CD, 50 STA.
<</item>>
<<item "Metal Chain" "metal chain">>
<<description>>
You're not a helicopter, but who stops you from pretending as one with this in your hands?
Combat bonus on attack: +1.
Perk: "Waving" - +3 combat for a whole fight, 2 CD, 25 STA.
<</item>>
<<item "Crowbar" "crowbar">>
<<description>>
Great for opening doors, crates, and the occasional argument with a stubborn lock.
Combat bonus on attack: +1.
Perk: "Pry it off" - x3 attack, 4 CD, 80 STA.
<</item>><<silently>>
<<set _random_1 = random(0, 10)>>
<<set _random_2 = random(0, 10)>>
<<set _random_amount = random(50, 250)>>
<<set _random_item = $downtown_loot.array.random()>>
<<set _random_weapon = $downtown_weapon_loot.array.random()>>
<<set $downtown_rep += 1>>
<<set $reputation += 40>>
<</silently>>\
You won the fight. The thug, scrambling to escape, throws some cash your way - clearly understanding you're not to be trifled with. No one will dare cross your path on this street today.
Loot: _random_amount​$.
<<if _random_1 >= 8>>\
_random_item.
<<pickup $p_inv _random_item 1>>\
<</if>>\
<<if _random_2 >= 8>>\
_random_weapon.
<<pickup $p_melee _random_weapon 1>>\
<</if>>\
<<link "Got it." "Downtown">>
<<money `_random_amount`>>\
<</link>>\<<silently>>
<<set $reputation -= 30>>
<</silently>>\
The thug landed the final blow, and you raised your hands in surrender. You… lost. It happens sometimes even to the best. The thug made it clear that sometimes the street’s rules aren’t yours to break. In a city like this, it could’ve ended much worse. After a beating like that, heading home to recover is your only option.
<<if $money >= $extortion_rate>>\
A thug took $extortion_rate​$ from you.
<<money `- $extortion_rate`>>\
<</if>>\
<<if $money < $extortion_rate>>\
A thug tried to rob $extortion_rate​$ from you, but he was out of luck - you’re broke already... Still, he took whatever he could.
<<money `- $extortion_rate`>>\
<</if>>\
<<link "Sigh." "Home">>\
<<set $stam = 0>>\
<<if $gameDate.getHours() >= 8>>\
<<adddays 1>>\
<<set $gameDate.setHours(3)>>\
<<else>>\
<<set $gameDate.setHours(3)>>\
<</if>>\
<</link>>\<<set $extortion_rate = (200 + random(0, 400))>>\
A typical gang member blocks your path, a bandana on his head and a tank top clinging to his frame. A small knife glints in his hand, his eyes carrying an unmistakable intent.
<span class="male_text">- “Well, well, look at this fancy lady. It’s $extortion_rate bucks to walk through our turf. You pay up, and I’ll make sure nobody bothers you today. So, what’s it gonna be - the easy way or the hard way?”</span>
<<if $downtown_rep < 7>>\
<<if $money >= $extortion_rate>>\
<<link "Pay him $extortion_rate​$.">>
<<set $downtown_bribe = true>>\
<<goto "Downtown">>\
<<money `- $extortion_rate`>>\
<</link>>\
<<else>>\
<span class="not_available"> You don't have enough money... </span>\
<</if>>
<<if $stam >= 1>>\
<<combat_link>><<link "Fight him." "CombatDowntown">>
<<addmins 30>>\
<<stam `-1`>>\
<<set $downtown_bribe = true>>\
<</link>><</combat_link>>
<<else>>\
<span class="not_available"> You're too tired to fight...</span>
<</if>>\
<<link "Scream for help" "Downtown">>
<<addmins 15>>\
<<set $reputation -= 100>>\
<<set $downtown_bribe = true>>\
<</link>>, it'll hurt your reputation for sure...
<<else>>\
<<pickup $p_inv "Old phone" 1>>\
<<set $downtown_bribe = true>>\
<span class="male_text">- "Oh shit, its YOU! You’re the one who beat up a bunch of my mates, right? Sorry, I ran into you by accident. Here, take my phone! Just don't hurt me! I'll tell the guys that you are on the streets today."</span>
He hands you his phone and begins leaving the scene...
<<link "Beat him anyway." "CombatDowntown">>\
<<addmins 30>>\
<</link>>
<<link "Shrug it off." "Downtown">>\
<<addmins 15>>\
<</link>>
<</if>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/ring.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<gym_encounter>>\
<center><<enemy_status>>
<span id="enemy_log">You and your opponent stood facing each other in the ring. As usual, there aren't many spectators - mostly local trainers and gym-goers whose names you might even know - but it’s still loud in here. A brawl is about to go down.</span>\
<<enemy_intentions>>\
<span id="p_log"></span>
</center>\
<<melee_attack>>\
<<silently>>\
<<if $enemy_hp <= 0>>
<<melee_success>>\
<<combat_reset>>
<<goto "Gym Win">>
<</if>>
<<if $p_hp <= 0>>
<<melee_fail>>\
<<combat_reset>>
<<goto "Gym Lose">>
<</if>>
<</silently>>\<<silently>>
<<set $reputation -= 10>>\
<</silently>>\
<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/ring.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Aaand you’re out cold, but hey, at least you’ve still got your pride… somewhere in there. When you come to, the crowd’s already moved on to the next poor soul, and all you’re out is the entrance fee - and maybe a little dignity.
<<link "Sigh." "Gym">>
<<stam `-1`>>\
<</link>>\<<silently>>
<<set _random_1 = random(0, 10)>>
<<set _random_amount = random(200, 500)>>
<<set $reputation += 50>>\
<</silently>>\
<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/ring.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
As your opponent hits the mat with a resounding thud, the crowd erupts into a mix of cheers and groans - the sweet sound of victory and the bitter taste of someone else’s loss. You stand tall, bloodied but unbowed, soaking in the moment. The bookmaker tosses you a grin and a wad of cash, your well-earned share of the bets. The underground may be grimy, but tonight, it’s a little bit richer… and so are you.
Your share from the pot: _random_amount​$.
<<if _random_1 >= 7>>\
Also, you got the Spiked Knuckles as a additional reward!
<<pickup $p_melee "Spiked Knuckles" 1>>\
<</if>>\
<<link "Got it." "Gym">>
<<money `_random_amount`>>\
<</link>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/ring.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
The underground ring is a sweat-soaked arena hidden beneath the gym, where the stench of adrenaline mixes with the scent of old leather and bad decisions. The walls are lined with various spectators, you can even see some trainers from the gym - some eager, some wary - all with eyes locked on the action. The ring itself is simple but brutal: frayed ropes, stained canvas, and just enough space to get yourself into serious trouble.
Here, you can play it safe and place a bet, letting someone else take the hits, or you can throw down $100 and step into the ring yourself. All melee weapons are allowed, but no beating of surrendered opponent. Reward is a share from the betting pot. You can fight only once per day.
The trainers from the gym aren’t just here to cheer from the sidelines - they’ve got a little something extra for the ambitious brawlers. For a hefty price, they’re offering to teach the kind of dirty moves that turn fights around: eye gouges, sucker punches, and all the tricks that’d get you banned from a legit match.
<<if $suburbs_state == true>>\
<span class="male_text">- "Boss? Need something?"</span>
<</if>>\
<<if $ring_partaking == false && $stam >= 1>>\
<<combat_link>><<link "Enter the ring - 100$" "CombatGym">>\
<<addhours 1>>\
<<set $ring_partaking = true>>\
<<stam `-1`>>\
<</link>><</combat_link>>
<<elseif $ring_partaking == true>>\
<span class="not_available"> You have already participated in the fight today. </span>
<<elseif $stam == 0>>\
<span class="not_available">You're too tired to fight...</span>
<</if>>\
<<action_link>><span class="action_link"><<link "Bookmaker." "Ring Betting">>\
<</link>></span><</action_link>>
<<if $combat_mod_training == 0 && $money >= 20000 && $stam >= 1>>\
<span class="action_link"><<link "Attend the brawling courses - 20000$.">>
<<set $combat_mod_training += 1>>\
<<set $combat = ($combat_base + $combat_mod_boss + $combat_mod_training)>>\
<<set $health_training_mod += 2>>\
<<set $p_hp = ($health_base + $health_traits_mod + $health_training_mod)>>\
<<money `-20000`>>\
<<addhours 3>>\
<<stam `-3`>>\
<<run Engine.show()>>\
<</link>></span>
<<elseif $combat_mod_training == 0 && $money < 20000 && $stam >= 1>>\
<span class="not_available"> Attend the brawling courses - 20000$.</span>
<<elseif $stam == 0>>\
<span class="not_available"> You're too tired to attend any brawling courses... for 20000$.</span>
<</if>>\
<<if $combat_mod_training == 1 && $money >= 40000 && $stam >= 1>>\
<span class="action_link"><<link "Attend the more complex brawling courses - 40000$.">>
<<set $combat_mod_training += 1>>\
<<set $combat = ($combat_base + $combat_mod_boss + $combat_mod_training)>>\
<<set $health_training_mod += 2>>\
<<set $p_hp = ($health_base + $health_traits_mod + $health_training_mod)>>\
<<money `-40000`>>\
<<addhours 3>>\
<<stam `-3`>>\
<<run Engine.show()>>\
<</link>></span>
<<elseif $combat_mod_training == 1 && $money < 40000 && $stam >= 1>>\
<span class="not_available"> Attend the more complex brawling courses - 40000$.</span>
<<elseif $stam == 0>>\
<span class="not_available"> You're too tired to attend any complex brawling courses... for 40000$.</span>
<</if>>\
<<out_link>><<link "Get back to the main street of Suburbs" "Suburbs">>\
<<addmins 10>>\
<</link>><</out_link>>\<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/darkalley.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<darkalleys_encounter>>\
<center><<enemy_status>>
<span id="enemy_log">You've seen dirtier people. But this... this one looks scary.</span>\
<<enemy_intentions>>\
<span id="p_log"></span>\
</center>\
<<melee_attack>>\
<<silently>>\
<<if $enemy_hp <= 0>>
<<melee_success>>\
<<combat_reset>>
<<goto "DarkAlleys Win">>
<</if>>
<<if $p_hp <= 0>>
<<melee_fail>>\
<<combat_reset>>
<<goto "DarkAlleys Lose">>
<</if>>
<</silently>>\<<silently>>
<<set _random_1 = random(0, 10)>>
<<set _random_2 = random(0, 10)>>
<<set _random_amount = random(50, 200)>>
<<set _random_item_amount = random(3, 20)>>
<<set _random_item = $darkalleys_loot.array.random()>>
<<set _random_craft = $darkalleys_craft_loot.array.random()>>
<<set $reputation += 40>>\
<</silently>>\
<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/darkalley.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
You won the fight. The narc, scrambling to escape, throws some cash your way - clearly understanding you're not to be trifled with. No one will dare cross your path on this street today.
Loot: _random_amount​$.
<<if _random_1 >= 5>>\
_random_item_amount _random_item.
<<pickup $p_inv _random_item _random_item_amount>>\
<</if>>\
<<if _random_2 >= 5>>\
_random_craft.
<<pickup $p_craft _random_craft 1>>\
<</if>>\
<<link "Got it." "Dark Alleys">>
<<money `_random_amount`>>\
<</link>>\<<silently>>
<<set _random_amount = random(50, 250)>>
<<set $reputation -= 20>>\
<</silently>>\
<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/darkalley.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
The narc landed the final blow, and you raised your hands in surrender. You… lost. It’s a shame to lose to an enemy like that, but whatever happens in dark alleys stays in dark alleys. After a beating like that, heading home to recover is your only option.
<<if $money >= _random_amount>>\
A narc took _random_amount​$ from you.
<<money `-_random_amount`>>\
<</if>>\
<<if $money < _random_amount>>\
A narc tried to rob _random_amount​$ from you, but he was out of luck - you’re broke already... Still, he took whatever he could.
<<money `-_random_amount`>>\
<</if>>\
<<link "Sigh." "Home">>\
<<set $stam = 0>>\
<<if $gameDate.getHours() >= 8>>\
<<adddays 1>>\
<<set $gameDate.setHours(3)>>\
<<else>>\
<<set $gameDate.setHours(3)>>\
<</if>>\
<</link>>\<<silently>>
<<set _roll = random(0, 20)>>
<</silently>>\
<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/darkalley.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
You were looking for trouble, and you found it.
<<if _roll < 12>>\
You ran into a typical inhabitant of places like this - a strung-out junkie. He’s aggressively demanding money or a fix from you.
<<if $money >= 400>>\
<<link "Pay him 400$" "Dark Alleys">>\
<</link>> - that will definitely send him away..
<<else>>\
<span class="not_available"> You don't have enough money to pay him. He wants at least $400. </span>
<</if>>\
<<if $p_inv.count("Drugs") >= 10>>\
<<link "Give him 10 doses of drugs" "Dark Alleys">>\
<<drop $p_inv "Drugs" 10>>\
<</link>> - that will definitely send him away..
<<else>>\
<span class="not_available"> You could give him some drugs if you had atleast 10 doses on you. </span>
<</if>>\
<<if $stam >= 1>>\
<<combat_link>><<link "Attack him" "CombatDarkAlleys">>
<<addmins 30>>\
<<stam `-1`>>\
<</link>><</combat_link>> - not only you'll get rid of him, but this action could also be quite financially positive!
<<else>>\
<span class="not_available"> You're too tired to fight. </span>
<</if>>\
<<link "Scream for help and call the police." "Dark Alleys">>\
<<addmins 30>>\
<</link>> - well, that's an option, but it'll hurt your reputation and takes some time.
\
<<elseif _roll >= 12>>\
<<createnpc_slut_alleys>>\
You encountered a typical denizen of these places - a prostitute, and she's clearly high on something.
<span class="fem_text">- "I'm not serving a girls, so get lost."</span>
Well, that's rude.
You can rate her at _rate out of 10.
<<if $p_traits.includes("observer")>>\
She's <<beauty_desc_temp>> her clothes are <<clothes_desc_temp>> and body is <<body_desc_temp>>
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly why you rate her like that...</span>
<</if>>\
<<if $p_boss == true>>\
<<set _payment_amount_slut = random(900, 1500) * _rate>>\
<<set _roll_slut = random(0, 20)>>\
<<linkreplace "Offer her protection provided by your $band_type.">>\
<<if _roll_slut >= 8>>\
<span class="fem_text">- "Yea-hh, ok. Just, you know, pay me _payment_amount_slut​$ upfront so i can pay for all my shit. I'm _nickname by the way."</span>
<<if $money >= _payment_amount_slut>>\
<<link "Deal." "Dark Alleys">>\
<<money `-_payment_amount_slut`>>\
<<addslut_temp>>\
<</link>>\
<</if>>\
<<else>>\
- "Nah, i'm fine with ma pimp." \
<</if>>\
<</linkreplace>>\
<</if>>
<<link "Bail out." "Dark Alleys">>
<</link>>\
<</if>>\<br>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<button "_v.name _v.nickname">>
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Accomplices Window").processText());
Dialog.open();
<</script>>
<</button>>\
<</capture>>\
<</for>>\<br>\
<<for _i = 0; _i < $npc_list.length; _i = _i + 1>>\
<<set _v = $npc_list[_i]>>\
<<capture _v, _i>>\
<<if _v.friendship >= 50>>\
<<button "_v.name _v.surname (friend)">>
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.surname);
Dialog.wiki(Story.get("NPC Window").processText());
Dialog.open();
<</script>>
<</button>>\
\
<<else>>\
<<button "_v.name _v.surname">>
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.surname);
Dialog.wiki(Story.get("NPC Window").processText());
Dialog.open();
<</script>>
<</button>>\
<</if>>\
<</capture>>\
<</for>>\<<set $extortion_rate = (300 + random(0, 600))>>\
A couple of men in decidedly unfashionable classic suits blocked your path.
<span class="male_text">- "Is this your car standing there? You know you need to pay to drive around this neighborhood, right? $extortion_rate​$, and we won’t bother you for the whole day. That’s the rate."</span>
<span id="reaction"></span>\
<<if $money >= $extortion_rate>>\
<<link "Pay the toll." "Suburbs">>
<<money `- $extortion_rate`>>\
<<set $suburbs_bribe = true>>\
<</link>>\
<<else>>\
<span class="not_available"> You don't have enough money to pay the toll. </span>\
<</if>>\
<br>\
<<combat_link>><<link "Ignore them and drive away">>\
<<set $chase_timer = 40 + ($chase_car_bonus + $chase_perk_bonus)>>
<<set $chase_success = 10>>
<<set $chase_hp = 10>>
<<set $chase_type = "suburbs">>
<<replace "#reaction">> - ''We're gonna get you!'' <br><</replace>>
<<timed 2s>>
<<goto "Car Chase">>
<</timed>>
<</link>><</combat_link>> - it'll gonna start a car chase.
<<if $reputation >= 4000>>\
<<link "Use your reputation to scare them away">>
<<set $suburbs_bribe = true>>\
<<replace "#reaction">> - ''S-sorry.'' <br><</replace>>
<<timed 1s>>
<<goto "Suburbs">>
<</timed>>
<</link>> - your person is too important to waste time on such small mobs. And they should know it.
<<else>>\
<span class="not_available"> Sadly, you're not reputable enough to just scare them away. </span>\
<</if>>\<<widget "reset_chase">>\
<<silently>>\
<<set $chase_timer = 0>>
<<set $chase_success = 0>>
<<set $chase_hp = 0>>
<<set $chase_type = "">>
<<set $chase_direction = "">>
<<set $chase_right_dir = []>>
<</silently>>\
<</widget>>\
<<widget "set_direction">>
<<switch $chase_problem>>
<<case "A car suddenly appears on the right side!">>
<<set $chase_right_dir = ["left", "direct"]>>
<<case "A car is tailgating you from the right side!">>
<<set $chase_right_dir = ["left", "direct"]>>
<<case "There’s a very sharp turn to the right coming up!">>
<<set $chase_right_dir = ["left", "direct"]>>
<<case "A car is reversing out of a driveway on the right!">>
<<set $chase_right_dir = ["left", "direct"]>>
<<case "A group of cyclists is riding on the right side!">>
<<set $chase_right_dir = ["left", "direct"]>>
<<case "A ramp is visible on the right!">>
<<set $chase_right_dir = ["right"]>>
<<case "A clear path is visible through the roadwork on the right!">>
<<set $chase_right_dir = ["right"]>>
<<case "The right side has a clear path through the debris!">>
<<set $chase_right_dir = ["right"]>>
<<case "You can see an opening through the traffic jam on the right!">>
<<set $chase_right_dir = ["right"]>>
<<case "A food truck is parked in the middle of the street, but there's a clear path on the right!">>
<<set $chase_right_dir = ["right"]>>
<<case "The road ahead is filled with debris!">>
<<set $chase_right_dir = ["right", "left"]>>
<<case "A large pothole is straight ahead!">>
<<set $chase_right_dir = ["right", "left"]>>
<<case "A pedestrian is crossing the road in front of you!">>
<<set $chase_right_dir = ["right", "left"]>>
<<case "Construction work is blocking the road straight ahead!">>
<<set $chase_right_dir = ["right", "left"]>>
<<case "A car is abruptly stopping in front of you!">>
<<set $chase_right_dir = ["right", "left"]>>
<<case "There's an unobstructed route visible up ahead!">>
<<set $chase_right_dir = ["direct"]>>
<<case "There is some kind of rally going on here, you can only drive ahead!">>
<<set $chase_right_dir = ["direct"]>>
<<case "A street performer is drawing a crowd, blocking the road, but the way ahead is open!">>
<<set $chase_right_dir = ["direct"]>>
<<case "A flash mob is dancing in the street, but there's the way up ahead!">>
<<set $chase_right_dir = ["direct"]>>
<<case "A fallen tree is blocking the left lane!">>
<<set $chase_right_dir = ["direct", "right"]>>
<<case "There’s an unexpected curve to the left coming up!">>
<<set $chase_right_dir = ["direct", "right"]>>
<<case "A broken-down vehicle is blocking the left lane!">>
<<set $chase_right_dir = ["direct", "right"]>>
<<case "A large truck is overtaking you on the left!">>
<<set $chase_right_dir = ["direct", "right"]>>
<<case "The road is under construction with cones blocking the left side!">>
<<set $chase_right_dir = ["direct", "right"]>>
<<case "The road ahead is congested, but the left lane is clear!">>
<<set $chase_right_dir = ["left"]>>
<<case "A wide opening is available in the left lane!">>
<<set $chase_right_dir = ["left"]>>
<<case "The left side of the road has a safe passage!">>
<<set $chase_right_dir = ["left"]>>
<<case "The left lane is open and free of cars!">>
<<set $chase_right_dir = ["left"]>>
<</switch>>
<</widget>>
<<widget "set_destination">>\
<<switch $chase_type>>\
<<case "suburbs">>\
<<set $reputation += 80>>\
Checking your mirrors, you saw no sign of your pursuers. You managed to shake off those persistent mobsters! They’ll think twice before crossing you again! No one’s going to bother you again in the suburbs today, that’s for sure. Also, After a ride like that, your name is sure to echo through the right circles. Time to finish up your business in the city? \
<br>\
<br>\
<<set $suburbs_bribe = true>>\
<<addmins 15>>\
<<link "Home" "Home">>\
<<reset_chase>>\
<</link>>\
<br>\
<<link "Suburbs" "Suburbs">>\
<<reset_chase>>\
<</link>>\
<<case "race">>\
<<set _cash_amount = random(1500, 4000) * $cun>>\
<<set $race_cd = 3>>\
<<set $reputation += 150>>\
You won the race! But, to be fair, the track is perhaps a bit too dangerous for racing. Well, whatever, the organizer is already bringing you your winnings: _cash_amount​$. He also tells you that you won't be able to join the event for 3 days from now.
<br>\
<<link "Home" "Home">>
<<addmins 15>>\
<<money `_cash_amount`>>\
<<reset_chase>>\
<</link>>
<<link "Outskirts" "Outskirts">>
<<money `_cash_amount`>>\
<<reset_chase>>\
<</link>>\
<<case "car_wrecking">>\
<<set $reputation += 100>>\
<<set $mafia_str -= 400>>\
<<set _roll = random(0, 10)>>\
<<if _roll >= 5>>\
<<set _loot = "Muscle Car">>\
<<else>>\
<<set _loot = "Sportcar">>\
<</if>>\
<<pickup $garage_inv _loot 1>>\
A dull thud followed by the blare of a car alarm caught your attention. Glancing in the rearview mirrors, you realized your pursuers had crashed—they were no longer capable of chasing you. Today, you humiliated the Mafia; it was an undeniable triumph. Meanwhile, your crew managed to steal one of the luxury cars from Mafia while you were distracting them.
Looted car: _loot.
<br>\
<<link "Home" "Home">>
<<addmins 15>>\
<<reset_chase>>\
<</link>>
<<link "Suburbs" "Suburbs">>
<<reset_chase>>\
<</link>>\
<</switch>>\
<</widget>>\
<<widget "chase_failstate">>\
<<switch $chase_type>>\
<<case "suburbs">>\
<<set _amount = $extortion_rate>>\
<<if $money >= _amount>>\
You wrecked your car, and although insurance will cover everything, you'll be stuck dealing with the fallout until nightfall. On top of that, you've still got issues with the mobsters. They laughed at your misfortune and demanded a nice, round _amount​$ as "compensation for emotional distress." Well, it looks like you have no choice... \
<br>\
<<link "Sigh." "NewDay">>\
<<money `-_amount`>>\
<<reset_chase>>\
<</link>>\
<<else>>\
You wrecked your car, and although insurance will cover everything, you'll be stuck dealing with the fallout until nightfall. On top of that, you've still got issues with the mobsters. They laughed at your misfortune and demanded a nice, round _amount​$ as "compensation for emotional distress." Even tho you don't have such money, you're gonna give them everything from your wallet...\
<br>\
<<link "Sigh." "NewDay">>\
<<money `-_amount`>>\
<<reset_chase>>\
<</link>>\
<</if>>\
<<case "race">>\
Unfortunately, you lost the race. A couple of local mechanics quickly checked out your car and helped with some minor cosmetic issues, but overall, it’s not too bad at all. The only thing you lost was the entry fee. Oh well, better luck next time, huh?
<br>\
<<link "Home" "Home">>
<<addmins 15>>\
<<reset_chase>>\
<</link>>
<<link "Outskirts" "Outskirts">>
<<reset_chase>>\
<</link>>\
<<case "car_wrecking">>\
<<set $reputation -= 150>>\
<<set $mafia_str += 100>>\
You wrecked your car, and although insurance will cover everything, you'll be stuck dealing with the fallout until nightfall. On top of that, you've still got issues with the mobsters. They laughed at your misfortune and left you. Well, that was quite a humiliation... You won't be surprised if Mafia became more stronger and popular by the next day after this event, and your rep is damaged.\
<br>\
<<link "Sigh" "NewDay">>
<<addmins 15>>\
<<reset_chase>>\
<</link>>
<</switch>>\
<</widget>>\<<silently>>\
<<if $chase_right_dir.includes($chase_direction) && $chase_direction != "">>
<<set $chase_success -= 1>>
<<elseif !$chase_right_dir.includes($chase_direction) && $chase_direction>>
<<set $chase_hp -= 1>>
<</if>>
<<set $chase_problem = $chase_problems.random()>>
<<set_direction>>
<<set $chase_direction = "">>
<<if $chase_success > 0>>
<<repeat 40ms>>
<<set $chase_timer -= 0.040>>
<<if $chase_timer > 0>>
<<replace "#countdown">>Countdown: <<= $chase_timer.toFixed(2)>> seconds remaining.<</replace>>
<<else>>
<<replace "#countdown">>Busted!<</replace>>
<<timed 1s>>
<<goto "Car Chase Lose">>
<</timed>>
<<stop>>
<</if>>
<</repeat>>
<<else>>\
<<goto "Car Chase Success">>\
<</if>>\
<<if $chase_hp < 1>>
<<goto "Car Chase Lose">>
<</if>>
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/background/events/race.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 20%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<center>\
<span id="countdown">Countdown: $chase_timer seconds remaining.</span>
Your car can handle only $chase_hp more hits.
Distance till the safe spot: $chase_success km.
$chase_problem
</center>\
<div class="center_link">\
<<link "Left" "Car Chase">>\
<<set $chase_direction = "left">>
<</link>>\
<<link "Keep on" "Car Chase">>\
<<set $chase_direction = "direct">>
<</link>>\
<<link "Right" "Car Chase">>\
<<set $chase_direction = "right">>
<</link>>\
</div>\<style>
body::before {
content: '';
background-image: url("img/background/events/race.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 20%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<racer_success>>\
<<set_destination>>\<style>
body::before {
content: '';
background-image: url("img/background/events/race.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 20%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<racer_fail>>\
<<chase_failstate>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/romanosuburbs.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Everything you'll load into Mafia's garage will be left hanging there till you transfer it again or trade in.
<<give $garage_inv $mafia_trade use drop inspect all>>
<<give $mafia_trade $garage_inv inspect all>>
<<button "Calculate price.">>\
<<set _price = 0>>\
<<set _rep = 0>>\
<<set _amount = $mafia_trade.array.count("SUV Car")>>\
<<set _price += _amount * 650>>\
<<set _rep += _amount * 60>>\
<<set _amount = $mafia_trade.array.count("Pickup Truck")>>\
<<set _price += _amount * 500>>\
<<set _rep += _amount * 60>>\
<<set _amount = $mafia_trade.array.count("Muscle Car")>>\
<<set _price += _amount * 700>>\
<<set _rep += _amount * 60>>\
<<set _amount = $mafia_trade.array.count("Sedan Car")>>\
<<set _price += _amount * 400>>\
<<set _rep += _amount * 60>>\
<<set _amount = $mafia_trade.array.count("Porter Car")>>\
<<set _price += _amount * 350>>\
<<set _rep += _amount * 60>>\
<<set _amount = $mafia_trade.array.count("Van Car")>>\
<<set _price += _amount * 450>>\
<<set _rep += _amount * 60>>\
<<set _amount = $mafia_trade.array.count("Sportcar")>>\
<<set _price += _amount * 800>>\
<<set _rep += _amount * 60>>\
<<script>>
Dialog.setup("Deal");
Dialog.wiki(Story.get("Car Trade Window").processText());
Dialog.open();
<</script>>
<</button>>
<br>\
<<link "Stop trading" "Mafia Leader S">>
<</link>>\Romano offers you a _price​$. Do you accept?
<<link "Deal.">>
<<money _price>>\
<<set $reputation += _rep>>\
<<dropall $mafia_trade>>\
<<addmins 30>>\
<<script>>
Dialog.close();
<</script>>
<<goto "Mafia Leader S">>\
<</link>>\
<<link "Nah.">>\
<<script>>
Dialog.close();
<</script>>
<</link>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/romanosuburbs.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $mafia_met > 0>>\
Alfa Romano. He’s probably just pretending to be Italian, but that doesn’t stop him from looking somewhat dapper, somewhat propper as he sits behind a spacious desk in an opulent office. A deck of cards for blackjack rests on the table.
<</if>>\
<<include "Mafia Leader">>\
<<trade_link>><<link "Trade." "Mafia Car Trade S">>
<</link>><</trade_link>>
<<if $crowns >= 25 && $mafia_blackjack == true>>\
<<link "Play blackjack." "Romano Blackjack Start">>
<</link>>
<<elseif $crowns < 25>>\
<span class="not_available"> You don't have any crowns for a blackjack. </span>
<<elseif $mafia_blackjack == false>>\
<span class="not_available"> - "We've played enough today. </span>
<</if>>\
<<out_link>><<link "Get back outside." "Mafia Headquarters">>
<</link>><</out_link>>
<<out_link>><<link "Get back to the main street of Suburbs" "Suburbs">>
<<addmins 15>>
<</link>><</out_link>><style>
body.suburbs::before {
content: '';
background-image: url("img/background/cards.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
$deck.length cards remain in the shoe.
crowns in your possession: <<=$crowns>>
Your bet:
<<button "25" "Romano Deal">>
<<set $bet = 25>>
<<set $badbet = true>>
<<run startDeal()>>
<<addmins 5>>
<</button>>\
<<button "50" "Romano Deal">>
<<set $bet = 50>>
<<set $badbet = true>>
<<run startDeal()>>
<<addmins 5>>
<</button>>\
<<button "100" "Romano Deal">>
<<set $bet = 100>>
<<set $badbet = true>>
<<run startDeal()>>
<<addmins 5>>
<</button>>\
<<button "200" "Romano Deal">>
<<set $bet = 200>>
<<set $badbet = true>>
<<run startDeal()>>
<<addmins 5>>
<</button>>\
<<button "500" "Romano Deal">>
<<set $bet = 500>>
<<set $badbet = true>>
<<run startDeal()>>
<<addmins 5>>
<</button>>
<<button "Reshuffle">>
<<goto "Romano Blackjack Start">>
<</button>>
<<button "Stop playing">>
<<goto "Mafia Leader S">>
<</button>>
\
<<silently>>\
<<if $crowns < 25>>\
<<goto "Romano Offer">>
<</if>>\
<</silently>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/cards.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<set _romano_yapping = $romano_blackjack.random()>>\
The Romano has shuffled the cards.
<span class="romano">- "_romano_yapping"</span>
Number of decks: $deckCount
<<button "Bet" "Romano Blackjack">><<run buildDeck()>><</button>>
<<button "Stop playing">>
<<goto "Mafia Leader S">>
<</button>><style>
body.suburbs::before {
content: '';
background-image: url("img/background/cards.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
- "Running low on crowns, bella? No worries, I can spot you some. For one more deal." - Romano’s grin widens, his eyes gleaming with a mix of charm and menace. "But remember, cara mia, if luck isn't on your side tonight, you'll have to pay me back... one way or another."
<<link "Accept the offer." "Romano Blackjack Offer">>\
<<set $crowns += 200>>\
<</link>>
<<link "Nah, its over." "Mafia Leader">>
<</link>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/cards.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
$deck.length cards remain in the shoe.
crowns in your possession: <<=$crowns>>
Your bet:
<<button "200" "Romano Deal Offer">>
<<set $bet = 200>>
<<set $badbet = true>>
<<run startDeal()>>
<<addmins 5>>
<</button>>\
\
<<silently>>\
<<if $crowns < 25>>\
<<goto "Romano Event">>
<<set $mafia_blackjack = false>>
<</if>>\
<<if $crowns >= 300>>
<<goto "Mafia Leader S">>
<<set $mafia_blackjack = false>>
<</if>>
<</silently>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/cards.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<span class="romano">- "No more crowns? Che peccato! Too bad, too bad!"</span> - Alfa gives a sly grin. <span class="romano">- "But I’m sure we can work something out. Maybe a thousand bucks... or something else, capisce?"</span> - he winks.
<<if $money >= 1000>>\
<<link "Pay him 1000$." "Mafia Leader S">>
<<money `-1000`>>\
<</link>>
<<else>>\
<span class="not_available"> You don't have enough money. </span>
<</if>>\
<<linkappend "Tell him that you don't have money on you." "Romano Quickie">>
<span class="romano">- "I’ve got a feeling you’re a woman of... creativity."</span> - Alfa leans in, smirking. <span class="romano">- "Something tells me you can think of an alternative solution, sì? This kind of outcome interests you, no?"</span>
<<charm_link>><<link "- Maybe." "Romano Quickie">><</link>><</charm_link>>
<</linkappend>><style>
body.suburbs::before {
content: '';
background-image: url("img/background/cards.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $badbet>>@@color:red;You don't have enough crowns for this bet!@@
<<button "Bet" "Romano Blackjack">><</button>><<else>>$deck.length cards remain in the shoe.
crowns: <<=$crowns>>
Pot: $<<=$pot>>
Romano: <<= showHand($dealer, $hideDealer)>><<if !$hideDealer>> [<<= handValue($dealer)>>]<</if>>
You: <<= showHand($player)>> [<<= handValue($player)>>]<<if $result>> $result<<set $result to "">><</if>>
<<if $hideDealer>><<button "Hit" "Romano Deal">><<run playerHit()>><</button>><<button "Stand" "Romano Deal">><<run playerStand()>><</button>><<else>><<button "Bet" "Romano Blackjack">><</button>><</if>><</if>><style>
body.suburbs::before {
content: '';
background-image: url("img/background/cards.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $badbet>>@@color:red;You don't have enough crowns for this bet!@@
<<button "Bet" "Romano Blackjack Offer">><</button>><<else>>$deck.length cards remain in the shoe.
crowns: <<=$crowns>>
Pot: $<<=$pot>>
Romano: <<= showHand($dealer, $hideDealer)>><<if !$hideDealer>> [<<= handValue($dealer)>>]<</if>>
You: <<= showHand($player)>> [<<= handValue($player)>>]<<if $result>> $result<<set $result to "">><</if>>
<<if $hideDealer>><<button "Hit" "Romano Deal Offer">><<run playerHit()>><</button>><<button "Stand" "Romano Deal Offer">><<run playerStand()>><</button>><<else>><<button "Bet" "Romano Blackjack Offer">><</button>><</if>><</if>><style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/hackers.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
The hooded guy leans against the doorway of the dimly lit hideout, his silhouette outlined by the flickering glow of monitors and the hum of electronics.
<span class="male_text">- "So, you were looking for our place. Name's Sixth. Yeah, just Sixth. The rest of my crew, well, they prefer to stay in the shadows. Let's just say I'm the friendly face of our little operation."</span>
He steps aside, gesturing for the player to enter, before continuing.
<span class="male_text">- "We run a tight ship here, all about information and electronics. You need ''intel on a juicy target?'' We can hook you up. But, it's a two-way street. We’re always in the market for certain...''components''. The kind that don’t have serial numbers. If you happen to come across anything of interest, we might be able to make a deal. ''Help us out enough'', and maybe, just maybe, we’ll show you a trick or two that could make your life a whole lot easier."</span>
<<link "Nod." "Hackers Den">>
<<set $hackers_met = 2>>\
<</link>>\<<silently>>\
<<if $downtown_state == false>>
<<set _biggie_yapping = $biggie_yapping.random()>>
<<set _slick_trick_yapping = $slick_trick_yapping.random()>>
<<set _dizzy_yapping = $dizzy_yapping.random()>>
<<else>>
<<set _biggie_yapping = $biggie_yapping_boss.random()>>
<<set _slick_trick_yapping = $slick_trick_yapping_boss.random()>>
<<set _dizzy_yapping = $dizzy_yapping.random()>>
<</if>>
<<set _yapping_roll = random(0, 15)>>
<</silently>>\
<<if $gangs_met == 0>>\
A badly lit room filled with the smell of smoke and the sound of low, thumping music. The walls are adorned with graffiti, and a couple of neon signs flicker intermittently. Yeah, that's obviously gang's nest. You steps into the room, where three figures are seated.
Biggest figurine looks up to you lazily from his spot on the sofa, his eyes half-closed, yet sharp.
<span class="biggie">- "Ayo, ayo… look who decided to pull up. Heard the chatter ‘bout you. Name’s Biggie. I keep things vibin’ around here, no cap. Downtown’s our spot, and if you tryna play in our sandbox, you best not mess up anythin' or it'll be minus vibe, feel me?"</span>
The second guy, who had been lounging in a chair and playing with a knife, fixed his gaze on you.
<span class="slick_trick">- "Yeah, yeah, I’m ''Slick Trick''. Don’t think I don’t know what you’re about. We got ears everywhere, see? You got somethin’ goin' on, you come to us first. No questions asked. Otherwise..."</span> - He flips the knife, catching it by the blade, grinning. <span class="slick_trick">- "...things might get... tricky."</span>
The third guy nods absentmindedly, taking a long drag from whatever he’s smoking. He leans back, eyes half-closed, exhaling a cloud of smoke.
<span class="biggie">-"And this here’s Sub-Dizzy. Dude’s not a talker, but trust, he’s got the 411 on all the street biz. If Dizzy ain't feelin’ you, we ain’t feelin’ you, sis. You get it?"</span>
Biggie chuckles softly - <span class="biggie">"Look, we ain't some boomer-heads, ya feel? You keep it chill with us, we keep it chill with you. It's that simple. Don’t be doin' no wild shit on our block, and Biggie ain’t even gonna move from this couch, fam. Plus, if you pull together your own crew, we can hook you up with the local vibes - you know, get the ''lowkey contacts for the shorties'' and maybe help you score some… stuff, if you catch my drift. For a price, of course.<<if $burglar_quest > 2>> Also, you've helped our guy down there with his lil scheme. Ti ay.<</if>>"</span>
<span class="in_link"><<link "Got it.">>
<<set $gangs_met = 1>>\
<<set $reputation += 200>>\
<<run Engine.show()>>\
<</link>></span>
<<else>>\
<<if _yapping_roll >= 10>>\
<span class="biggie">- "_biggie_yapping" - Biggie yaps.</span>
<<elseif _yapping_roll >= 5>>\
<span class="slick_trick">- "_slick_trick_yapping" - Slick Trick says.</span>
<<elseif _yapping_roll < 5>>\
<span class="dizzy">- "_dizzy_yapping" - Dizzy mumbles.</span>
<</if>>
\
<<if $money >= 400>>\
<<trade_link>><<link "Chems A - 400$.">>
<<money `-400`>>\
<<pickup $p_craft "Chems A" 1>>\
<<run Engine.show()>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available">Chems A - 400$.</span>
<</if>>
<<if $money >= 400>>\
<<trade_link>><<link "Chems B - 400$.">>
<<money `-400`>>\
<<pickup $p_craft "Chems B" 1>>\
<<run Engine.show()>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available">Chems B - 400$.</span>
<</if>>
<<if $money >= 550>>\
<<trade_link>><<link "Materials for Encapsulation - 550$.">>
<<money `-550`>>\
<<pickup $p_craft "Materials for Encapsulation" 1>>\
<<run Engine.show()>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available">Materials for Encapsulation - 550$.</span>
<</if>>
<<if $money >= 100>>\
<<trade_link>><<link "Paper - 100$.">>
<<money `-100`>>\
<<pickup $p_craft "Paper" 1>>\
<<run Engine.show()>>\
<</link>><</trade_link>>\
<<else>>\
<span class="not_available">Paper - 100$.</span>
<</if>>
<</if>>\<<silently>>\
<<set _random_name = $band_names.random()>>
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/background/events/band_creation.webp");
inset: 0;
position: fixed;
filter:grayscale(60%);
background-size: cover;
}
</style>\
It's time. You've gathered everything you need for this; you've networked and hustled hard to get here. But being a boss is something different. You're going to need to pay a lot of money to your goons, and you'll have to watch out for your reputation. If you lose your grip, you might be overwhelmed by your own troops.
Keep an eye on ''gang morale''. The more dirty jobs and shady businesses you involve your organization in, the bigger the hit to morale. But everything can be fixed with money, and your people will stay loyal as long as you have cash to spare. The lower your gang's morale, the higher the payments you'll have to make every day.
Having your own organization comes with obvious benefits. You'll be able to pursue much bigger scores, like heists and semi-legal businesses. The more money you risk, the more profit you can make.
''Check your task journal and whiteboard after the band creation.''
Enter your gang name: <<textbox "$band_name" _random_name>>
<<link "Random name" "Band Creation">>\
<</link>>
<<link "Confirm." "Whiteboard">>
<<set $p_boss = true>>\
<<set $reputation += 2500>>\
<<set $original_band_name = $band_name>>\
<<set $band_type = "Street Gang">>\
<</link>>
<<link "Decline." "Whiteboard">>\
<</link>><<widget "pre_band">>\
Your place to write down everything important. You will be using it for planning and gang management when the time comes, but right now it is used only as a reminder of various things.
To establish your own "organization," you need to achieve the following goals:
<<if $money >= 10000>>\
1. <s>More than 10000$ on the account.</s>
<<set _goal_1 = true>>\
<<else>>\
1. More than 10000$ in the account.
<</if>>\
\
<<if $p_warehouse >= 2>>\
2. <s>Own a warehouse. You won't get far without it. The warehouse district is located at the harbor.</s>
<<set _goal_2 = true>>\
<<else>>\
2. Own a warehouse. You won't get far without it. Huge boost to your earning and rep. The warehouse district is located at the harbor.
<</if>>\
\
<<if $home_type >= 2>>\
3. <s>Own a house. You need your own HQ as a base of operations. You can look for a new house by browsing on your PC.</s>
<<set _goal_3 = true>>\
<<else>>\
3. Own a house. You need your own HQ as a base of operations. You can look for a new house by browsing on your PC.
<</if>>\
\
<<if $mafia_met > 0 && $cartel_base == true && $bikers_met > 0 && $gangs_met > 0>>\
4. <s>Locate and get acquainted with all the major forces in the city: the mafia, cartels, gangs, and bikers. Visit all the districts and search around; you’ll eventually find everything you need.</s>
<<set _goal_4 = true>>\
<<else>>\
4. Locate and get acquainted with all the major forces in the city: the mafia, cartels, gangs, and bikers. Visit all the districts and search around; you’ll eventually find everything you need.
<</if>>\
\
<<if $reputation >= 5000>>\
5. <s>Achieve the reputation of "Big Shot", people have to know who you are. Just do your things. Anything related to criminal activity will boost your reputation.</s>
<<set _goal_5 = true>>\
<<else>>\
5. Achieve the reputation of "Big Shot", people have to know who you are. Just do your things. Anything related to criminal activity will boost your reputation.
<</if>>\
\
<<if $range_stash.count("Block 19") >= 3>>\
6. <s>Have at least three handguns ("Block 19") in your stash. It's better to be prepared for any consequences. If you can't find any guns, buy them from local gun dealers. Rumor has it that bikers are selling weapons without any traces. Also, it's better to have a weapon shipment ready for unforeseen events, but not required.</s>
<<set _goal_6 = true>>\
<<else>>\
6. Have at least three handguns ("Block 19") in your stash. It's better to be prepared for any consequences. If you can't find any guns, buy them from local gun dealers. Rumor has it that bikers are selling weapons without any traces. Also, it's better to have a weapon shipment ready for unforeseen events, but not required.
<</if>>\
\
<<if $band_strength >= 300>>\
7. <s>Achieve a gang strength value above 300. You may not have your own organization yet, but preparing your future crew won’t hurt. Find and befriend local thugs and thieves in bars, nightclubs, and other shady spots - convince them to back you when the time comes.</s>
<<set _goal_7 = true>>\
<<else>>\
7. Achieve a gang strength value above 300. You may not have your own organization yet, but preparing your future crew won’t hurt. Find and befriend local thugs and thieves in bars, nightclubs, and other shady spots - convince them to back you when the time comes.
<</if>>\
<<if _goal_1 == true && _goal_2 == true && _goal_3 == true && _goal_4 == true && _goal_5 == true && _goal_6 == true && _goal_7 == true>>\
<<link "Organize your own organization." "Band Creation">>
<</link>>\
<br>\
<</if>>\
<</widget>>\
<<widget "open_map">>\
<<out_link>><<link "Open map">>
<<script>>
Dialog.setup("City Map");
Dialog.wiki(Story.get("City Map").processText());
Dialog.open();
<</script>>
<</link>><</out_link>>\
<</widget>>\
<<widget "rent_check">>\
<<if $taxmen_friend == true && $rent < 20>>\
<<money `9`>>\
You saved 9$ through some tax fraud.
<<elseif $taxmen_friend == true && $rent < 50>>\
<<money `21`>>\
You saved 21$ through some tax fraud.
<<elseif $taxmen_friend == true && $rent < 100>>\
<<money `37`>>\
You saved 37$ through some tax fraud.
<<elseif $taxmen_friend == true && $rent < 150>>\
<<money `48`>>\
You saved 48$ through some tax fraud.
<<elseif $taxmen_friend == true && $rent < 300>>\
<<money `86`>>\
You saved 86$ through some tax fraud.
<<elseif $taxmen_friend == true && $rent >= 300>>\
<<money `108`>>\
You saved 108$ through some tax fraud.
<</if>>\
<</widget>>\
<<widget "rep_caption">>\
<<if $reputation < 0>>\
<img src= "img/UI/reputation/scum.png">
Scum.
<<elseif $reputation >= 0 && $reputation < 300>>\
<img src= "img/UI/reputation/nobody.png">
Nobody.
<<elseif $reputation >= 300 && $reputation < 1000>>\
<img src= "img/UI/reputation/hustler.png">
Hustler.
<<elseif $reputation >= 1000 && $reputation < 5000>>\
<img src= "img/UI/reputation/thug.png">
Thug.
<<elseif $reputation >= 5000 && $reputation < 10000>>\
<img src= "img/UI/reputation/big_shot.png">
Big Shot.
<<elseif $reputation >= 10000 && $reputation < 20000>>\
<img src= "img/UI/reputation/rogue_boss.png">
Rogue Boss.
<<elseif $reputation >= 20000 && $reputation < 30000>>\
<img src= "img/UI/reputation/big_boss.png">
Big Boss.
<<elseif $reputation >= 30000>>\
<img src= "img/UI/reputation/crime_lord.png">
Crime Lord.
<</if>>\
<</widget>>\
<<widget "gangs_str_change">>\
<<set _change_roll = random(0, 10)>>\
<<set _change_amount = random(10, 70)>>\
<<if _change_roll > 5>>\
<<set _event = $gangs_event_good.random()>>\
<<gangs_str `_change_amount`>>\
_event ''Gangs grow stronger.'' New value of their strength: $gangs_str.
<<else>>\
<<set _event = $gangs_event_bad.random()>>\
<<gangs_str `-_change_amount`>>\
_event ''Gangs grow weaker.'' New value of their strength: $gangs_str.
<</if>>\
<</widget>>\
<<widget "mafia_str_change">>\
<<set _change_roll = random(0, 10)>>\
<<set _change_amount = random(20, 110)>>\
<<if _change_roll > 5>>\
<<set _event = $mafia_event_good.random()>>\
<<mafia_str `_change_amount`>>\
_event ''Mafia grow stronger.'' New value of their strength: $mafia_str.
<<else>>\
<<set _event = $mafia_event_bad.random()>>\
<<mafia_str `-_change_amount`>>\
_event ''Mafia grow weaker.'' New value of their strength: $mafia_str.
<</if>>\
<</widget>>\
<<widget "bikers_str_change">>\
<<set _change_roll = random(0, 10)>>\
<<set _change_amount = random(30, 150)>>\
<<if _change_roll > 5>>\
<<set _event = $bikers_event_good.random()>>\
<<bikers_str `_change_amount`>>\
_event ''Bikers grow stronger.'' New value of their strength: $bikers_str.
<<else>>\
<<set _event = $bikers_event_bad.random()>>\
<<bikers_str `-_change_amount`>>\
_event ''Bikers grow weaker.'' New value of their strength: $bikers_str.
<</if>>\
<</widget>>\
<<widget "band_check">>\
<<if $band_type == "Crew">>\
<<set $band_morale_mod_bt = -1>>\
<<else>>\
<<set $band_morale_mod_bt = -2>>\
<</if>>\
<<if $band_type == "Drugs Network">>\
<<set $lab_production_mod_bt = 2>>\
<<else>>\
<<set $lab_production_mod_bt = 1>>\
<</if>>\
<<if $band_type == "Posse of Thieves">>\
<<set $theft_bt = 2>>\
<<else>>\
<<set $theft_bt = 1>>\
<</if>>\
<<if $band_type == "Pimp Faction">>\
<<set $sluts_bt = 2>>
<<else>>\
<<set $sluts_bt = 1>>
<</if>>\
\
<<if $band_payment == 30>>\
<<set $band_morale_mod_payday = -1>>\
<<elseif $band_payment == 60>>\
<<set $band_morale_mod_payday = 0>>\
<<elseif $band_payment == 100>>\
<<set $band_morale_mod_payday = 1>>\
<</if>>\
\
<<if $boss_type == "Bandit Boss">>\
<<set $boss_rep_lose = 15>>\
<<elseif $boss_type == "The Thief Lord">>\
<<set $boss_rep_lose = 30>>\
<<set $cun_mod_boss = 1>>\
<<elseif $boss_type == "Kingpin">>\
<<set $boss_rep_lose = 30>>\
<<set $combat_mod_boss = 1>>\
<<elseif $boss_type == "Slut Boss">>\
<<set $boss_rep_lose = 30>>\
<<set $charm_mod_boss = 1>>\
<<elseif $boss_type == "Mastermind">>\
<<set $boss_rep_lose = 40>>\
<<set $cun_mod_boss = 2>>\
<<elseif $boss_type == "The Boss">>\
<<set $boss_rep_lose = 40>>\
<<set $cun_mod_boss = 1>>\
<<set $combat_mod_boss = 1>>\
<<elseif $boss_type == "Crime Legend">>\
<<set $boss_rep_lose = 0>>\
<<set $cun_mod_boss = 1>>\
<<set $combat_mod_boss = 1>>\
<<set $charm_mod_boss = 1>>\
<<set $energy_mod_boss = 4>>\
<</if>>\
<</widget>>\
<<widget "undergroung_ring_observe_1">>\
<<if $ring_fighter_1_combat > 6>>\
is obviously a strong fighter, his combat capabilities are at a high level,\
<<elseif $ring_fighter_1_combat >= 5>>\
is looking quite mediocre as a fighter, nothing special,\
<<else>>\
isn't a fighter at all, probably some newcommer,\
<</if>>\
\
<<if $ring_fighter_1_hp >= 25>>\
and he looks very tough and in good shape.\
<<elseif $ring_fighter_1_hp >= 20>>\
and he's in pretty okeish shape, he can take a few hits for sure.\
<<else>>\
and he's in poor shape, he won't be able to take many hits.\
<</if>>\
<</widget>>\
<<widget "undergroung_ring_observe_2">>\
<<if $ring_fighter_2_combat > 6>>\
is obviously a strong fighter, his combat capabilities are at a high level,\
<<elseif $ring_fighter_2_combat >= 5>>\
is looking quite mediocre as a fighter, nothing special,\
<<else>>\
isn't a fighter at all, probably some newcommer,\
<</if>>\
\
<<if $ring_fighter_2_hp >= 25>>\
and he looks very tough and in good shape.\
<<elseif $ring_fighter_2_hp >= 20>>\
and he's in pretty okeish shape, he can take a few hits for sure.\
<<else>>\
and he's in poor shape, he won't be able to take many hits.\
<</if>>\
<</widget>>\
<<widget "set_ring_fighters">>\
<<set _ring_1_damage = $ring_fighter_1_combat + random(-2, 2)>>\
<<set _ring_2_damage = $ring_fighter_2_combat + random(-2, 2)>>\
<<set _ring_desc = $ring_fight_desc.random()>>\
<</widget>>\
<<widget "sabo_result">>\
<<switch $sabo_type>>\
<<case "gangs_raid">>\
<<gangs_str `-200`>>\
Your crew launched a swift raid on the gang’s turf. Gangs strength: $gangs_str.
<<case "gangs_spike">>\
<<gangs_str `-250`>>\
The gang's dealers received a shipment of spiked drugs. The results won’t take long to show. Gangs strength: $gangs_str.
<<case "gangs_racketeer">>\
<<set $gangs_racketeer = true>>\
''Your crew handed over intel on how to intercept the racketeer. It’s up to you now - he’s at the marketplace.''\
<<case "gangs_stashes">>
<<gangs_str `-150`>>\
<<set _drugs_amount = random(100, 350)>>\
<<set _drug_type = either("Drugs", "Steroids")>>\
<<pickup $p_inv _drug_type _drugs_amount>>\
A few bribes, a few intimidating questions, and voilà - the stashes are yours. You've got _drugs_amount _drug_type. Gangs strength: $gangs_str.
<<case "mafia_raid">>\
<<mafia_str `-500`>>\
Your crew launched a swift raid on the mafia’s turf. Mafia strength: $mafia_str.
<<case "mafia_workshop">>\
<<mafia_str `-500`>>\
Unknown individuals wrecked several cars at the auto center under the mafia's protection overnight. This is a serious blow to their reputation. Mafia strength: $mafia_str.
<<case "mafia_wrecking">>\
<<set $mafia_wreck = true>>\
''Your crew has found the location of the mafia’s gathering place. It’s up to you now - track them down in the suburbs.''
<<case "mafia_ring">>\
<<mafia_str `-500`>>\
<<set _amount_of_money = random(10000, 20000)>>\
<<dirty_money `_amount_of_money`>>\
Your crew trashed the ring overnight and made off with the cash from bets, scoring a hefty _amount_of_money​$ in dirty. Mafia strength: $mafia_str.
<<case "bikers_raid">>\
<<bikers_str `-1200`>>\
Your crew launched a swift raid on the bikers’ turf. Bikers strength: $bikers_str.
<<case "bikers_heist">>\
<<bikers_str `-800`>>\
<<set _amount_of_shipments = random(3, 6)>>\
<<set _stolen_shipment = either("Concealed Melee Shipment", "Moonshine Shipment", "Electronic Shipment", "Stolen Goods Shipment", "Drugs Shipment", "Steroids Shipment", "Aphrodisiac Shipment")>>\
<<pickup $warehouse_inv _stolen_shipment _amount_of_shipments>>\
Score of your thieves: _amount_of_shipments _stolen_shipment. Bikers strength: $bikers_str.
<<case "bikers_burn">>\
<<bikers_str `-1500`>>\
Volkov was found crying over some charred papers. Bikers strength: $bikers_str.
<<case "bikers_setup">>\
<<set $reputation -= 250>>\
<<bikers_str `-1500`>>\
The police have discovered weapon stashes. This is a win - the bikers are in for a raid. Bikers strength: $bikers_str.
<<case "bikers_spike">>\
<<bikers_str `-900`>>\
It was a bit of a hustle to move the goods into the club, but it was worth it. The bikers got poisoned. Bikers strength: $bikers_str.
<</switch>>\
<<morale `5`>>\
<</widget>>\
<<widget "enemy_sabo_move">>\
<<set $enemy_sabo = 3>>\
<<set _sabo_roll = random(0, 10)>>\
<<if _sabo_roll >= 9>>\
Your enemies raided your territory. There were no significant losses, but your $band_type morale has taken a hit.
<<morale `-10`>>\
<<elseif _sabo_roll >= 6>>\
Your enemies launched a covert raid on your warehouse.
<<warehouse_penalty>>\
<<elseif _sabo_roll >= 3>>\
Someone managed to rob you during the night. Clearly, a professional was at work, probably hired by your enemies - no trace was left behind.
<<money_penalty>>\
<<else>>\
Your enemies are spreading dirty rumors about you, they are trying to damage your reputation.
<<if $boss_type == "Slut Boss">>\
But it’s amusing to use these types of rumors against you.
<<else>>\
<<rep_loss>>\
<</if>>\
<</if>>\
<</widget>>\
<<widget "current_sabo">>\
<<switch $sabo_type>>\
<<case "gangs_raid">>\
Raid on Gangs.
<<case "gangs_spike">>\
Spiking the Gangs drugs.
<<case "gangs_racketeer">>\
Looking for Gangs racketeer.
<<case "gangs_stashes">>\
Looking for stashes of Gangs.
<<case "mafia_raid">>\
Raid on Mafia.
<<case "mafia_workshop">>\
Thrashing the workshop.
<<case "mafia_wrecking">>\
Wrecking the Mafia's cars.
<<case "mafia_ring">>\
Disrupting the undercover ring.
<<case "bikers_raid">>\
Raid on bikers.
<<case "bikers_heist">>\
Preparing heist on bikers.
<<case "bikers_burn">>\
Burning the money.
<<case "bikers_setup">>\
Preparing setup on bikers.
<<case "bikers_spike">>\
Spiking the bikers.
<</switch>>\
<</widget>>\
<<widget "sex_rep_check">>\
<<silently>>
<<if $p_boss == true && $boss_type != "Crime Legend" && $boss_type != "Slut Boss">>
<<set $reputation -= 40>>
<<notify 2s>>Your rep has been slightly lowered.<</notify>>\
<</if>>
<</silently>>\
<</widget>>\
<<widget "ft_pic_setup">>\
<<if $car == 1>>\
<span class="sidebar_image_link_car"><<link '<img src= "img/UI/sidebar/car_t1.webp">'>>\
<<if _ft_on == false || !_ft_on && $ft_locked == false>>\
<<replace ".sidebar_ft">>\
<<include "Fast Travel">>\
<</replace>>\
<<set _ft_on = true>>\
<<elseif $ft_locked == true>>\
<<replace ".sidebar_ft">>\
<</replace>>\
<<set _ft_on = false>>\
<<else>>\
<<replace ".sidebar_ft">>\
<</replace>>\
<<set _ft_on = false>>\
<</if>>\
<</link>>\
</span>\
<<elseif $car == 2>>\
<span class="sidebar_image_link_car"><<link '<img src= "img/UI/sidebar/car_t2.webp">'>>\
<<if _ft_on == false || !_ft_on && $ft_locked == false>>\
<<replace ".sidebar_ft">>\
<<include "Fast Travel">>\
<</replace>>\
<<set _ft_on = true>>\
<<elseif $ft_locked == true>>\
<<replace ".sidebar_ft">>\
<</replace>>\
<<set _ft_on = false>>\
<<else>>\
<<replace ".sidebar_ft">>\
<</replace>>\
<<set _ft_on = false>>\
<</if>>\
<</link>>\
</span>\
<<elseif $car == 3>>\
<span class="sidebar_image_link_car"><<link '<img src= "img/UI/sidebar/car_t3.webp">'>>\
<<if _ft_on == false || !_ft_on && $ft_locked == false>>\
<<replace ".sidebar_ft">>\
<<include "Fast Travel">>\
<</replace>>\
<<set _ft_on = true>>\
<<elseif $ft_locked == true>>\
<<replace ".sidebar_ft">>\
<</replace>>\
<<set _ft_on = false>>\
<<else>>\
<<replace ".sidebar_ft">>\
<</replace>>\
<<set _ft_on = false>>\
<</if>>\
<</link>>\
</span>\
<</if>>\
<</widget>>\
<<widget "reset_underground_bets">>\
<<set $bet_1 = 0>>\
<<set $bet_2 = 0>>\
<</widget>>\<<silently>>\
<<band_payday>>
<<count_war_progress_speed>>
<<money `-_band_payday`>>
<<set $reputation -= $boss_rep_lose>>
<<count_morale_change>>\
<<morale `_morale_change`>>\
<<if $band_morale < 26>>
<<set $morale_mod = 1.5>>
<<else>>
<<set $morale_mod = 1>>
<</if>>
<<if $code_cd > 0>>
<<set $code_cd -= 1>>
<</if>>
<<if $band_type == "Syndicate">>
<<set _syndicate_payment = 0>>
<<if $outskirt_state == true>>
<<set _syndicate_payment += 2000>>
<</if>>
<<if $harbor_state == true>>
<<set _syndicate_payment += 2000>>
<</if>>
<<if $suburbs_state == true>>
<<set _syndicate_payment += 2000>>
<</if>>
<<if $downtown_state == true>>
<<set _syndicate_payment += 2000>>
<</if>>
<<money `_syndicate_payment`>>
<</if>>
<<if $band_strength >= 800 && $band_event_cd == 0>>
<<set $band_event = true>>
<<set $band_event_cd = 3>>
<<elseif $band_strength >= 800 && $band_event_cd > 0>>
<<set $band_event_cd -= 1>>
<</if>>
<<if $warehouse_raid_cd > 0>>
<<set $warehouse_raid_cd -= 1>>
<</if>>
<</silently>>\
''Band stuff'':
Morale: $band_morale/100.
<<if $band_type == "Syndicate">>\
Payments from your syndicate lieutenants: _syndicate_payment​$.
<<set $total_gained += _syndicate_payment>>\
<</if>>\
<<include "Band Lvlups And Work">>\
<<if $hooks_amount > 0 && $hooks_on == true>>\
<<hooks_work>>\
<</if>>\
<<if $thiefs_amount > 0>>\
<<set $theft_progress += ($thiefs_amount * (100 + $thieves_productivity)) * $theft_bt>>\
<<thiefs_work>>\
<</if>>\
<<if $drug_dealers_amount > 0>>\
<<drug_dealers_work>>\
<</if>>\
<<if $steroid_dealers_amount > 0>>\
<<steroid_dealers_work>>\
<</if>>\
<<if $coin_washers_amount > 0>>\
<<coin_washers_work>>\
<</if>>\
Spendings on ''crew'':
Everyday payments for your crew: _band_payday​$.
<<set $total_loss -= _band_payday>>\
<<if $chemist > 0>>\
<<set _chemists_payments = $chemist * $chemist_payment>>\
_chemists_payments​$ for your chemists.
<<money `-_chemists_payments`>>\
<<set $total_loss += _chemists_payments>>\
<</if>>\
<<if $moonshine_trailer == true && $moonshine_farmers > 0>>\
_farmer_payments​$ - payments for your moonshiners.
<<set $total_loss += _farmer_payments>>\
<<money `-_farmer_payments`>>\
<</if>>\
\
<<if $heist_progress_needed > 0>>\
<br>\
You've made _potential_progress pts of heist preparation progress this day.
<<heist_progress `_potential_progress`>>\
<</if>>\
<<if $downtown_state == false || $suburbs_state == false || $outskirts_state == false>>\
<br>\
''Competitors'':
<<if $downtown_state == false>>\
<<gangs_str_change>>\
<</if>>\
<<if $suburbs_state == false>>\
<<mafia_str_change>>\
<</if>>\
<<if $outskirts_state == false>>\
<<bikers_str_change>>\
<</if>>\
<<if $sabo_active == true>>
<br>\
<<sabo_result>>\
<<set $sabo_active = false>>\
<<set $sabo_type = "">>\
<</if>>\
\
<<if $gangs_war == true || $mafia_war == true || $bikers_war == true>>\
<<set $band_war_progress += $band_war_progress_speed>>\
<br>\
Today's ''war progress'': $band_war_progress_speed pts.
<<set $enemy_sabo -= 1>>\
<<if $enemy_sabo <= 0>>\
<<enemy_sabo_move>>\
<</if>>\
<</if>>\
<</if>>\<<message "Competitors" btn>>
<<if $gangs_war == true>>\
''Gangs'': The gangs fight tooth and nail to defend their turf.
Strength: $gangs_str.
<<count_war_progress_speed>>\
Speed of turf capturing: $band_war_progress_speed.
Turf capturing progress:
<<set $band_war_progress = Math.clamp($band_war_progress, 0, $band_war_needed_progress)>>\
<<set _progress = $band_war_progress / $band_war_needed_progress>>\
<<showmeter "war_progress" _progress>>
<<if $band_war_progress >= $band_war_needed_progress && $band_strength > $gangs_str>>\
<<link "Commence the full turf conquest." "Gangs Leaders Fight Intro">>
<</link>>
<<elseif $band_war_progress >= $band_war_needed_progress && $band_strength < $gangs_str>>\
<span class="not_available"> You need a stronger gang than your enemy's if you want to take over their turf.</span>
<</if>>\
<<if $money >= 15000>>\
<<link "Buy a truce - 15000$" "Whiteboard">>
<<money `-15000`>>\
<<set $gangs_war = false>>\
<<set $reputation -= 1000>>\
<<set $band_war_progress = 0>>\
<<set $gangs_racketeer = false>>\
<</link>>, it'll hurt your reputation.
<<else>>\
<span class="not_available"> Buy a truce - 15000$.</span>
<</if>>\
<<elseif $downtown_state == false>>\
''Gangs'': Protection money flows, drugs are dealed, windows shatter, and the Downtown knows who’s in charge.
Strength: $gangs_str.
<<if $mafia_war == false && $bikers_war == false>>\
<<link "Declare a war for their turf." "Whiteboard">>
<<set $gangs_war = true>>\
<<set $band_war_needed_progress = 500>>\
<<set $band_enemy_strength = $gangs_str>>\
<<set $band_war_max_progress = 75>>\
<</link>>
<</if>>\
<<elseif $downtown_state == true>>\
''Gangs'': The graffiti fades, and the streets have gone quiet. The gangs’ hold on Downtown has crumbled, their style now just a part of someone else's. Now its your turf.
<</if>>\
<br>\
<<if $mafia_war == true>>\
''Mafia'': Engines roar. Good thing they’re not sending messages with tommy guns or horse heads.
Strength: $mafia_str.
<<count_war_progress_speed>>\
Speed of turf capturing: $band_war_progress_speed.
Turf capturing progress:
<<set $band_war_progress = Math.clamp($band_war_progress, 0, $band_war_needed_progress)>>\
<<set _progress = $band_war_progress / $band_war_needed_progress>>\
<<showmeter "war_progress" _progress>>
<<if $band_war_progress >= $band_war_needed_progress && $band_strength > $mafia_str>>\
<<link "Commence the full turf conquest." "Mafia Leader Fight Intro">>
<</link>>
<<elseif $band_war_progress >= $band_war_needed_progress && $band_strength < $mafia_str>>\
<span class="not_available"> You need a stronger gang than your enemy's if you want to take over their turf.</span>
<</if>>\
<<if $money >= 25000>>\
<<link "Buy a truce - 25000$" "Whiteboard">>
<<money `-25000`>>\
<<set $mafia_war = false>>\
<<set $reputation -= 1500>>\
<<set $mafia_wreck = false>>\
<<set $band_war_progress = 0>>\
<</link>>, it'll hurt your reputation.
<<else>>\
<span class="not_available"> Buy a truce - 25000$.</span>
<</if>>\
<<elseif $suburbs_state == false>>\
''Mafia'': Their business was set up long ago, money flows, and everything’s running at full throttle.
Strength: $mafia_str.
<<if $gangs_war == false && $bikers_war == false>>\
<<link "Declare a war for their turf." "Whiteboard">>
<<set $mafia_war = true>>\
<<set $band_war_needed_progress = 1000>>\
<<set $band_enemy_strength = $mafia_str>>\
<<set $band_war_max_progress = 150>>\
<</link>>
<</if>>\
<<elseif $suburbs_state == true>>\
''Mafia'': The old times are gone.
<</if>>\
<br>\
<<if $bikers_war == true>>\
''Bikers'': Nothing’s off-limits when their profits are at stake - and you've got them stirred up.
Strength: $bikers_str.
<<count_war_progress_speed>>\
Speed of turf capturing: $band_war_progress_speed.
Turf capturing progress:
<<set $band_war_progress = Math.clamp($band_war_progress, 0, $band_war_needed_progress)>>\
<<set _progress = $band_war_progress / $band_war_needed_progress>>\
<<showmeter "war_progress" _progress>>
<<if $band_war_progress >= $band_war_needed_progress && $band_strength > $bikers_str>>\
<<link "Commence the full turf conquest." "Bikers Leader Fight Intro">>
<</link>>
<<elseif $band_war_progress >= $band_war_needed_progress && $band_strength < $bikers_str>>\
<span class="not_available"> You need a stronger gang than your enemy's if you want to take over their turf.</span>
<</if>>\
<<if $money >= 40000>>\
<<link "Buy a truce - 40000$" "Whiteboard">>
<<money `-15000`>>\
<<set $bikers_war = false>>\
<<set $reputation -= 2000>>\
<<set $band_war_progress = 0>>\
<</link>>, it'll hurt your reputation.
<<else>>\
<span class="not_available"> Buy a truce - 40000$.</span>
<</if>>\
<<elseif $outskirts_state == false>>\
''Bikers'': No deal too big, no border too far for them and the cash flows like a damn river.
Strength: $bikers_str.
<<if $mafia_war == false && $gangs_war == false>>\
<<link "Declare a war for their turf." "Whiteboard">>
<<set $bikers_war = true>>\
<<set $band_war_needed_progress = 2000>>\
<<set $band_enemy_strength = $bikers_str>>\
<<set $band_war_max_progress = 300>>\
<</link>>
<</if>>\
<<elseif $outskirts_state == true>>\
''Bikers'': The once independent bikers now run shipments under new orders, their profits funneled through someone else's hands.
<</if>>\
<br>\
<<if $harbor_state == false>>\
''Cartel'': The docks are busy, the streets are lively, and business never stops. Ships come and go under the cartel’s watchful eye, while every deal, every trade, and every transaction flows smoothly through their hands.
Strength: confidential.
<<elseif $harbor_state == true>>\
''Cartel'': The ships still dock, but the control has slipped. Traders now answers to someone else, profits siphoned and operations managed from the shadows.
<</if>>\
<</message>>\Name: $active_npc.name
Nickname: $active_npc.nickname \
(<<linkreplace "Change?">>\
<<textbox "$active_npc.nickname" "">>\
<<link " - Accept">>
<<script>>
Dialog.close();
<</script>>
<<run Engine.show()>>\
<</link>>\
<</linkreplace>>)
$active_npc.job
<<if $active_npc.pos>>\
Position: $active_npc.pos
<</if>>\
<<if $active_npc.crew>>\
$active_npc.crew in your heist crew.
<</if>>\
<<observer_combat>>\
<<observer_driving>>\
<<observer_cun>>\
\
<<accomplices_job>>\
<<if !$active_npc.crew>>\
<<crew_appointment>>\
<<else>>\
<<link "Remove from crew.">>
<<remove_from_crew>>\
<<script>>
Dialog.close();
<</script>>
<<run Engine.show()>>\
<</link>>
<</if>>\
<<button "Close">>
<<set $active_npc = "">>\
<<script>>
Dialog.close();
<</script>>
<</button>>
<<button "Get rid of him.">>
<<if _remove_check == true>>\
<<removeAccomplice>>\
<<remove_from_pos>>\
<<remove_from_crew>>\
<<count_str>>\
<<set $active_npc = "">>\
<<script>>
Dialog.close();
<</script>>
<<run Engine.show()>>
<</if>>\
<</button>>
<<checkbox "_remove_check" false true>> Are you sure?<<silently>>\
<<set _amount_of_drugs = $stash.count("Drugs")>>\
<</silently>>\
<<message "Positions in organization" btn>>
More positions will open up as your organization grows larger and stronger by capturing a new districts. You can appoint anyone through your contacts.
<<message "Right Hand">>\
Right Hand - someone who handles all the "paperwork" for you, helps you with setuping a ''heist preparations'' room in your basement and grants access to ''The Code''. Only thug can become your Right Hand. 100$/day.
Right Hand: \
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].pos == "Right Hand">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<link "_v.name _v.nickname">>\
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Accomplices Window").processText());
Dialog.open();
<</script>>
<</link>>\
<</capture>>\
<</if>>\
<</for>>
<</message>>
\
<<message "Lieutenants">>\
Lieutenant - someone who oversees a valuable asset or territory that you’re not personally managing, such as the bosses of conquered gangs. They maintain control and handle the day-to-day operations in your stead.
<<if $downtown_state == true>>\
<span class="biggie">Biggie</span> - the talkative thug, always running his mouth and keeping the atmosphere lively with his chatter, otherwise it would be a nightmare to deal with other two.
<span class="slick_trick">Slick-Trick</span> - guy with a knife, quite suspicious.
<span class="dizzy">Sub-Dizzy</span> - the quiet one, always nodding or shaking his head, too lost in his haze to say much.
<</if>>\
<<if $suburbs_state == true>>\
<span class="romano">Alfa Romano</span> - a juir and bon vivant guy who firmly believes he’s Italian, though you're most probably not entirely convinced.
<</if>>\
<<if $outskirts_state == true>>\
<span class="volkov">Volkov</span> - the man who would sell the world. A no-nonsense, money-driven figure, he's not talking much.
<</if>>\
<</message>>
\
<<message "Hook">>\
Hook (max 2) - your human resources management department, they are always on lookout for a fresh talents on the streets. Hooks usually rely on their combat skills to "impress" potential candidates - the higher their skills, the faster the recruitment. Anyone wants to join a strong gang, duh. Only thugs can become a hook. 140$/day. <<if $hooks_on == true>><<link "Stop catching fresh fish">><<set $hooks_on = false>><<run Engine.show()>><</link>> - you're gonna stop doing any payments for a hooks too.<<elseif $hooks_on == false>><<link "Start searching for fresh fish.">><<set $hooks_on = true>><<run Engine.show()>><</link>><</if>>
Hooks:
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].pos == "Hook">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<link "_v.name _v.nickname">>\
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Accomplices Window").processText());
Dialog.open();
<</script>>
<</link>>
<</capture>>\
<</if>>\
<</for>>\
<</message>>
\
<<message "Thief">>\
Thief (max 5) - your bread and butter. These guys will drag anything that's not nailed down to your nest every day. They choose their targets randomly from all districts of the city. The more cunning they are, the bigger the haul. 110$/day.
Thiefs:
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].pos == "Thief">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<link "_v.name _v.nickname">>\
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Accomplices Window").processText());
Dialog.open();
<</script>>
<</link>>
<</capture>>\
<</if>>\
<</for>>\
<</message>>
\
<<message "Chauffeur">>\
Chauffeur - makes your life easier. Just like that. Having a chauffeur allows the boss to rest while traveling around the city, ensuring they have more energy for all their important tasks. Only thugs may became your chauffeurs. 70$/day.
Chauffeur: \
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].pos == "Chauffeur">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<link "_v.name _v.nickname">>\
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Accomplices Window").processText());
Dialog.open();
<</script>>
<</link>>
<</capture>>\
<</if>>\
<</for>>\
<</message>>
<<message "Scout">>\
Scout (max 3) - someone who will handle all the casing of the joint. The canvasser. The sketcher. They assist you with heist preparation, and if your scouts are clever enough, they'll enhance your overall knowledge, which might aid in your cunning business dealings. You’ll see the effects after at least one day of active scouting. 120$/day.
Scouts:
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].pos == "Scout">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<link "_v.name _v.nickname">>\
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Accomplices Window").processText());
Dialog.open();
<</script>>
<</link>>
<</capture>>\
<</if>>\
<</for>>\
<</message>>
<<message "Drug Dealers">>\
Drug Dealers (max 2) - hand over some drugs to your guys through your stash and instruct them to set up a den. That’s all it takes - then sit back and wait for profits. Of course, it’s not quite that simple. In $city_name, every tenth door hides a drug den, so don’t expect to monopolize the market. Only thieves can become drug dealers, and the more cunning they are, the better the profit. 200$/day.
Amount of drugs in your stash: _amount_of_drugs
<<if $band_drug_dealers_auto == false>>\
<<link "Allow them to take drugs from your inventory automatically if there's not enough">>
<<set $band_drug_dealers_auto = true>>\
<<run Engine.show()>>\
<</link>> - you need atleast 50 drugs everynight for each dealer.
<<else>>\
<<link "Disable inventory automation">>
<<set $band_drug_dealers_auto = false>>\
<<run Engine.show()>>\
<</link>>
<</if>>\
Drug Dealers:
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].pos == "Drug Dealer">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<link "_v.name _v.nickname">>\
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Accomplices Window").processText());
Dialog.open();
<</script>>
<</link>>
<</capture>>\
<</if>>\
<</for>>\
<</message>>
<<message "Steroid Dealer">>\
Steroid Dealer (max 1) - hand over some steroids to one of your thieves through your stash and instruct him to hang out at local gyms daily. That’s all it takes. Only thieves can become steroid dealers, and the more cunning they are, the better the profit. 250$/day.
Amount of drugs in your stash: _amount_of_drugs
<<if $band_steroid_dealers_auto == false>>\
<<link "Allow him to take drugs from your inventory automatically if there's not enough">>
<<set $band_steroid_dealers_auto = true>>\
<<run Engine.show()>>\
<</link>> - you need atleast 50 steroids everynight for your dealer.
<<else>>\
<<link "Disable inventory automation">>
<<set $band_steroid_dealers_auto = false>>\
<<run Engine.show()>>\
<</link>>
<</if>>\
Steroid Dealer:
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].pos == "Steroid Dealer">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<link "_v.name _v.nickname">>\
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Accomplices Window").processText());
Dialog.open();
<</script>>
<</link>>
<</capture>>\
<</if>>\
<</for>>\
<</message>>
<<message "Coin Washers">>\
Coin Washers (max 3) - a thug tasked to organize and oversee beggars to ensure that dirty money flows smoothly through their cups. It’s not the most glamorous task in a criminal organization but plays a crucial role. The more intimidating the thug looks, the more beggars he can convince to work under you. 135$/day.
Coin Washers:
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].pos == "Coin Washer">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<link "_v.name _v.nickname">>\
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Accomplices Window").processText());
Dialog.open();
<</script>>
<</link>>
<</capture>>\
<</if>>\
<</for>>\
<</message>>
<<include "HeistCrew">>\
\
<</message>>\<<widget "accomplices_job">>\
<<if $active_npc.job == "Thug">>\
<<thug_training>>\
<<if !$active_npc.pos>>\
<<if !$right_hand.name>>\
<<set_right_hand>>\
<</if>>\
<<if $chauffeur == false>>\
<<set_chauffeur>>\
<</if>>\
<<if $coin_washers_amount < 3>>\
<<set_coin_washer>>\
<</if>>\
<<if $hooks_amount < 2>>\
<<set_hook>>\
<</if>>\
<<elseif $active_npc.pos>>\
<<link "Remove him from his position in the hierarchy.">>
<<remove_from_pos>>\
<</link>>
<</if>>\
<</if>>\
\
<<if $active_npc.job == "Thief">>\
<<if !$active_npc.pos>>\
<<if $thiefs_amount < 5>>\
<<set_thief>>\
<</if>>\
<<if $scouts_amount < 3>>\
<<set_scout>>\
<</if>>\
<<if $drug_dealers_amount < 2>>\
<<set_drug_dealer>>\
<</if>>\
<<if $steroid_dealers_amount < 1>>\
<<set_steroid_dealer>>\
<</if>>\
<<elseif $active_npc.pos>>\
<<link "Remove him from his position in the hierarchy.">>
<<remove_from_pos>>\
<</link>>
<</if>>\
<</if>>\
<</widget>>\
<<widget "slut_loc">>\
<<if $active_npc.work_location == "none">>\
<<if $dark_alleys_sluts < 15>>\
<<link "Set her working location as a Dark Alleys.">>\
<<set $active_npc.work_location = "Dark Alleys">>\
<<set $dark_alleys_sluts += 1>>\
<<script>>
Dialog.close();
<</script>>
<<run Engine.show()>>\
<</link>>
<</if>>\
<<if $brothel == true && $brothel_sluts < $brothel_sluts_max>>\
<<link "Set her working location as a Brothel.">>\
<<set $active_npc.work_location = "Brothel">>\
<<brothel_calculations>>\
<<script>>
Dialog.close();
<</script>>
<<run Engine.show()>>\
<</link>>\
<</if>>\
<<else>>\
<<link "Stop her from working anywhere.">>\
<<if $active_npc.work_location == "Dark Alleys">>\
<<set $dark_alleys_sluts -= 1>>\
<<set $active_npc.work_location = "none">>\
<<elseif $active_npc.work_location == "Brothel">>\
<<set $active_npc.work_location = "none">>\
<<brothel_calculations>>\
<</if>>\
<<script>>
Dialog.close();
<</script>>
<<run Engine.show()>>\
<</link>>\
<</if>>\
<br>\
<</widget>>\
<<widget "remove_from_pos">>\
<<silently>>\
<<switch $active_npc.pos>>
<<case "Right Hand">>
<<set $right_hand.name = "">>
<<set $right_hand.nickname = "">>
<<set $band_right_hand = false>>
<<case "Thief">>
<<set $thiefs_amount -= 1>>
<<count_thieves_prod>>
<<case "Chauffeur">>
<<set $chauffeur = false>>
<<set $energy -= 1>>
<<case "Scout">>
<<set $scouts_amount -= 1>>
<<count_scouts_cun>>\
<<case "Drug Dealer">>
<<set $drug_dealers_amount -= 1>>
<<case "Steroid Dealer">>
<<set $steroid_dealers_amount -= 1>>
<<case "Coin Washer">>
<<set $coin_washers_amount -= 1>>
<<case "Hook">>
<<set $hooks_amount -= 1>>
<</switch>>
<<set $active_npc.pos = "">>
<</silently>>\
<<script>>
Dialog.close();
<</script>>
<</widget>>\
<<widget "set_right_hand">>\
<<link "Appoint him as a Right Hand.">>\
<<set $active_npc.pos = "Right Hand">>\
<<set $right_hand.name = $active_npc.name>>\
<<set $right_hand.nickname = $active_npc.nickname>>\
<<set $band_right_hand = true>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<</widget>>\
<<widget "set_chauffeur">>\
<<link "Appoint him as a Chauffeur.">>\
<<set $active_npc.pos = "Chauffeur">>\
<<set $chauffeur = true>>\
<<set $base_energy += 1>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<</widget>>\
<<widget "set_coin_washer">>\
<<link "Appoint him as a Coin Washer.">>\
<<set $active_npc.pos = "Coin Washer">>\
<<set $coin_washers_amount += 1>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<</widget>>\
<<widget "set_hook">>\
<<link "Appoint him as a Hook.">>\
<<set $active_npc.pos = "Hook">>\
<<set $hooks_amount += 1>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<</widget>>\
<<widget "set_thief">>\
<<link "Appoint him as a Thief.">>\
<<set $active_npc.pos = "Thief">>\
<<set $thiefs_amount += 1>>\
<<count_thieves_prod>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<</widget>>\
<<widget "set_scout">>\
<<link "Appoint him as a Scout.">>\
<<set $active_npc.pos = "Scout">>\
<<set $scouts_amount += 1>>\
<<count_scouts_cun>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<</widget>>\
<<widget "set_drug_dealer">>\
<<link "Appoint him as a Drug Dealer.">>\
<<set $active_npc.pos = "Drug Dealer">>\
<<set $drug_dealers_amount += 1>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<</widget>>\
<<widget "set_steroid_dealer">>\
<<link "Appoint him as a Steroid Dealer.">>\
<<set $active_npc.pos = "Steroid Dealer">>\
<<set $steroid_dealers_amount += 1>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<</widget>>\
<<widget "thug_training">>\
<<if $active_npc.training <= 2 && $ring_information == true && $active_npc.inTraining == 0 && $money >= 3000>>\
<<link "Send him to train on underground ring - 3000$.">>
<<set $active_npc.training += 1>>\
<<set $active_npc.inTraining = 5>>\
<<money `-3000`>>\
<<set $active_npc.combat += 1>>\
<<count_str>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<<elseif $active_npc.inTraining > 0>>\
<span class="not_available"> He's training for $active_npc.inTraining more day. </span>
<<elseif $money < 3000 && $ring_information == true>>\
<span class="not_available"> Send him to train on underground ring - 3000$.</span>
<<elseif $ring_information == false>>\
<span class="not_available"> You could send him to training, but you haven't found a place for it. </span>
<<elseif $active_npc.training > 2>>\
<span class="not_available"> He's at the peak of his abilities, there's no room for improvement by training.</span>
<</if>>\
<</widget>>\
<<widget "crew_appointment">>\
<<if $active_npc.job == "Thug">>\
<<if $crew_driver == false>>\
<<link "Appoint him as a heist crew driver.">>
<<set $crew_driver = true>>\
<<set $crew_driver_skill = $active_npc.driving>>\
<<set $active_npc.crew = "Driver">>\
<<pickup $heist_crew "Driver" 1>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<</if>>\
<<if $crew_main_gunner == false>>\
<<link "Appoint him as a heist crew main gunner.">>
<<set $crew_main_gunner = true>>\
<<set $crew_main_gunner_skill = $active_npc.combat>>\
<<set $active_npc.crew = "Main Gunner">>\
<<pickup $heist_crew "Main Gunner" 1>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<</if>>\
<<if $crew_second_gunner == false>>\
<<link "Appoint him as a heist crew second gunner.">>
<<set $crew_second_gunner = true>>\
<<set $crew_second_gunner_skill = $active_npc.combat>>\
<<set $active_npc.crew = "Second Gunner">>\
<<pickup $heist_crew "Second Gunner" 1>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<</if>>\
<</if>>\
<<if $active_npc.job == "Thief">>\
<<if $crew_safecracker == false>>\
<<link "Appoint him as a heist crew safecracker.">>
<<set $crew_safecracker = true>>\
<<set $crew_safecracker_skill = $active_npc.cun>>\
<<set $active_npc.crew = "Safecracker">>\
<<pickup $heist_crew "Thief" 1>>\
<<script>>
Dialog.close();
<</script>>
<</link>>
<</if>>\
<</if>>\
<</widget>>\
<<widget "remove_from_crew">>\
<<silently>>\
<<switch $active_npc.crew>>
<<case "Driver">>
<<set $crew_driver = false>>
<<set $crew_driver_skill = 0>>
<<drop $heist_crew "Driver" 1>>\
<<case "Main Gunner">>
<<set $crew_main_gunner = false>>
<<set $crew_main_gunner_skill = 0>>
<<drop $heist_crew "Main Gunner" 1>>\
<<case "Second Gunner">>
<<set $crew_second_gunner = false>>
<<set $crew_second_gunner_skill = 0>>
<<drop $heist_crew "Second Gunner" 1>>\
<<case "Safecracker">>
<<set $crew_safecracker = false>>
<<set $crew_safecracker_skill = 0>>
<<drop $heist_crew "Thief" 1>>\
<</switch>>
<<set $active_npc.crew = "">>
<</silently>>\
<<script>>
Dialog.close();
<</script>>
<</widget>>\
<<widget "thiefs_work">>\
<<if $theft_progress >= 100>>\
Loot from your thieves:
<<for $theft_progress >= 100>>\
<<set $theft_progress -= 100>>\
<<set _loot = $thiefs_loot.array.random()>>\
<<set _loot_amount = random(1, 10)>>\
<<pickup $p_inv _loot _loot_amount>>\
_loot: _loot_amount, \
<</for>>\
<</if>>
<</widget>>\
<<widget "count_thieves_prod">>\
<<set _amount_cun = 0>>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].pos == "Thief">>\
<<set _amount_cun += $accomplices_list[_i].cun>>\
<</if>>\
<</for>>\
<<set $thieves_productivity = _amount_cun>>\
<</widget>>\
<<widget "count_hooks_prod">>\
<<set _amount_combat = 0>>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].pos == "Hook">>\
<<set _amount_combat += $accomplices_list[_i].combat>>\
<</if>>\
<</for>>\
<<set $hooks_productivity = _amount_combat>>\
<</widget>>\
<<widget "hooks_work">>\
<<set $hook_progress += $hooks_productivity>>\
<<for $hook_progress >= 16>>\
<<set $hook_progress -= 16>>\
<<silently>>\
<<createnpc_hook>>\
<<if _npc.trait == "Thug">>\
<<addaccomplice_thug_temp>>\
<<elseif _npc.trait == "Thief">>\
<<addaccomplice_thief_temp>>\
<</if>>\
<</silently>>\
Your hooks have reeled in a new member: _npc.name _npc.nickname, he's a _npc.trait.
<</for>>
<</widget>>\
<<widget "count_scouts_cun">>\
<<set _amount_scout_cun = 0>>\
<<if $scouts_amount > 0>>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].pos == "Scout">>\
<<set _amount_scout_cun += $accomplices_list[_i].cun>>\
<</if>>\
<</for>>\
<<set $scout_intel = _amount_scout_cun>>\
<<if $scout_intel >= 20>>\
<<set $cun_scout_mod = 2>>\
<<elseif $scout_intel >= 10>>\
<<set $cun_scout_mod = 1>>\
<<else>>\
<<set $cun_scout_mod = 0>>\
<</if>>\
<<else>>\
<<set $scout_intel = 0>>\
<<set $cun_scout_mod = 0>>\
<</if>>\
<</widget>>\
<<widget "drug_dealers_work">>\
<<set _money_dd = 0>>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<set _v = $accomplices_list[_i]>>\
<<if $accomplices_list[_i].pos == "Drug Dealer">>\
<<if $stash.count("Drugs") >= 50>>\
<<set _sold_amount = random(10, 50)>>\
<<set _money_dd = (3 + _v.cun) * _sold_amount>>\
_v.nickname sold _sold_amount pcs of drugs and got _money_dd​$.
<<money `_money_dd`>>\
<<set $total_gained += _money_dd>>\
<<drop $stash "Drugs" _sold_amount>>\
<<elseif $p_inv.count("Drugs") >= 50 && $band_drug_dealers_auto == true>>\
<<set _sold_amount = random(10, 50)>>\
<<set _money_dd = (3 + _v.cun) * _sold_amount>>\
_v.nickname sold _sold_amount pcs of drugs and got _money_dd​$. He got a batch from your inventory.
<<money `_money_dd`>>\
<<set $total_gained += _money_dd>>\
<<drop $p_inv "Drugs" _sold_amount>>\
<<else>>\
<span class="not_available"> You don't have any drugs in stock for your drug dealers.</span>
<</if>>\
<</if>>\
<</for>>\
<</widget>>\
<<widget "steroid_dealers_work">>\
<<set _money_dd = 0>>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<set _v = $accomplices_list[_i]>>\
<<if $accomplices_list[_i].pos == "Steroid Dealer">>\
<<if $stash.count("Steroids") >= 50>>\
<<set _sold_amount = random(10, 50)>>\
<<set _money_dd = (5 + _v.cun) * _sold_amount>>\
_v.nickname sold _sold_amount pcs of steroids and got _money_dd​$.
<<money `_money_dd`>>\
<<set $total_gained += _money_dd>>\
<<drop $stash "Steroids" _sold_amount>>\
<<elseif $p_inv.count("Steroids") >= 50 && $band_steroid_dealers_auto == true>>\
<<set _sold_amount = random(10, 50)>>\
<<set _money_dd = (5 + _v.cun) * _sold_amount>>\
_v.nickname sold _sold_amount pcs of steroids and got _money_dd​$. He got a batch from your inventory.
<<money `_money_dd`>>\
<<set $total_gained += _money_dd>>\
<<drop $p_inv "Steroids" _sold_amount>>\
<<else>>\
<span class="not_available"> You don't have any steroids in stock for your steroid dealer.</span>
<</if>>\
<</if>>\
<</for>>\
<</widget>>\
<<widget "coin_washers_work">>\
<<set _washed_amount = 0>>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<set _v = $accomplices_list[_i]>>\
<<if $dirty_money > 0>>\
<<if $accomplices_list[_i].pos == "Coin Washer">>\
<<set _washed_amount = (70 + random(0, 60)) * _v.combat>>\
<<if $dirty_money >= _washed_amount>>\
<<dirty_money `-_washed_amount`>>\
<<money `_washed_amount`>>\
<<set $total_gained += _washed_amount>>\
<<set $total_washed += _washed_amount>>\
_v.nickname cleaned _washed_amount​$ of dirty cash thanks to beggars.
<<elseif $dirty_money < _washed_amount>>\
<<set _washed_amount = $dirty_money>>\
<<dirty_money `-_washed_amount`>>\
<<money `_washed_amount`>>\
<<set $total_gained += _washed_amount>>\
<<set $total_washed += _washed_amount>>\
_v.nickname cleaned _washed_amount​$ of dirty cash thanks to beggars.
<</if>>\
<</if>>\
<<else>>\
<span class="not_available"> You don't have any dirty money left for coin washing </span>
<<break>>\
<</if>>\
<</for>>\
<</widget>>\<br>\
<<for _i = 0; _i < $npc_fem_list.length; _i = _i + 1>>\
<<set _v = $npc_fem_list[_i]>>\
<<capture _v, _i>>\
<<if _v.friendship >= 50>>\
<<button "_v.name _v.surname (friend)">>
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.surname);
Dialog.wiki(Story.get("NPC Fem Window").processText());
Dialog.open();
<</script>>
<</button>>\
\
<<else>>\
<<button "_v.name _v.surname">>
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.surname);
Dialog.wiki(Story.get("NPC Fem Window").processText());
Dialog.open();
<</script>>
<</button>>\
<</if>>\
<</capture>>\
<</for>>\<<silently>>\
<<set_fem_rate>>\
<</silently>>\
Name: $active_npc.name
Surname: $active_npc.surname
Phone number: $active_npc.id
$active_npc.job
You can rate her at $active_npc.rate out of 10.
<<moral_desc>>
<<if $p_traits.includes("observer")>>\
She's <<beauty_desc>> her clothes are <<clothes_desc>> and body is <<body_desc>>
<<depravity_desc>>
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly why you rate her like that...</span>
<</if>>\
<<if $active_npc.hadSex > 0>>\
<br>\
Had sex with you $active_npc.hadSex times.
<</if>>\
<<friendship_check>>\
<<job_check_fem>>\
<<friendship_decisions_fem>>\
<<talk_check_fem>>\
<<button "Close">>
<<set $active_npc = "">>\
<<script>>
Dialog.close();
<</script>>
<</button>>
<<button "Forget about this contact.">>
<<if _remove_check == true>>\
<<removeNpc_fem>>\
<<set $active_npc = "">>\
<<script>>
Dialog.close();
<</script>>
<<run Engine.show()>>
<</if>>\
<</button>>
<<checkbox "_remove_check" false true>> Are you sure?<<set _yapping = $fem_yapping.random()>>\
<span class="fem_text">- _yapping</span>
You and $active_npc.name spent some time together, enjoying each other's company.
<<if $charm >= $active_npc.rate && $active_npc.friendship >= 30>>\
Your charm works wonders. She’s clearly eyeing you with desire, looks like you could easily talk her into some lesbian sex.
<<charm_link>><<link "Invite her." "Lesbian Sex">>
<<set $active_media = $lesbian_idle.random()>>\
<<set $reaction = $lesbian_sex_start.random()>>\
<<set $active_npc.pleasure = 10>>\
<</link>><</charm_link>>\
<br>\
<</if>>\
<<link "Say goodbye." "Contacts">>
<<set $active_npc = "">>\
<</link>>\<<silently>>\
<<if $sex_mistakes == 2>>\
<<goto "Fail Lesb Sex">>\
<</if>>\
<<if $active_npc.pleasure >= 100>>\
<<goto "Lesb Sex Finish">>\
<</if>>\
<<if $active_npc.sex_stam < 1>>
<<goto "Fail Lesb Sex Stam">>
<</if>>
<</silently>>\
<<set_bedroom_bg_sex>>\
<center>\
<<if $active_media.endsWith(".webp")>>\
<span class="pic"><img @src ="$active_media"></span>
<<elseif $active_media.endsWith(".webm")>>\
<video @src="$active_media" autoplay loop muted controls width="600" height="350"></video>
<</if>>\
$reaction
\
<<lesb_sex_type>>\
<<lesb_pleasure_meter>>\
<<lesb_sex_stam_meter>>\
<<if $active_npc.pleasure < 20>>\
<<foreplay_lesb>>\
<<else>>\
<<lesbian_sex>>\
<</if>>\
<<link "Stop this." "Home">>
<<set $active_npc.friendship -= 30>>\
<<set $active_npc.pleasure = 0>>\
<<set $active_npc.hadSex += 1>>\
<<set $active_npc = "">>\
<<set $active_media = "">>\
<<set $reaction = "">>\
<<set $sex_mistakes = 0>>
<<addhours 1>>\
<</link>>\
</center><<widget "foreplay_lesb">>\
<<set _random_number = random(3, 7)>>\
\
<<link "Foreplay." "Lesbian Sex">>\
<<set $active_media = $lesbian_foreplay.random()>>\
<<set $reaction = "You've been setting the mood by kissing and touching each other everywhere you could reach...">>\
<<set $active_npc.pleasure += _random_number>>\
<</link>>
\
<<if $pc_active == true>>\
<<link "Slap her ass." "Lesbian Sex">>\
<<if $active_npc.pleasure < 14 && $active_npc.depravity < 10>>\
<<set $active_media = $lesbian_idle.random()>>\
<<set $reaction = 'She squeaks and asks you not to do that again.'>>\
<<set $active_npc.pleasure -= 5>>\
<<set $sex_mistakes += 1>>\
<<elseif $active_npc.pleasure >= 14 && $active_npc.depravity < 10>>\
<<set $active_media = $lesbian_ass_slapping.random()>>\
<<set $reaction = "You've slapped her ass and she liked that. Good for her.">>\
<<set $active_npc.pleasure += _random_number>>\
<<set $active_npc.depravity += 1>>\
<<elseif $active_npc.depravity >= 10>>\
<<set $active_media = $lesbian_ass_slapping.random()>>\
<<set $reaction = "You've slapped her ass and she playfully waved at your with her butt.">>\
<<set $active_npc.pleasure += _random_number>>\
<</if>>\
<</link>>
\
<<link "Play with her boobs." "Lesbian Sex">>\
<<if $active_npc.pleasure < 14 && $active_npc.depravity < 10>>\
<<set $active_media = $lesbian_idle.random()>>\
<<set $reaction = 'She squeaks and asks you not to do that again.'>>\
<<set $active_npc.pleasure -= 5>>\
<<set $sex_mistakes += 1>>\
<<elseif $active_npc.pleasure >= 14 && $active_npc.depravity < 10>>\
<<set $active_media = $lesbian_tits_playing.random()>>\
<<set $reaction = "You've kissed and gropped her tits alittle and she liked that. Good for her.">>\
<<set $active_npc.pleasure += _random_number>>\
<<set $active_npc.depravity += 1>>\
<<elseif $active_npc.depravity >= 10>>\
<<set $active_media = $lesbian_tits_playing.random()>>\
<<set $reaction = "You've played with her tits and she just laughed at it.">>\
<<set $active_npc.pleasure += _random_number>>\
<</if>>\
<</link>>
<<elseif $pc_active == false>>\
<<link "Get your ass slapped." "Lesbian Sex">>\
<<set $active_media = $lesbian_ass_slapping.random()>>\
<<set $reaction = "You tilted your ass meaningfully, but $active_npc.name didn't need any innuendos - she started slapping your butt right away.">>\
<<set $active_npc.pleasure += $charm>>\
<<set $active_npc.depravity += 1>>\
<</link>>
<<link "Draw some attention to your boobs." "Lesbian Sex">>
<<set $active_media = $lesbian_tits_playing.random()>>\
<<set $reaction = "$active_npc.name couldn't resist your tempting mammaries so she used her touch and tongue on it.">>\
<<set $active_npc.pleasure += $charm>>\
<<set $active_npc.depravity += 1>>\
<</link>>
<</if>>\
<</widget>>\
<<widget "lesbian_sex">>\
<<set _random_number = random(5, 15)>>\
<<if $pc_active == true>>\
<<link "Go down on her." "Lesbian Sex">>
<<set $active_media = $lesbian_oral.random()>>\
<<set $reaction = "You've used your tongue for $active_npc.name's pleasure.">>\
<<set $active_npc.pleasure += _random_number>>\
<<set $active_npc.sex_stam -= 1>>\
<</link>>
\
<<link "Try some toys on her." "Lesbian Sex">>
<<set $active_media = $lesbian_toys_vag.random()>>\
<<set $reaction = "You've got a nice collection of toys that you're not afraid to use. And she's definitely gonna enjoy it. After getting a random one you've liked more, you begin fucking $active_npc.name with it.">>\
<<set $active_npc.pleasure += _random_number>>\
<<set $active_npc.sex_stam -= 1>>\
<</link>>
\
<<link "Try some toys on her ass." "Lesbian Sex">>
<<if $active_npc.pleasure < 70 && $active_npc.depravity < 20>>\
<<set $active_media = $lesbian_idle.random()>>\
<<set $reaction = "She squeaks and asks you not to do that again.">>\
<<set $active_npc.pleasure -= 8>>\
<<set $sex_mistakes += 1>>\
<<elseif $active_npc.pleasure >= 70 && $active_npc.depravity < 20>>\
<<set $active_media = $lesbian_toys_anal.random()>>\
<<set $reaction = "You've tried some toys on her ass, she’s clearly not happy about it, but atleast there was an attempt to endure it from her side.">>\
<<set $active_npc.pleasure -= 10>>\
<<set $active_npc.depravity += 1>>\
<<set $active_npc.sex_stam -= 2>>\
<<else>>\
<<set $active_media = $lesbian_toys_anal.random()>>\
<<set $reaction = "You've got a nice collection of toys that you're not afraid to use. And she's definitely gonna enjoy it. After getting a random one you've liked more, you begin fucking $active_npc.name's ass with it.">>\
<<set $active_npc.pleasure += _random_number>>\
<<set $active_npc.sex_stam -= 1>>\
<</if>>\
<</link>>
\
<<link "Fingering." "Lesbian Sex">>
<<set $active_media = $lesbian_fingering.random()>>\
<<set $reaction = "You've fingered $active_npc.name's pussy.">>\
<<set $active_npc.pleasure += _random_number>>\
<<set $active_npc.sex_stam -= 1>>\
<</link>>
\
<<link "Strapon sex." "Lesbian Sex">>
<<set $active_media = $lesbian_strapon_vag.random()>>\
<<set $reaction = "You got some strap-ons laying around your bedroom, you've decided to strap yourself in and begin fucking $active_npc.name with it.">>\
<<set $active_npc.pleasure += _random_number>>\
<<set $active_npc.sex_stam -= 1>>\
<</link>>
\
<<link "Strapon anal sex." "Lesbian Sex">>
<<if $active_npc.pleasure < 70 && $active_npc.depravity < 20>>\
<<set $active_media = $lesbian_idle.random()>>\
<<set $reaction = 'She squeaks and asks you not to do that again.'>>\
<<set $active_npc.pleasure -= 8>>\
<<set $sex_mistakes += 1>>\
<<elseif $active_npc.pleasure >= 70 && $active_npc.depravity < 20>>\
<<set $active_media = $lesbian_strapon_anal.random()>>\
<<set $reaction = "You've fucked her ass with strapon, she’s clearly not happy about it, but atleast there was an attempt to endure it from her side.">>\
<<set $active_npc.pleasure -= 10>>\
<<set $active_npc.depravity += 1>>\
<<set $active_npc.sex_stam -= 2>>\
<<else>>\
<<set $active_media = $lesbian_strapon_anal.random()>>\
<<set $reaction = "You got some strap-ons laying around your bedroom, you've decided to strap yourself in and begin fucking $active_npc.name's bum with it.">>\
<<set $active_npc.pleasure += _random_number>>\
<<set $active_npc.sex_stam -= 1>>\
<</if>>\
<</link>>
<<else>>\
<<link "Ask her to go down on you." "Lesbian Sex">>
<<set $active_media = $lesbian_oral.random()>>\
<<set $reaction = "$active_npc.name used her tongue for yours pleasure.">>\
<<set $active_npc.pleasure += $charm>>\
<<set $active_npc.sex_stam -= 1>>\
<</link>>
<<link "Get fucked by a dildo." "Lesbian Sex">>
<<set $active_media = $lesbian_toys_vag.random()>>\
<<set $reaction = "You've got a nice collection of toys that you're not afraid to use. You left a right of choice on $active_npc.name. After getting a random one she liked more, she begin fucking you with it.">>\
<<set $active_npc.pleasure += $charm>>\
<<set $active_npc.sex_stam -= 1>>\
<</link>>
<<link "Get fucked by a dildo in the butt." "Lesbian Sex">>
<<set $active_media = $lesbian_toys_anal.random()>>\
<<set $reaction = "You've got a nice collection of toys that you're not afraid to use. You left a right of choice on $active_npc.name. After getting a random one she liked more, she begin fucking your ass with it.">>\
<<set $active_npc.pleasure += $charm>>\
<<set $active_npc.sex_stam -= 1>>\
<<set $active_npc.depravity += 1>>\
<</link>>
<<link "Get fingered." "Lesbian Sex">>
<<set $active_media = $lesbian_fingering.random()>>\
<<set $reaction = "You've been fingered by $active_npc.name.">>\
<<set $active_npc.pleasure += $charm>>\
<<set $active_npc.sex_stam -= 1>>\
<</link>>
<<link "Get fucked by strapon." "Lesbian Sex">>
<<set $active_media = $lesbian_strapon_vag.random()>>\
<<set $reaction = "You got some strap-ons laying around your bedroom, and $active_npc.name decided to use these funny toys on you. No complaining whatsoever.">>\
<<set $active_npc.pleasure += $charm>>\
<<set $active_npc.sex_stam -= 1>>\
<</link>>
<<link "Get anally fucked by strapon." "Lesbian Sex">>
<<set $active_media = $lesbian_strapon_anal.random()>>\
<<set $reaction = "You got some strap-ons laying around your bedroom, and $active_npc.name decided to use these funny toys on your ass. No complaining whatsoever.">>\
<<set $active_npc.pleasure += $charm>>\
<<set $active_npc.sex_stam -= 1>>\
<<set $active_npc.depravity += 1>>\
<</link>>
<</if>>\
<</widget>>\
<<widget "lesb_pleasure_meter">>\
<<if $active_npc.pleasure >= 90>>\
She's very close to orgasm.
<<elseif $active_npc.pleasure >= 70 && $active_npc.depravity < 20>>\
Main stage - she's very excited for what's to come. You can push through any of your dirty ideas.
<<elseif $active_npc.pleasure >= 20 && $active_npc.depravity < 20>>\
Main stage. She won't accept anything dirty tho.
<<elseif $active_npc.pleasure >= 14 && $active_npc.depravity < 10>>\
Foreplay, and you've excited her quite enough. You can try some moves.
<<elseif $active_npc.pleasure >= 0 && $active_npc.depravity < 10>>\
Foreplay. She's not expecting anything dirty from you.
<<elseif $active_npc.pleasure >= 20>>\
Main stage.
<<elseif $active_npc.pleasure >= 0>>\
Foreplay.
<</if>>\
<</widget>>\
<<widget "lesb_sex_stam_meter">>\
<<if $active_npc.sex_stam < 7>>\
$active_npc.name looks almost exhausted...
<</if>>\
<</widget>>\
<<widget "lesb_switch">>\
<<if $pc_active == true>>\
<<if $active_npc.depravity >= 14>>\
<<set $pc_active = false>>\
<<set $active_media = $lesbian_idle.random()>>\
<<run Engine.show()>>\
<<else>>\
<<replace ".pc_sex_status">>$active_npc.name doesn't want to be a top.<</replace>>\
<</if>>\
<<else>>\
<<set $pc_active = true>>\
<<set $active_media = $lesbian_idle.random()>>\
<<run Engine.show()>>\
<</if>>\
<</widget>>\
<<widget "lesb_sex_type">>\
<<if $pc_active == true>>\
<span class="pc_sex_status">You're a top right now. <<link "Switch.">><<lesb_switch>><</link>></span>
<<else>>\
<span class="pc_sex_status">You're a bottom right now. <<link "Switch.">><<lesb_switch>><</link>></span>
<</if>>\
<</widget>>\<<silently>>\
<<set $reaction = "Well... That was a disaster. $active_npc.name REALLY didn't like your behavior. She left you alone.">>
<</silently>>\
<<set_bedroom_bg_sex>>\
<center> $reaction
<<link "Oof." "Home">>
<<set $active_npc.friendship -= 40>>\
<<sex_reset>>\
<</link>>
</center>\<<silently>>\
<<set $active_media = $lesbian_orgasm.random()>>
<<if $pc_active == true>>
<<set $reaction = $lesbian_orgasm_desc_top.random()>>
<<elseif $pc_active == false>>
<<set $reaction = $lesbian_orgasm_desc_bottom.random()>>
<</if>>
<</silently>>\
<<set_bedroom_bg_sex>>\
<center> <video @src="$active_media" autoplay loop muted controls width="600" height="350"></video>
$reaction
<<link "Time to get back to hustling." "Home">>
<<set $active_npc.friendship += 3 * $charm>>\
<<sex_reset>>\
<</link>>
</center>\<<silently>>\
<<set $reaction = "She's really exhausted and asks you to stop. Well, that's annoying...">>
<</silently>>\
<<set_bedroom_bg_sex>>\
<center>$reaction
<<link "Sigh." "Home">>
<<set $active_npc.friendship -= 10>>\
<<sex_reset>>\
<</link>>
</center>\<br>\
<<for _i = 0; _i < $sluts_list.length; _i = _i + 1>>\
<<set _v = $sluts_list[_i]>>\
<<capture _v, _i>>\
<<button "_v.name _v.nickname">>
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Sluts Window").processText());
Dialog.open();
<</script>>
<</button>>\
<</capture>>\
<</for>>\<<silently>>\
<<set_fem_rate>>
<</silently>>\
Name: $active_npc.name
Nickname: $active_npc.nickname
$active_npc.job, location: $active_npc.work_location.
You can rate her at $active_npc.rate out of 10.
<<if $p_traits.includes("observer")>>\
She's <<beauty_desc>> her clothes are <<clothes_desc>> and body is <<body_desc>>
<<depravity_desc>>
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly why you rate her like that...</span>
<</if>>\
<<slut_loc>>\
<<clothes_upgrade>>\
<<body_upgrade>>\
<<button "Close">>
<<set $active_npc = "">>\
<<script>>
Dialog.close();
<</script>>
<</button>>
<<button "Get rid of her.">>
<<if _remove_check == true>>\
<<removeSlut>>\
<<set $active_npc = "">>\
<<script>>
Dialog.close();
<</script>>
<<run Engine.show()>>
<</if>>\
<</button>>
<<checkbox "_remove_check" false true>> Are you sure?<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/gangsleaders.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<createnpc_slut_dt>>\
<<set _payment_amount = random(700, 1200) * _rate>>\
It took them a whole hour to find and bring to you an appropriate girl.
<span class="fem_text">- "Hi, you may call me a _nickname. I’ve volunteered to work for you, but I’m asking for _payment_amount​$ upfront to start."</span>
You can rate her at _rate out of 10.
<<if $p_traits.includes("observer")>>\
She's <<beauty_desc_temp>> her clothes are <<clothes_desc_temp>> and body is <<body_desc_temp>>
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly why you rate her like that...</span>
<</if>>\
<<if $money >= _payment_amount>>\
<span class="in_link"><<link "Hire." "Gangs Leaders DT">>\
<<money `-_payment_amount`>>\
<<addslut_temp>>\
<</link>></span>\
<<else>>\
<span class="not_available"> You don't have such money. </span>\
<</if>>
<<out_link>><<link "Whatever." "Gangs Leaders DT">>\
<</link>><</out_link>>\<<message "The Code" btn>>\
The Сode is a collection of unwritten and unspoken rules that everyone must follow.
You may change the code only once a week.
The effects will be applied only on the following day.
<<if $code_cd == 0>>\
Gang type:
<<radiobutton "$band_type" "Street Gang" autocheck>> Street Gang - your default local criminal group type. -2 morale/d.
<<radiobutton "$band_type" "Posse of Thieves" autocheck>> Posse of Thieves - oldschool, performance boost for your thieves. -2 morale/d.
\
<<if $reputation >= 15000>>\
<<radiobutton "$band_type" "Crew" autocheck>> Crew - that's sounds much better than street gang, right? -1 morale/d.
<<else>>\
<span class="not_available"> Crew - that's sounds much better than street gang, right? -1 morale/d. Not enough reputation.</span>
<</if>>\
\
<<if $suburbs_state == true || $downtown_state == true || $harbor_state == true || $outskirts_state == true>>\
<<radiobutton "$band_type" "Syndicate" autocheck>> Syndicate - make your lieutenants pay you. +2k$/day for each lieutenant, -2 morale/d.
<<else>>\
<span class="not_available"> Syndicate - make your lieutenants pay you. +2k$/day for each lieutenant, -2 morale/d. You need to have atleast one lieutenant.</span>
<</if>>\
\
<<if $p_lab == true>>\
<<radiobutton "$band_type" "Drugs Network" autocheck>> Drugs Network - focus on production of best drugs. 100% performance boost for your lab. -2 morale/d.
<<else>>\
<span class="not_available"> Drugs Network - focus on production of best drugs. 100% total performance boost for your lab. -2 morale/d. </span>
<</if>>\
\
<<radiobutton "$band_type" "Pimp Faction" autocheck>> Pimp Faction - make people's urges fill your wallet, huge boost to earnings for your sluts. -2 morale/d.
Crew payments:
<<radiobutton "$band_payment" 100 autocheck>> 100$/day - +1 morale.
<<radiobutton "$band_payment" 60 autocheck>> 60$/day - no morale change.
<<radiobutton "$band_payment" 30 autocheck>> 30$/day - -1 morale.
Boss:
<<radiobutton "$boss_type" "Bandit Boss" autocheck>> Bandit Boss - no bonuses. -15 rep/d.
<<radiobutton "$boss_type" "The Thief Lord" autocheck>> The Thief Lord - be the leader amongst thieves. +1 cunning, -30 rep/d.
<<radiobutton "$boss_type" "Kingpin" autocheck>> Kingpin - be the monarch of the grand heists and schemes. +1 combat, -30 rep/d.
\
<<if $reputation >= 15000>>\
<<radiobutton "$boss_type" "Slut Boss" autocheck>> Slut Boss - It would take a lot of authority to convince people that it's a privilege to fuck you and that you're definitely not a whore. +1 charm, no rep lose in various circumstances, -30 rep/d.
<<else>>\
<span class="not_available"> Slut Boss - It would take a lot of authority to convince people that it's a privilege to fuck you and that you're definitely not a whore. +1 charm, no rep lose for fucking your accomplices, -30 rep/d. Not enough reputation for this. </span>
<</if>>\
\
<<if $reputation >= 20000>>\
<<radiobutton "$boss_type" "Mastermind" autocheck>> Mastermind - this is your town and your rules. +2 cunning. -40 rep/d.
<<else>>\
<span class="not_available"> Mastermind - this is your town and your rules. +2 cunning. -40 rep/d. Not enough reputation. </span>
<</if>>\
\
<<if $reputation >= 22000>>\
<<radiobutton "$boss_type" "The Boss" autocheck>> The Boss - the one who sets the rules. +1 cunning, +1 combat. -40 rep/d.
<<else>>\
<span class="not_available"> The Boss - the one who sets the rules. +1 cunning, +1 combat. -40 rep/d. Not enough reputation. </span>
<</if>>\
\
<<if $reputation >= 30000>>\
<<radiobutton "$boss_type" "Crime Legend" autocheck>> Crime Legend - nuff said, +1 cunning, +1 combat, +1 charm, +4 energy. No rep lose in any case.
<<else>>\
<span class="not_available"> Crime Legend - nuff said, +1 cun, +1 combat, +1 charm, +4 energy. No rep lose in any case. But you need to become a legend first. </span>
<</if>>\
<<link "Apply changes." "Whiteboard">>\
<<band_check>>\
<<set $code_cd = 7>>\
<</link>>\
<<elseif $code_cd > 0>>\
Days till new changes in code: $code_cd.
''Gang type: $band_type.''
Street Gang - your default local criminal group type. -2 morale/d.
Posse of Thieves - oldschool, performance boost for your thieves. -2 morale/d.
Crew - that's sounds much better than street gang, right? -1 morale/d.
Syndicate - make your lieutenants pay you. +2k$/day for each lieutenant, -2 morale/d.
Drugs Network - focus on production of best drugs. 150% performance boost for your lab. -2 morale/d.
Pimp Faction - make people's urges fill your wallet, huge boost for prostitutes productivity. -2 morale/d.
''Crew payments: $band_payment​$.''
100$/day - +1 morale.
60$/day - no morale change.
30$/day - -1 morale.
''Boss: $boss_type.''
Bandit Boss - no bonuses. -15 rep/d.
The Thief Lord - be the leader amongst thieves. +1 cunning, -30 rep/d.
Kingpin - be the monarch of the grand heists and schemes. +1 combat, -30 rep/d.
Slut Boss - It would take a lot of authority to convince people that it's a privilege to fuck you and that you're definitely not a whore. +1 charm, no rep lose for fucking your accomplices, -30 rep/d.
Mastermind - this is your town and your rules. +2 cunning. -40 rep/d.
The Boss - the one who sets the rules. +1 cunning, +1 combat. -40 rep/d.
Crime Legend - nuff said, +1 cunning, +1 combat, +1 charm. No rep lose in any case.
<</if>>\
<</message>>\<<silently>>\
<<if $ring_fighters_setup == false>>
<<set $ring_fighter_1_combat = random(3, 8)>>
<<set $ring_fighter_1_hp = random(15, 30)>>
<<set $ring_fighter_1_power = $ring_fighter_1_combat * $ring_fighter_1_hp>>
<<set $ring_fighter_2_combat = random(3, 8)>>
<<set $ring_fighter_2_hp = random(15, 30)>>
<<set $ring_fighter_2_power = $ring_fighter_2_combat * $ring_fighter_2_hp>>
<</if>>
<</silently>>\
<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/ring.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
The local bookie shows you photographs of the two fighters about to go up against each other. Your conclusions...
<<if $ring_fighter_1_power > $ring_fighter_2_power + 50>>\
<<set $ring_value_1 = 1.25>>\
<<set $ring_value_2 = 1.5>>\
There are more bets on the first fighter. You'll only get a quarter of the profit by betting on him.
<<elseif $ring_fighter_2_power > $ring_fighter_1_power + 50>>\
<<set $ring_value_1 = 1.5>>\
<<set $ring_value_2 = 1.25>>\
There are more bets on the second fighter. You'll only get a quarter of the profit by betting on him.
<<else>>\
<<set $ring_value_1 = 1.5>>\
<<set $ring_value_2 = 1.5>>\
Odds are evenly split between the fighters. You’ll earn a 1.5x profit on the bets.
<</if>>\
<<if $p_traits.includes("observer_2")>>\
First participant <<undergroung_ring_observe_1>>
Second participant <<undergroung_ring_observe_2>>
<<if $ring_fighter_1_power > $ring_fighter_2_power>>\
First fighter is stronger than second.
<<elseif $ring_fighter_1_power == $ring_fighter_2_power>>\
They are really even in strength. That's rare.
<<else>>\
Second fighter is stronger than first.
<</if>>\
<<else>>\
Eh, you're not that observant to determine anything from a photo. Those two fighters look the same to you.
<</if>>\
<<if $money >= 100>>\
<<link "Place a 100$ bet on the first fighter." "Ring Fighters">>\
<<money `-100`>>\
<<set $bet_1 = 100>>\
<</link>>
<</if>>\
\
<<if $money >= 300>>\
<<link "Place a 300$ bet on the first fighter." "Ring Fighters">>\
<<money `-300`>>\
<<set $bet_1 = 300>>\
<</link>>
<</if>>\
\
<<if $money >= 500>>\
<<link "Place a 500$ bet on the first fighter." "Ring Fighters">>\
<<money `-500`>>\
<<set $bet_1 = 500>>\
<</link>>
<</if>>\
\
<<if $money >= 1000>>\
<<link "Place a 1000$ bet on the first fighter." "Ring Fighters">>\
<<money `-1000`>>\
<<set $bet_1 = 1000>>\
<</link>>
<</if>>\
<<if $money >= 100>>\
<<link "Place a 100$ bet on the second fighter." "Ring Fighters">>\
<<money `-100`>>\
<<set $bet_2 = 100>>\
<</link>>
<</if>>\
\
<<if $money >= 300>>\
<<link "Place a 300$ bet on the second fighter." "Ring Fighters">>\
<<money `-300`>>\
<<set $bet_2 = 300>>\
<</link>>
<</if>>\
\
<<if $money >= 500>>\
<<link "Place a 500$ bet on the second fighter." "Ring Fighters">>\
<<money `-500`>>\
<<set $bet_2 = 500>>\
<</link>>
<</if>>\
\
<<if $money >= 1000>>\
<<link "Place a 1000$ bet on the second fighter." "Ring Fighters">>\
<<money `-1000`>>\
<<set $bet_2 = 1000>>\
<</link>>
<</if>>\
<<link "Reconsider your actions." "Underground Ring">>
<</link>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/ring.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<addhours 1>>\
<<set $ring_fighters_setup = false>>\
<center>\
<<for $ring_fighter_1_hp > 0 && $ring_fighter_2_hp > 0>>\
<<set_ring_fighters>>\
_ring_desc The first fighter took _ring_2_damage points of damage and second took _ring_1_damage points of damage.
<<set $ring_fighter_1_hp -= _ring_2_damage>>\
<<set $ring_fighter_2_hp -= _ring_1_damage>>\
<</for>>\
<<if $ring_fighter_1_hp <= 0>>\
''The second fighter won!''
<<if $bet_2 > 0>>\
<<set _bet_value = $bet_2 * $ring_value_2>>\
<<link "Take your money" "Underground Ring">>\
<<money `_bet_value`>>\
<<reset_underground_bets>>\
<</link>> - you won a _bet_value​$.
<<else>>\
<<link "Sigh." "Underground Ring">>\
<<reset_underground_bets>>\
<</link>>
<</if>>\
<<elseif $ring_fighter_2_hp <= 0>>\
''The first fighter won!''
<<if $bet_1 > 0>>\
<<set _bet_value = $bet_1 * $ring_value_1>>\
<<link "Take your money" "Underground Ring">>\
<<money `_bet_value`>>\
<<reset_underground_bets>>\
<</link>> - you won a _bet_value​$.
<<else>>\
<<link "Sigh." "Underground Ring">>\
<<reset_underground_bets>>\
<</link>>
<</if>>\
<</if>>\
</center>\<<message "Sluts List" btn>>\
<<for _i = 0; _i < $sluts_list.length; _i = _i + 1>>\
<<set _v = $sluts_list[_i]>>\
<<capture _v, _i>>\
<<set_fem_rate_temp>>\
<<link "_v.name _v.nickname">>
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Sluts Window").processText());
Dialog.open();
<</script>>
<</link>>, work location: _v.work_location, rate: _v.rate.
<</capture>>\
<</for>>\
<</message>>\<<message "Heisting" btn>>\
<<set _progress_bar = $heist_progress / $heist_progress_needed>>\
<<set _potential_progress = ($cun + $heist_progress_mod + $scout_intel)>>
Your daily progress in heist preparation depends on your cunning and various bonuses from your $band_type.
Potential heist preparation progress: _potential_progress pts.
All operations have to be launched between 08:00 and 23:00.
<<if $hackers_met > 0>>\
<br>\
You can always boost your intel on a chosen target by visiting the hackers.
<</if>>\
<<include "HeistCrew">>\
<<if $heist_type>>\
Current heist: $heist_type.
<<link "Abandon this idea.">>
<<if _abandon_check == true>>\
<<heist_reset>>\
<<goto "Basement">>\
<</if>>\
<</link>> <<checkbox "_abandon_check" false true>> Are you sure?
<<showmeter "heist_meter" _progress_bar>>\
<<if $heist_progress >= $heist_progress_needed && $p_inv.compare($heist_equipment_items) && $p_craft.compare($heist_equipment_craft_items) && $garage_inv.compare($heist_equipment_cars) && $p_range.compare($heist_equipment_range) && $heist_crew.compare($heist_crew_needed) && $gameDate.getHours() >= 8 && $gameDate.getHours() <= 23>>\
<<link "Begin the heist">>
<<heist_start>>\
<</link>> - it'll finish the day. \
<br>\
<</if>>\
<<heist_additional_info>>\
<</if>>\
\
<<message "Cash on the wheels" btn>>\
''Crime Name:'' Armed Robbery.
~~ Legal Code:
- Article 215: Armed robbery is defined as the unlawful taking of property from a person or entity by force or intimidation, while armed with a dangerous weapon or the semblance of a weapon.~~
''Sentence:'' 15 to 25 years in prison.
''Info:'' A quick run-and-grab ambush on the road. We'll observe the full route of the cash-in-transit van and prepare an ambush at the perfect spot. It's crucial to account for timing, traffic density, and the mindset of the guards. Cash collectors can and will open fire if you let them, but there’s a slight chance they’ll value their lives more than their jobs.
''Intel requirement:'' 100 pts.
''Preparations cost:'' 10000$.
''Potential score:'' 50000-150000$ in dirty.
''Crew'': Driver and main gunner.
''Risks:'' Medium risks. The boss must be prepared for the intimidation of cash collectors or a potential shootout.
''Equipment:'' 1 I16 and 1 Block 19 (we're not gonna ditch it). 1 van (will be ditched).
''Special conditions:'' Intel about cash collector's route from any friendly bankers.
<<if !$heist_type && $money >= 10000 && $banker_intel == true>>\
<<link "Begin preparations." "Basement">>\
<<set $heist_type = "Armored Vehicle">>\
<<set $heist_progress_needed = 100>>\
<<set $heist_difficulty = 3>>\
<<set $banker_intel = false>>\
<<money `-10000`>>\
<<pickup $heist_equipment_range "I16" 1 "Block 19" 1>>\
<<pickup $heist_equipment_cars "Van Car" 1>>\
<<pickup $heist_crew_needed "Driver" 1 "Main Gunner" 1>>\
<</link>>\
<<elseif $heist_type>>\
<span class="not_available"> You're already working on something else. </span>
<<elseif $money < 10000>>\
<span class="not_available"> Not enough money. </span>
<<elseif $banker_intel == false>>\
<span class="not_available"> You don't have any information about route of cash collectors.</span>
<</if>>\
<</message>>\
<<message "Gather materials" btn>>\
''Crime Name:'' Grand Larceny.
~~ Legal Code:
- Article 189: Grand Larceny is defined as the unlawful taking, carrying away, or otherwise appropriating property valued at 10000$ or more from a commercial warehouse, storage facility, or distribution center with the intent to permanently deprive the rightful owner of said property.~~
''Sentence:'' 10 to 20 years in prison.
''Info:'' You’re about to rob a warehouse. And not just any random warehouse in the harbor, but Cartel property - because you're obviously not after ordinary goods. This kind of operation requires serious preparation; we’re not leaving anything valuable behind. Since we're targeting Cartel property, the "usual" legal sentence doesn't reflect the real consequences of failure.
''Intel requirement:'' 150 pts.
''Preparations cost:'' 15000$.
''Potential score:'' Big amount of various materials.
''Crew'': Driver and thief.
''Risks:'' Medium-high risks. Expect significant heavy lifting from the thief, while the boss is there primarily for support with her <span class = "cun">cunning</span> wits.
''Equipment:'' 1 van (will be ditched); 10 lockpicks (will be used).
''Special conditions:'' You might want to scout the Cartel's warehouses yourself before launching the operation. Who knows, you might find a way to distract the guards.
<<if !$heist_type && $money >= 15000>>\
<<link "Begin preparations." "Basement">>\
<<set $heist_type = "Cartel Warehouse">>\
<<set $heist_progress_needed = 150>>\
<<set $heist_difficulty = 4>>\
<<money `-15000`>>\
<<pickup $heist_equipment_items "Lockpick" 10>>\
<<pickup $heist_equipment_cars "Van Car" 1>>\
<<pickup $heist_crew_needed "Driver" 1 "Thief" 1>>\
<</link>>\
<<elseif $heist_type>>\
<span class="not_available"> You're already working on something else. </span>
<<elseif $money < 15000>>\
<span class="not_available"> Not enough money. </span>
<</if>>\
<</message>>
<<message "Funny papers" btn>>\
''Crime Name:'' Tax Evasion.
~~ Legal Code:
- Article 312: Tax Evasion is defined as the willful attempt to evade or defeat the assessment, reporting, or payment of legally owed taxes through fraudulent means, misrepresentation, or concealment of financial information.~~
''Sentence:'' 25 to life.
''Info:'' This isn't a smash-and-grab job - it’s paperwork, deception, and a whole lot of creative accounting. Shell companies, fake invoices, offshore transfers - everyone in the gang has a role to play. Gather your whole $band_type and think how to get some money from nothing. The key is making everything look legitimate just long enough to cash out before the auditors catch on.
''Intel requirement:'' 200 pts.
''Preparations cost:'' 20000$.
''Potential score:'' Dirty cash. The amount depends on the size of your gang (girls count too). Normally, you can get between 1k to 5k presidents per head.
''Crew'': Driver and main gunner.
''Risks:'' You could lose everything you invested - and worse, the IRS might start sniffing around if this operation fails. Yikes.
''Equipment:'' 1 quickwit brain and 10 paper stacks.
''Special conditions:'' You may want to have a taxman friend for this - someone to take the fall if things go south.
<<if !$heist_type && $money >= 20000>>\
<<link "Begin preparations." "Basement">>\
<<set $heist_type = "Tax Evasion">>\
<<set $heist_progress_needed = 200>>\
<<set $heist_difficulty = 5>>\
<<money `-20000`>>\
<<pickup $heist_equipment_craft_items "Paper" 10>>\
<<pickup $heist_crew_needed "Driver" 1 "Main Gunner" 1>>\
<</link>>\
<<elseif $heist_type>>\
<span class="not_available"> You're already working on something else. </span>
<<elseif $money < 20000>>\
<span class="not_available"> Not enough money. </span>
<</if>>\
<</message>>\
<</message>>\<<newmeter "heist_meter">>
<<colors "green" "green" "gray">>
<<label "$heist_progress out of $heist_progress_needed">>
<<sizing "250px" "50px">>
<</newmeter>>
<<newmeter "war_progress">>
<<colors "green" "green" "gray">>
<<label "$band_war_progress out of $band_war_needed_progress">>
<<sizing "250px" "50px">>
<</newmeter>>
<<newmeter "nc_popularity">>
<<colors "green" "green" "gray">>
<<label "$nc_pop out of 100">>
<<sizing "200px" "30px">>
<</newmeter>>
<<newmeter "nc_risks">>
<<colors "green" "green" "gray">>
<<label "$nc_risks out of 100%">>
<<sizing "200px" "30px">>
<</newmeter>>
<<newmeter "nc_drinks_cap">>
<<colors "green" "green" "gray">>
<<label "$nc_capacity_drinks out of 10000l">>
<<sizing "200px" "30px">>
<</newmeter>>
<<newmeter "nc_drugs_cap">>
<<colors "green" "green" "gray">>
<<label "$nc_capacity_drugs out of 10000pcs">>
<<sizing "200px" "30px">>
<</newmeter>>
<<newmeter "brothel_popularity">>
<<colors "green" "green" "gray">>
<<label "$brothel_pop out of 100">>
<<sizing "200px" "30px">>
<</newmeter>>
<<newmeter "brothel_aphrodisiac_cap">>
<<colors "green" "green" "gray">>
<<label "$brothel_capacity_aphrodisiac out of 5000pcs">>
<<sizing "200px" "30px">>
<</newmeter>>
<<newmeter "moonshine_mats_cap">>
<<colors "green" "green" "gray">>
<<label "$moonshine_mats out of 5000l">>
<<sizing "200px" "30px">>
<</newmeter>>
<<newmeter "moonshine_progress">>
<<colors "green" "green" "gray">>
<<label "$moonshine_progress / 100%">>
<<sizing "200px" "30px">>
<</newmeter>>
<<newmeter "health_meter">>
<<colors "#D2042D" "gray" "gray">>
<<label "$p_hp out of $p_hp_max">>
<<sizing "200px" "20px">>
<</newmeter>>
<<newmeter "stamina_meter">>
<<colors "#F0E68C" "gray" "gray">>
<<label "$combat_stamina out of $combat_stamina_base">>
<<sizing "200px" "20px">>
<</newmeter>>
<<newmeter "enemy_health_meter">>
<<colors "#D2042D" "gray" "gray">>
<<label "$enemy_hp out of $enemy_hp_max">>
<<sizing "200px" "20px">>
<</newmeter>><<widget "hackers_intel">>\
<<switch $heist_type>>\
<<case "Armored Vehicle">>\
<<set _intel_price = 6500>>\
<<set _intel_boost = 50>>\
<<case "Cartel Warehouse">>\
<<set _intel_price = 8000>>\
<<set _intel_boost = 75>>\
<<case "Tax Evasion">>\
<<set _intel_price = 10000>>\
<<set _intel_boost = 100>>\
<</switch>>\
<</widget>>\
<<widget "heist_reset">>\
<<set $heist_type = "">>\
<<set $heist_progress = 0>>\
<<set $heist_progress_needed = 0>>\
<<set $hackers_intel = false>>\
<<set $heist_difficulty = 0>>\
<<set $heist_mistakes = 0>>\
<<dropall $heist_equipment_items>>\
<<dropall $heist_equipment_cars>>\
<<dropall $heist_equipment_craft_items>>\
<<dropall $heist_equipment_range>>\
<<dropall $heist_crew_needed>>\
<</widget>>\
<<widget "heist_start">>\
<<silently>>\
<<switch $heist_type>>
<<case "Armored Vehicle">>
<<goto "HeistAV">>
<<drop $garage_inv "Van Car" 1>>
<<case "Cartel Warehouse">>
<<goto "HeistCW">>
<<drop $p_inv "Lockpick" 10>>
<<case "Tax Evasion">>
<<goto "HeistTE Intro">>
<<drop $p_craft "Paper" 10>>
<</switch>>
<</silently>>\
<</widget>>\
<<widget "driver_exp">>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].crew == "Driver">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<set $active_npc = _v>>\
<<set $active_npc.driving_exp = Math.clamp($active_npc.driving_exp + _args[0], 0, 100)>>\
<<set $active_npc = "">>\
<</capture>>\
<</if>>\
<</for>>\
<</widget>>\
<<widget "main_gunner_exp">>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].crew == "Main Gunner">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<set $active_npc = _v>>\
<<set $active_npc.combat_exp = Math.clamp($active_npc.combat_exp + _args[0], 0, 100)>>\
<<set $active_npc = "">>\
<</capture>>\
<</if>>\
<</for>>\
<</widget>>\
<<widget "second_gunner_exp">>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].crew == "Second Gunner">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<set $active_npc = _v>>\
<<set $active_npc.combat_exp = Math.clamp($active_npc.combat_exp + _args[0], 0, 100)>>\
<<set $active_npc = "">>\
<</capture>>\
<</if>>\
<</for>>\
<</widget>>\
<<widget "safecracker_exp">>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].crew == "Safecracker">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<set $active_npc = _v>>\
<<set $active_npc.cun_exp = Math.clamp($active_npc.cun_exp + _args[0], 0, 100)>>\
<<set $active_npc = "">>\
<</capture>>\
<</if>>\
<</for>>
<</widget>>\
<<widget "heist_additional_info">>\
<<if !$heist_crew.compare($heist_crew_needed)>>\
<span class="not_available"> You're lacking a crew for this score. </span>
<</if>>\
<<if $heist_type == "Cartel Warehouse" && $harbor_gangbang == false>>\
<span class="not_available"> You haven't found a special condition for this heist. </span>
<<elseif $heist_type == "Cartel Warehouse" && $harbor_gangbang == true>>\
Cartel’s thugs know you all too well. You may try to seduce them during the heist.
<</if>>\
<<if !$p_inv.compare($heist_equipment_items)>>\
<span class="not_available">You don’t have all the required equipment on you. Check the description.</span>
<</if>>\
<<if !$p_craft.compare($heist_equipment_craft_items)>>\
<span class="not_available">You don’t have all the required equipment on you. Check the description.</span>
<</if>>\
<<if !$garage_inv.compare($heist_equipment_cars)>>\
<span class="not_available">You don’t have all the required cars in your garage. Check the description.</span>
<</if>>\
<<if !$p_range.compare($heist_equipment_range)>>\
<span class="not_available">You don’t have all the required weapons on you. Check the description.</span>
<</if>>\
<</widget>>\
<<widget "crew_skills_count">>\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].crew == "Driver">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<set $active_npc = _v>>\
<<set $crew_driver_skill = $active_npc.driving>>\
<<set $active_npc = "">>\
<</capture>>\
<</if>>\
<</for>>
\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].crew == "Main Gunner">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<set $active_npc = _v>>\
<<set $crew_main_gunner_skill = $active_npc.combat>>\
<<set $active_npc = "">>\
<</capture>>\
<</if>>\
<</for>>
\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].crew == "Second Gunner">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<set $active_npc = _v>>\
<<set $crew_second_gunner_skill = $active_npc.combat>>\
<<set $active_npc = "">>\
<</capture>>\
<</if>>\
<</for>>
\
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].crew == "Safecracker">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<set $active_npc = _v>>\
<<set $crew_safecracker_skill = $active_npc.cun>>\
<<set $active_npc = "">>\
<</capture>>\
<</if>>\
<</for>>
<</widget>>\<<message "Heist Crew" btn>>\
Driver: \
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].crew == "Driver">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<link "_v.name _v.nickname">>\
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Accomplices Window").processText());
Dialog.open();
<</script>>
<</link>>\
<</capture>>\
<</if>>\
<</for>>
Main Gunner: \
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].crew == "Main Gunner">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<link "_v.name _v.nickname">>\
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Accomplices Window").processText());
Dialog.open();
<</script>>
<</link>>\
<</capture>>\
<</if>>\
<</for>>
Second Gunner: \
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].crew == "Second Gunner">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<link "_v.name _v.nickname">>\
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Accomplices Window").processText());
Dialog.open();
<</script>>
<</link>>\
<</capture>>\
<</if>>\
<</for>>
Safecracker: \
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].crew == "Safecracker">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<link "_v.name _v.nickname">>\
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Accomplices Window").processText());
Dialog.open();
<</script>>
<</link>>\
<</capture>>\
<</if>>\
<</for>>\
<</message>>\<<silently>>\
<<addhours 2>>
<<set _driver_skillcheck = $heist_difficulty + random(-2, 2)>>
<<set _gunner_skillcheck = $heist_difficulty + random(-3, 3)>>
<<set _player_skillcheck = $heist_difficulty + random(-2, 6)>>
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/background/events/av_heist.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 20%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
The plan is ready, your crew has scouted the route. You've waited for a perfect timing and found an angle. The rifle in hands of the gunner and your pistol are locked and loaded. An armored car is about to enter the trap, and its driver's turn to make a move...
<<if $crew_driver_skill > _driver_skillcheck + 1>>\
<div class="success">The van pulls up smoothly, cutting off the armored car. The timing is flawless, giving the crew a few precious moments to make their move.</div>\
<<elseif $crew_driver_skill < _driver_skillcheck - 1>>\
<<set $heist_mistakes += 2>>\
<div class="fail">The driver misses the mark, swerving too late. The armored car brakes hard, creating distance - just enough time for the guards to react.</div>\
<<else>>\
<<set $heist_mistakes += 1>>\
<div class="even">The van skids slightly, blocking the road but at an awkward angle. The crew has less room to maneuver, but you can still pull it off - if you gonna move fast.</div>
<</if>>\
<<if $crew_main_gunner_skill > _gunner_skillcheck + 1>>\
<div class="success">The gunner takes out the armored car’s tires with pinpoint accuracy, bringing it to a complete stop. The guards inside don’t have time to react.</div>\
<<elseif $crew_main_gunner_skill < _gunner_skillcheck - 1>>\
<<set $heist_mistakes += 2>>\
<div class="fail">The gunner tries to shoot the tires but completely misses. A bullet ricochets off the armored car's plating, giving the guard time to make a defensive turn. You can see them drawing their weapons now, and the situation is getting messy.</div>\
<<else>>\
<<set $heist_mistakes += 1>>\
<div class="even">The gunner clips one of the tires, slowing the car down but not stopping it completely. The guards are on high alert, but they haven’t opened fire yet.</div>\
<</if>>\
You and the gunner get out of the van. Now, you have to choose how to approach the cash collectors...
<<if $reputation >= 23000>>\
<div class="success">Nevermind. The moment the guards see you, they freeze. Your reputation precedes you, and they know exactly who they're dealing with. Reluctantly, they lower their weapons, too smart to test someone with your kind of reputation. </div>\
<<link "Proceed." "HeistAV End">>
<</link>>\
<<else>>\
<span id="p_choice">\
<<linkappend "Use your cunning.">>
<<replace "#p_choice">>\
<<if $cun > _player_skillcheck>>\
<div class="success">You order your gunner to keep the guards occupied with suppressive fire. Moving swiftly, you circle around them unnoticed. Before they can react, you're already behind them, forcing their surrender. They drop their weapons, outsmarted by your quick thinking.</div>\
<<else>>\
<<set $heist_mistakes += 1>>\
<div class="fail">You order your gunner to keep the guards occupied with suppressive fire. You attempt to outmaneuver them, but they spot your move. After a tense exchange, you and your gunner manage to take them down, but precious minutes tick away, heightening the urgency of the situation.</div>\
<</if>>
<<link "Proceed." "HeistAV End">><</link>>\
<</replace>>
<</linkappend>>
\
<<linkappend "Use your charm.">>
<<replace "#p_choice">>\
<<if $charm > _player_skillcheck>>\
<div class="success">Even with adrenaline pumping, you radiate authority. There's something about the way you move that makes the guards hesitate. With a firm command, you order them to drop their weapons, and surprisingly, they comply. They know better than to test you.</div>\
<<else>>\
<<set $heist_mistakes += 1>>\
<div class="fail">You try to assert your dominance, confidently ordering the guards to back down. However, they see through your bravado and refuse to comply. A brief standoff ensues, forcing you into a gunfight. While you eventually overpower them, the time wasted in the confrontation makes your escape riskier than you planned.</div>\
<</if>>
<<link "Proceed." "HeistAV End">><</link>>\
<</replace>>
<</linkappend>>
\
<<linkappend "Use your combat skills.">>
<<replace "#p_choice">>\
<<if $combat > _player_skillcheck>>\
<div class="success">You charge forward, taking down the first guard with a clean shot into his arm. Another moves in, but you disarm him with a quick, decisive strike. That was easy. </div>\
<<else>>\
<div class="fail">You open fire, but the guards are quicker on the draw than you anticipated. They return fire, forcing you to take cover, your bullrush has failed. After a tense exchange of gunfire, you manage to take them out, but the delay costs you valuable time, putting your escape plan at risk.</div>\
<</if>>
<<link "Proceed." "HeistAV End">><</link>>\
<</replace>>
<</linkappend>>
</span>
<</if>>\<style>
body::before {
content: '';
background-image: url("img/background/events/av_heist.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 20%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<if $heist_mistakes == 5>>\
<<silently>>\
<<morale `-15`>>\
<<set _cash = random(100000, 150000)>>
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].crew == "Driver">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<set $active_npc = _v>>\
<<set $active_npc.jail_term = 20>>\
<<set $active_npc.jail_year = $gameDate.getFullYear()>>\
<<set $active_npc.jail_month = $gameDate.getMonth()>>\
<<set $active_npc.jail_day = $gameDate.getDate()>>\
<<set $active_npc.buyback = 40000>>\
<<set $active_npc.crime = "Armed Robbery">>\
<<accomplice_jail>>\
<<set $active_npc = "">>\
<</capture>>\
<</if>>\
<</for>>\
<</silently>>\
The heist didn't go according to plan, and despite securing the cash, you faced significant setbacks. The driver didn't make it; he was caught and sent to the custody. You and the gunner managed to escape, but the loss of your teammate weighs heavily on you. The total amount you managed to grab is ''_cash​$''.
<<elseif $heist_mistakes >= 3>>\
<<set _cash = random(75000, 125000)>>\
<<driver_exp `25`>>\
<<morale `5`>>\
<<main_gunner_exp `20`>>\
While the heist didn’t go off without a hitch, you still managed to secure the cash and make your escape. The driver got you away from the scene, but the delays cost you valuable time you could have used to gather more cash. You walk away with ''_cash​$'', knowing it could have been more with a smoother execution.
<<else>>\
<<set _cash = random(125000, 160000)>>\
<<driver_exp `50`>>\
<<morale `10`>>\
<<main_gunner_exp `40`>>\
The heist went off without a hitch. You and your team executed the plan flawlessly, securing the cash and making a clean getaway. With no mistakes to slow you down, you leave the scene with an impressive total of ''_cash​$''.
<</if>>\
<<link "Its good to be free nonetheless. Time to rest." "NewDay">>
<<dirty_money `_cash`>>\
<<heist_reset>>\
<<adddays 1>>\
<<set $gameDate.setHours(8)>>\
<<set $gameDate.setMinutes(0)>>\
<</link>>\<br>\
<<for _i = 0; _i < $jail_list.length; _i = _i + 1>>\
<<set _v = $jail_list[_i]>>\
<<capture _v, _i>>\
<<button "_v.name _v.nickname">>
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Jail Window").processText());
Dialog.open();
<</script>>
<</button>>\
<</capture>>\
<</for>>\Name: $active_npc.name
Nickname: $active_npc.nickname
Prison term: $active_npc.jail_term years.
Date of imprisonment: $active_npc.jail_day.\
$active_npc.jail_month.\
$active_npc.jail_year.
Crime: $active_npc.crime.
<<observer_combat>>\
<<observer_driving>>\
<<if $police_connections == true>>\
<<if $money >= $active_npc.buyback>>\
<<link "Get him out">>\
<<money `-$active_npc.buyback`>>\
<<out_of_jail>>\
<<script>>
Dialog.close();
<</script>>
<<run Engine.show()>>\
<</link>> - it'll cost you $active_npc.buyback​$ for a bribe.
<<else>>\
<span class="not_available"> Get him out - it'll cost you $active_npc.buyback​$ for a bribe. </span>
<</if>>\
<<else>>\
<span class="not_available"> Maybe you could get him out if you had some connections in police forces... </span>
<br>\
<</if>>\
<<button "Close">>
<<set $active_npc = "">>\
<<script>>
Dialog.close();
<</script>>
<</button>><<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<if _v.pos == "Thief">>\
<<set _v.cun_exp += random(3, 8)>>\
<</if>>\
<<if _v.pos == "Scout">>\
<<set _v.cun_exp += random(3, 8)>>\
<</if>>\
<<if _v.pos == "Drug Dealer">>\
<<set _v.cun_exp += random(3, 8)>>\
<</if>>\
<<if _v.pos == "Steroid Dealer">>\
<<set _v.cun_exp += random(3, 9)>>\
<</if>>\
<<if _v.pos == "Coin Washer">>\
<<set _v.combat_exp += random(3, 9)>>\
<</if>>\
<<if _v.driving_exp >= 100>>\
<<set _v.driving = Math.clamp(_v.driving + 1, 0, 12)>>\
<<set _v.driving_exp -= 100>>\
_v.name _v.nickname has raised his <span class="driving">driving</span> skills.
<</if>>\
<<if _v.combat_exp >= 100>>\
<<set _v.combat = Math.clamp(_v.combat + 1, 0, 12)>>\
<<set _v.combat_exp -= 100>>\
_v.name _v.nickname has raised his <span class="combat_text">combat</span> skills.
<</if>>\
<<if _v.cun_exp >= 100>>\
<<set _v.cun = Math.clamp(_v.cun + 1, 0, 12)>>\
<<set _v.cun_exp -= 100>>\
_v.name _v.nickname has become more <span class="cun">cunning</span>.
<</if>>\
<</capture>>\
<</for>>\
<<silently>>\
<<count_str>>
<<count_thieves_prod>>
<<crew_skills_count>>
<<count_scouts_cun>>
<<count_hooks_prod>>
<<set _potential_progress = ($cun + $heist_progress_mod + $scout_intel)>>\
<</silently>>\<<silently>>\
<<set $gameDate.setHours(1)>>
<<set $gameDate.setMinutes(0)>>
<<adddays 1>>
<<set _driver_skillcheck = $heist_difficulty + random(-2, 2)>>
<<set _thief_skillcheck_1 = $heist_difficulty + random(-3, 3)>>
<<set _thief_skillcheck_2 = $heist_difficulty + random(-3, 3)>>
<<set _player_skillcheck = $heist_difficulty + random(-2, 6)>>
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/background/events/cw_heist.webp");
inset: 0;
position: fixed;
filter:grayscale(90%);
background-size: cover;
}
</style>\
As night envelops the warehouses, you roll up in your van to the position. The thought crosses your mind: there's a fortune stashed here, way more than your beat-up van could ever handle. Bringing in a bigger crew could tip the scales in your favor, but the extra heat might blow everything wide open.
<<if $harbor_gangbang == true>>\
You’ve got an ace up your sleeve - your previous personal "arrangement" with the Cartel’s security could grant your thief enough time for smooth passage. But is it worth to risk literally your ass for this?
<span class = "option">\
<<charm_link>><<link "Go for it." "HeistCWGB">>
<</link>><</charm_link>>\
</span>\
<br>\
<</if>>\
<<linkreplace "Proceed according to plan.">>\
<<replace ".option">><</replace>>\
Leaving your driver parked around the corner, you and your thief step out into the quiet night. The warehouses loom ahead, separated by just a barbed wire fence. The soft clink of tools in your thief's hand signals it's time to make your move. You scan the area - guards are posted in the distance, but they're not paying close attention. For now.
<<if $crew_safecracker_skill > _thief_skillcheck_1 + 1>>\
<div class="success">The thief works quickly, moving with the precision of someone who’s done this a hundred times. His wire cutters make barely a sound as he slices through the fence in a clean line. He peels back the wire, slipping through the gap and onto the warehouse grounds without making a single noise, and then helps you to squeeze through. </div>\
<<elseif $crew_safecracker_skill < _thief_skillcheck_1 - 1>>\
<<set $heist_mistakes += 2>>\
<div class="fail">The thief fumbles with the wire cutters, taking longer than expected. The sharp clink of metal on metal echoes unnervingly in the still night air. As he finally pulls the wire apart, a piece snaps back with a loud twang, catching the attention of one of the guards. He freezes for a moment, but it seems luck is on your side today. You quickly nudge the thief, urging him to squeeze through to the other side.</div>\
<<else>>\
<<set $heist_mistakes += 1>>\
<div class="even">The thief cuts through the fence efficiently, though not without a slight misstep. As he pulls the wire aside, his jacket catches on one of the sharp edges. He quickly frees himself, but the motion rustles the fence enough to draw a brief glance from one of the guards. Thankfully, they dismiss it as the wind, continuing their patrol. The thief slips through and helps you in joining him, but the near miss leaves you uneasy.</div>\
<</if>>\
A few minutes later, you step into the warehouse through the backdoor. It’s packed with crates, shelves, and pallets - pretty standard for a place like this. Now, it’s time to claim what’s rightfully yours.
<<if $crew_safecracker_skill > _thief_skillcheck_2 + 1>>\
<div class="success">The thief glides between shelves, silently gathering electronics and chemicals with precise movements. Every box is handled carefully, and soon, you have a solid haul without making a sound.</div>\
<<elseif $crew_safecracker_skill < _thief_skillcheck_1 - 1>>\
<<set $heist_mistakes += 2>>\
<div class="fail">The thief’s haste gets the better of him. He yanks a crate too hard, and it crashes to the floor with a loud thud. You hear footsteps outside - guards, no doubt. Better forget about anything near the entrance.</div>\
<<else>>\
<<set $heist_mistakes += 1>>\
<div class="even">The thief works quickly, but knocks over a small box. It clatters softly on the floor. He freezes, but when no one reacts, he continues - though the tension remains high.</div>\
<</if>>\
And now its your part. Time to move everything outside and prepare for extraction. Your <span class = "cun">agility</span> will be tested.
<<if $cun > _player_skillcheck + 1>>\
<div class="success">You maneuver the heavy load with ease, keeping low and moving quickly. The weight is balanced, and you reach the hole in the fence without a sound. You drop the haul just outside, ready for the driver to pick it up.</div>\
<<elseif $cun < _player_skillcheck - 1>>\
<<set $heist_mistakes += 2>>\
<div class="fail">You struggle with the weight, fumbling as you try to keep quiet. With a loud thud, the cargo slips from your grip and crashes to the ground. The noise echoes, and you hold your breath, hoping the guards don’t hear you. Its only you who left to blame for losing precious loot.</div>\
<<else>>\
<<set $heist_mistakes += 1>>\
<div class="even">You manage to carry the load, but it’s clumsy work. A box shifts unexpectedly, causing a soft clink. You stop and listen for a moment, but the guards don’t seem to notice. You push on, finally reaching the hole in the fence with the cargo intact.</div>\
<</if>>\
It’s time to pack up and make a run for it. You signal to the driver, ready to make your escape.
<<if $crew_driver_skill > _driver_skillcheck + 1>>\
<div class="success">The driver pulls up smoothly, ready to load the cargo in record time. You and the thief quickly transfer the loot into the back of the vehicle, and within moments, you're packed up and ready to go. Everything goes off without a hitch.</div>\
<<elseif $crew_driver_skill < _driver_skillcheck - 1>>\
<<set $heist_mistakes += 2>>\
<div class="fail">The driver arrives but hesitates, taking too long to back up to the hole. You and the thief scramble to load the cargo, but the process is frantic and disorganized. By the time you finish, it feels like an eternity has passed, and you can't shake the feeling that you’re running out of time.</div>\
<<else>>\
<<set $heist_mistakes += 1>>\
<div class="even">The driver arrives at a decent pace, but he takes a bit longer to position the vehicle just right. You and the thief manage to load the cargo efficiently, though the slight delay leaves you all feeling a bit on edge. You’re packed up and ready, but you know you could have been quicker.</div>\
<</if>>\
<<link "Results." "HeistCW End">>
<</link>>\
<</linkreplace>>\<<silently>>\
<<if $heist_mistakes > 5>>
<<set _loot_mod = 2>>
<<driver_exp `25`>>\
<<set $band_morale -= 15>>
<<set _guaranteed_amount = random(0, 2)>>
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>\
<<if $accomplices_list[_i].crew == "Safecracker">>\
<<set _v = $accomplices_list[_i]>>\
<<capture _v, _i>>\
<<set $active_npc = _v>>\
<<set $active_npc.jail_term = 12>>\
<<set $active_npc.jail_year = $gameDate.getFullYear()>>\
<<set $active_npc.jail_month = $gameDate.getMonth()>>\
<<set $active_npc.jail_day = $gameDate.getDate()>>\
<<set $active_npc.buyback = 30000>>\
<<set $active_npc.crime = "Grand Larceny">>\
<<accomplice_jail>>\
<<set $active_npc = "">>\
<</capture>>\
<</if>>\
<</for>>
<<elseif $heist_mistakes > 2>>
<<morale `5`>>\
<<driver_exp `25`>>\
<<set $band_morale += 5>>\
<<safecracker_exp `40`>>\
<<set _loot_mod = 3>>
<<set _guaranteed_amount = random(2, 3)>>
<<else>>
<<morale `10`>>\
<<set _loot_mod = 4>>
<<set _guaranteed_amount = random(5, 7)>>
<<driver_exp `25`>>\
<<safecracker_exp `50`>>\
<</if>>
<<set _loot_crate_1 = either("Chems A", "Chems B", "Materials for Encapsulation", "Agricultural Products")>>
<<set _loot_crate_2 = either("Chems A", "Chems B", "Materials for Encapsulation", "Agricultural Products")>>
<<set _loot_crate_3 = either("Chems A", "Chems B", "Materials for Encapsulation", "Agricultural Products")>>
<<set _amount_1 = (random(3, 5) * _loot_mod) + _guaranteed_amount>>
<<set _amount_2 = (random(3, 5) * _loot_mod) + _guaranteed_amount>>
<<set _amount_3 = (random(3, 5) * _loot_mod) + _guaranteed_amount>>
<<set _amount_components = random(3, 5) * _loot_mod>>
<<pickup $p_craft _loot_crate_1 _amount_1 _loot_crate_2 _amount_2 _loot_crate_3 _amount_3>>
<<pickup $p_inv "Electrical Components" _amount_components>>
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/background/events/cw_heist.webp");
inset: 0;
position: fixed;
filter:grayscale(90%);
background-size: cover;
}
</style>\
<<if $heist_mistakes > 5>>\
<div class="fail">You and your crew made too much noise during the heist, and it caught up with you. As you scrambled to load the cargo, the thief got zapped with a taser by the guards. You and the driver quickly packed up and made your escape, hoping the thief wouldn’t spill your names- who knows what the Cartel might do to him. There’s still a slim chance they’ll just hand him over to the authorities and leave it at that. Unfortunately, you’ve also lost a significant amount of loot. </div>\
<<elseif $heist_mistakes > 2>>\
<div class="even">The team managed to load up the van, but the rush was palpable. The noise made during the escape left everyone on edge, and in the frantic hurry, some of the cargo was dropped or left behind. By the time team drove off, you had a decent haul - but it wasn’t nearly as much as it could’ve been. It wasn’t perfect, but at least you’re driving away with something in the back. Success, though far from clean.</div>\
<<else>>\
<div class="success">Everything went off without a hitch. Team has loaded the cargo smoothly and slipped away into the night without a soul noticing. The operation was flawless, and as team drive away, you can’t help but feel a rush of triumph. You secured a hefty haul and left no trace behind - this was a heist for the books. </div>\
<</if>>\
Loot:
_amount_1 _loot_crate_1, _amount_2 _loot_crate_2, _amount_3 _loot_crate_3, and _amount_components of Electrical Components from various disassembled applicances.
<<link "Time for another day with another opportunities." "NewDay">>
<<heist_reset>>\
<<set $gameDate.setHours(8)>>
<<set $gameDate.setMinutes(0)>>
<</link>>\<<silently>>\
<<set _driver_skillcheck = $heist_difficulty + random(-2, 2)>>
<<set _thief_skillcheck = $heist_difficulty + random(-3, 3)>>
<<set _player_skillcheck = $heist_difficulty + random(-2, 6)>>
<<set _media_entrance = $gangbang_entrance.random()>>\
<<set _media_bj = $gangbang_blowjob.random()>>\
<<set _media_start = $gangbang_sex.random()>>\
<<set _media_hard = $gangbang_dp.random()>>\
<<set _media_creampie = $gangbang_creampie.random()>>\
<<set _media_facial = $gangbang_facial.random()>>\
<</silently>>\
<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/harborgb.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center>\
As you peer around the corner, you spot a familiar face in the nearby patrol. One of the guards, someone you’ve had a past "encounter" with, stands there, seemingly lost in thought. A sly grin crosses your face as you adjust your outfit, making sure you’re looking just right. Confidently, you step out of the shadows, walking straight up to him.
The guard’s eyes widen in recognition, his stance softening as you get closer.<span class="charm"> Now it’s all about the delivery.</span> You invited the guards to relive what happened during your last encounter.
<<if $charm >= _player_skillcheck>>\
<div class="success">He chuckles, a smirk tugging at his lips as he exchanges a glance with his partner. "Why not?" he says, signaling to the other guard. They both leave their post, clearly intrigued by your proposition. With a wink, you lead them off into the now familiar to you "fuck room", giving your crew all the time they need.</div>\
<<else>>\
<<set $heist_mistakes += 1>>\
<div class="fail">He laughs, clearly interested, but his partner isn’t having it. "You go ahead," the second guard mutters, staying at his post. Your familiar guard follows you off with a grin, but there’s still one left behind, keeping a watchful eye on the area. That'll help your team nonetheless.</div>\
<</if>>\
As you approached the staff area, the guard was already calling his colleagues over the radio. It didn’t take long for everyone interested to gather in one place.
<<linkappend "Let's go.">>
<video @src="_media_entrance" autoplay loop muted controls width="600" height="350"></video>
A few minutes later, he simply pushed you into a room full of people. Mostly naked ones. You had a rough idea of how many guards the Cartel employed, and it lined up with your plans. But the thought of what you'd have to do... well, it was too late to back out now; the plan was already in motion.
They completely took over control, allowing themselves to touch you in very inappropriate places, and it was clear this wasn’t their first rodeo. You responded with moans to every rough touch or slap, which obviously excited them even more. Your reactions provoked them to grope you with greater enthusiasm, and they began pushing their fingers where they shouldn’t.
Foreplay wouldn't make it for them, so they <<linkappend "put you on your knees.">>
<<message "Meanwhile...">>\
<<if $crew_safecracker_skill > _thief_skillcheck + 1>>\
<div class="success">With most of the guards gone, the thief moves smoothly through the warehouse, grabbing what he can without making a sound. Every crate and box is handled with care, and he gathers a decent haul without leaving a trace. No one is the wiser, and the heist progresses perfectly.</div>\
<<elseif $crew_safecracker_skill < _thief_skillcheck - 1>>\
<div class="fail">The thief, perhaps too eager, knocks over a stack of small crates, the clatter breaking the quiet of the night. He freezes as footsteps approach - one of the guards returning for a smoke break. The thief hides, heart pounding, as the guard settles in nearby. With the guard in the way, he can’t access a critical part of the warehouse, leaving some of the loot untouched.</div>\
<<else>>\
<div class="even">The thief works efficiently, but a few items tumble from a shelf, creating a soft noise. While it doesn’t attract immediate attention, it puts the thief on edge. He manages to grab some loot, but with the tension mounting, he leaves behind some items he wanted.</div>\
<</if>>\
<</message>>
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
It was... rough. You didn't have even a second to say something or to voice your opinion about the inconveniences in your position - when you finish one cock, other one takes its place in your mouth, when someone finishes slapping or fingering your asshole, other one takes vacant place and start playing with your arse, your tits were slapped and groped, and someone really thought that it would be funny to spontaneously cock slap you onto face... it took you a lot of strength to not to bite anyone under this pressure.
And it aint gonna be easier in any means... Guys became bored by using only your lips'n'bits and <<linkappend "begin moving you into more suitable position for penetration.">>
<video @src="_media_start" autoplay loop muted controls width="600" height="350"></video>
You were... "assaulted" by dicks in every possible orifice. They weren't thinking about your own pleasure, it was a very rough test of your endurance. You are no longer quetly moaning, you're going full loud noise attack every time your mouth isn't busy servicing a dick, but even with lips around someone's prick you whimper and whine...
As the gangbang continued, the men switched positions, taking turns fucking you in every imaginable way. Double penetration became the norm, with two cocks filling your pussy and ass simultaneously.
When you thought that you've got yourself into the perfect pace, someone drived a second cock into your backdoor.
It was not a rough sex before. But now, <<linkappend "you're getting really hard fucked.">>
<<anal_whore_progress>>\
<<message "Meanwhile...">>\
<<if $crew_driver_skill > _driver_skillcheck + 1>>\
<div class="success">The driver expertly maneuvers the van to the hole in the fence, positioning it perfectly for a quick load-up. He hops out, and with the thief, they swiftly transfer the cargo without making a sound. Everything goes smoothly, and they’re packed up and left the scene in no time.</div>\
<<elseif $crew_driver_skill < _driver_skillcheck - 1>>\
<div class="fail">The driver struggles to align the van properly, wasting precious seconds. As he hops out, he accidentally slams the door too hard, creating a loud bang. The noise carries through the night, alerting anyone nearby. Although they still manage to load the cargo and escape, the rush leaves them both on edge, knowing that the guards could be on their way.</div>\
<<else>>\
<div class="even">The driver approaches the opening in the fence with a steady pace, but he misjudges the distance and has to back up a bit to get in the right spot. He manages to get the van close enough, but a slight thud occurs as he shuts the door. Thiev and driver load the cargo efficiently, but the sound hangs in the air, heightening the tension as they make their getaway.</div>\
<</if>>\
<</message>>
<video @src="_media_hard" autoplay loop muted controls width="600" height="350"></video>
As they push their cocks inside your ass'n'pussy, and even sometimes in a one single hole you can't help but let out a loud moan. The sensation of being filled up by two hard cocks is almost too much to bear, and you can feel your body trembling with pleasure.
Gladly, not everyone agrees on a double fucking a single orifice, it tests a man's friendship to feel each other's dick. Otherwise, you’d be too overwhelmed.
It wasnt really long before you heard a grunts of incoming orgasms from gangbangers that were pounding you. Everyone else start surrounding you while masturbating. Is it some kind of code of honor to orgasm together, huh?
<<linkappend "The one's fucking you speed up their movement and bursts into you..">>
<<message "Meanwhile...">>\
Two guys stood by the open van, cigarettes and burgers in hand, watching the city lights flicker in the night.
<span class="male_text">- "Nice night, huh? We did our part, maybe not perfectly, but good enough. Still, I can't stop thinking about the boss... Do you think she's okay? She's been in there a while."</span>
<span class="male_text">- "Of course she's fine, idiot. It’s her plan. She told us it might take some time. I'm just curious what she's doing in there..."</span>
<</message>>
<video @src="_media_creampie" autoplay loop muted controls width="600" height="350"></video>
<<linkappend "Then they brought you to your knees and surrounded you.">>
<video @src="_media_facial" autoplay loop muted controls width="600" height="350"></video>
Some of them were close to finish and asked you to help, some on them just asked you to clean their pricks. Well, you're really gone too deep, so no shame in finishing your job. It took you somewhat a 10 mins before everyone were cleaning and chatting, its still working hours and obviously they weren't doing their job while fucking you. You could hear how they were discussing their achievements during gangbang. A few mans helped you to dress and get yourself in order and then led you <<link "ouf of warehouses territory" "HeistCW End">><</link>>. What a lovely people. Even tho they were making some dirty jokes about how funny you're gonna walk for a next few days, but you can only hope your team hasn’t messed it all up after everything you’ve gone through...
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
</center>\<<widget "head_list">>\
<div class="shop_list">\
<<for _i = 0; _i < _head_t1.length; _i = _i + 1>>\
<span style="text-align: center;">
<<set _v = _head_t1[_i]>>\
_v.item
_v.pic
<<clothes_desc>>\
<<if $money >= _v.value>>\
<<capture _v>>\
<<link "_v.value​$">>
<<run $p_wardrobe.push(_v)>>\
<<money `-_v.value`>>\
<<notify 1s>>Bought.<</notify>>\
<<run Engine.show()>>\
<</link>>\
<</capture>>\
<<else>>\
<span class="not_available">_v.value​$</span>
<</if>>\
</span>
<</for>>\
</div>\
<</widget>>\
<<widget "top_list">>\
<div class="shop_list">\
<<for _i = 0; _i < _top_t1.length; _i = _i + 1>>\
<span style="text-align: center;">
<<set _v = _top_t1[_i]>>\
_v.item
_v.pic
<<clothes_desc>>\
<<if $money >= _v.value>>\
<<capture _v>>\
<<link "_v.value​$">>
<<run $p_wardrobe.push(_v)>>\
<<money `-_v.value`>>\
<<notify 1s>>Bought.<</notify>>\
<<run Engine.show()>>\
<</link>>\
<</capture>>\
<<else>>\
<span class="not_available">_v.value​$</span>
<</if>>\
</span>
<</for>>\
</div>\
<</widget>>\
<<widget "bottom_list">>\
<div class="shop_list">\
<<for _i = 0; _i < _bottom_t1.length; _i = _i + 1>>\
<span style="text-align: center;">
<<set _v = _bottom_t1[_i]>>\
_v.item
_v.pic
<<clothes_desc>>\
<<if $money >= _v.value>>\
<<capture _v>>\
<<link "_v.value​$">>
<<run $p_wardrobe.push(_v)>>\
<<money `-_v.value`>>\
<<notify 1s>>Bought.<</notify>>\
<<run Engine.show()>>\
<</link>>\
<</capture>>\
<<else>>\
<span class="not_available">_v.value​$</span>
<</if>>\
</span>
<</for>>\
</div>\
<</widget>>\
<<widget "multislot_list">>\
<div class="shop_list">\
<<for _i = 0; _i < _multislot_t1.length; _i = _i + 1>>\
<span style="text-align: center;">
<<set _v = _multislot_t1[_i]>>\
_v.item
_v.pic
<<clothes_desc>>\
<<if $money >= _v.value>>\
<<capture _v>>\
<<link "_v.value​$">>
<<run $p_wardrobe.push(_v)>>\
<<money `-_v.value`>>\
<<notify 1s>>Bought.<</notify>>\
<<run Engine.show()>>\
<</link>>\
<</capture>>\
<<else>>\
<span class="not_available">_v.value​$</span>
<</if>>\
</span>
<</for>>\
</div>\
<</widget>>\
<<widget "underbottom_list">>\
<div class="shop_list">\
<<for _i = 0; _i < _underbottom_t1.length; _i = _i + 1>>\
<span style="text-align: center;">
<<set _v = _underbottom_t1[_i]>>\
_v.item
_v.pic
<<clothes_desc>>\
<<if $money >= _v.value>>\
<<capture _v>>\
<<link "_v.value​$">>
<<run $p_wardrobe.push(_v)>>\
<<money `-_v.value`>>\
<<notify 1s>>Bought.<</notify>>\
<<run Engine.show()>>\
<</link>>\
<</capture>>\
<<else>>\
<span class="not_available">_v.value​$</span>
<</if>>\
</span>
<</for>>\
</div>\
<</widget>>\
<<widget "shoe_list">>\
<div class="shop_list">\
<<for _i = 0; _i < _shoe_t1.length; _i = _i + 1>>\
<span style="text-align: center;">
<<set _v = _shoe_t1[_i]>>\
_v.item
_v.pic
<<clothes_desc>>\
<<if $money >= _v.value>>\
<<capture _v>>\
<<link "_v.value​$">>
<<run $p_wardrobe.push(_v)>>\
<<money `-_v.value`>>\
<<notify 1s>>Bought.<</notify>>\
<<run Engine.show()>>\
<</link>>\
<</capture>>\
<<else>>\
<span class="not_available">_v.value​$</span>
<</if>>\
</span>
<</for>>\
</div>\
<</widget>>\
<<widget "misc_list">>\
<div class="shop_list">\
<<for _i = 0; _i < _misc_t1.length; _i = _i + 1>>\
<span style="text-align: center;">
<<set _v = _misc_t1[_i]>>\
_v.item
_v.pic
<<clothes_desc>>\
<<if $money >= _v.value>>\
<<capture _v>>\
<<link "_v.value​$">>
<<run $p_wardrobe.push(_v)>>\
<<money `-_v.value`>>\
<<notify 1s>>Bought.<</notify>>\
<<run Engine.show()>>\
<</link>>\
<</capture>>\
<<else>>\
<span class="not_available">_v.value​$</span>
<</if>>\
</span>
<</for>>\
</div>\
<</widget>>\
<<widget "clothes_desc">>\
<<switch _v.stylishness>>\
<<case 0>>\
Tasteless and dull
<<case 1 2>>\
Passable
<<case 3 4>>\
Stylish yet simple
<<case 5 6>>\
Elegant and refined
<<case 7 8>>\
Luxurious, eye-catching
<</switch>>\
<<switch _v.sluttyness>>\
<<case 0>>\
Modest and plain
<<case 1 2>>\
Slightly daring
<<case 3 4>>\
Flirty but decent
<<case 5 6>>\
Revealing and bold
<<case 7 8>>\
Scandalous, almost indecent
<</switch>>\
<</widget>>\
<<widget "wardrobe_widget">>\
<<set _equip = Object.entries($equip)>>\
<<set $stylishness = 0>>\
<<set $sluttyness = 0>>\
Wearing right now:
<div class="shop_list">\
<<for _i = 0; _i < _equip.length; _i = _i + 1>>\
<span style="text-align: center;">
<<set _k = _equip[_i][0]>>\
<<set _v = _equip[_i][1]>>\
_v.item
_v.pic
<<set $stylishness += _v.stylishness>>\
<<set $sluttyness += _v.sluttyness>>\
<<capture _v, _k>>\
<<link "Take off">>
<<run $p_wardrobe.push(_v)>>\
<<run Reflect.deleteProperty($equip, _k)>>\
<<run Engine.show()>>\
<</link>>\
<</capture>>\
</span>
<</for>>\
</div>\
<<if $stylishness < 7>>\
<<set $bonus_charm_style = 0>>\
Your style is mediocre at best. It's time to work on that, doncha' think?
<<elseif $stylishness >= 7 && $stylishness < 15>>\
<<set $bonus_charm_style = 1>>\
Good style. Plenty of room for improvement tho.
<<elseif $stylishness >= 15 && $stilishness < 23>>\
<<set $bonus_charm_style = 2>>\
You're dressed to the nines. Its easier to talk to people when you're looking that stunning.
<<elseif $stylishness >= 23>>\
<<set $bonus_charm_style = 3>>\
You're looking godlike. You've earned it.
<</if>>\
<<if $sluttyness < 7>>\
<<set $bonus_charm_slut = 0>>\
Ordinary look.
<<elseif $sluttyness >= 7 && $sluttyness < 15>>\
<<set $bonus_charm_slut = 1>>\
Provocative look.
<<elseif $sluttyness >= 15 && $sluttyness < 23>>\
<<set $bonus_charm_slut = 2>>\
You are looking very provocative, this can cause unwanted attention.
<<elseif $sluttyness >= 23>>\
<<set $bonus_charm_slut = 3>>\
Everyone desires you.
<</if>>\
<<button "Clothes in wardrobe">>\
<<if $wardrobe_on == false>>\
<<set $wardrobe_on = true>>\
<<replace ".wardrobe_list">>\
<<for _i = 0; _i < $p_wardrobe.length; _i = _i + 1>>\
<span style="text-align: center;">
<<set _v = $p_wardrobe[_i]>>\
_v.pic
<<clothes_desc>>\
<<if _v.slot && !$equip[_v.slot]>>\
<<capture _i, _v>>\
<<link "Equip">>\
<<run $equip[_v.slot] = _v>>\
<<run $p_wardrobe.splice(_i, 1)>>\
<<run Engine.show()>>\
<</link>>
<</capture>>\
<</if>>\
<<link "Discard">>\
<<run $p_wardrobe.deleteAt($p_wardrobe.indexOf("_v"))>>\
<<run Engine.show()>>\
<</link>>
</span>\
<</for>>\
<</replace>>\
<<else>>\
<<set $wardrobe_on = false>>\
<<replace ".wardrobe_list">>\
<</replace>>\
<</if>>\
<</button>>
<<if $wardrobe_on == true>>\
<div class="wardrobe_list">\
<<for _i = 0; _i < $p_wardrobe.length; _i = _i + 1>>\
<span style="text-align: center;">
<<set _v = $p_wardrobe[_i]>>\
_v.pic
<<clothes_desc>>\
<<if _v.slot && !$equip[_v.slot]>>\
<<capture _i, _v>>\
<<link "Equip">>\
<<run $equip[_v.slot] = _v>>\
<<run $p_wardrobe.splice(_i, 1)>>\
<<run Engine.show()>>\
<</link>>
<</capture>>\
<</if>>\
<<link "Discard">>\
<<run $p_wardrobe.deleteAt($p_wardrobe.indexOf("_v"))>>\
<<run Engine.show()>>\
<</link>>
</span>\
<</for>>\
</div>\
<<else>>\
<div class="wardrobe_list">
</div>\
<</if>>\
<<set $charm = ($charm_base + $bonus_charm_style + $bonus_charm_slut + $charm_mod_boss)>>\
<</widget>>\
<<widget "nude_check">>
<<if !$equip.feet && !$equip.bottom && !$equip.top>>\
<<run $equip.top = $mall_top_t1.blackTShirt>>\
<<run $equip.bottom = $mall_bottom_t1.jeans>>\
<<run $equip.feet = $mall_shoe_t1.sneakers>>\
<<notify 5s>> You can't go anywhere like that. You took whatever rags you could find nearby. <</notify>>\
<</if>>\
<</widget>>\<<silently>>\
<<set _top_t1 = Object.values($mall_top_t1)>>
<<set _bottom_t1 = Object.values($mall_bottom_t1)>>
<<set _multislot_t1 = Object.values($mall_multislot_t1)>>
<<set _shoe_t1 = Object.values($mall_shoe_t1)>>
<<set _misc_t1 = Object.values($mall_misc_t1)>>
<</silently>>\
<style>
body.center::before {
content: '';
background-image: url("img/background/center/mall.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<button "Top">>\
<<replace "#shop_list">> \
<<top_list>> \
<</replace>>\
<</button>>\
<<button "Bottom">>\
<<replace "#shop_list">> \
<<bottom_list>> \
<</replace>>\
<</button>>\
<<button "Dresses">>\
<<replace "#shop_list">> \
<<multislot_list>> \
<</replace>>\
<</button>>\
<<button "Shoes">>\
<<replace "#shop_list">> \
<<shoe_list>> \
<</replace>>\
<</button>>\
<<button "Misc">>\
<<replace "#shop_list">> \
<<misc_list>> \
<</replace>>\
<</button>>\
<<button "Stop browsing">>\
<<replace "#shop_list">> \
<</replace>>\
<</button>>\
<span id="shop_list"></span>
<<out_link>><<link "Let's get out of here" "Mall">>
<</link>><</out_link>>
<<out_link>><<link "Get back to the main street of City Center" "City Center">>
<<addmins 15>>
<</link>><</out_link>><<silently>>\
<<if $reputation < 10000>>
<<set _head_t1 = Object.values($sexshop_head_t1)>>
<<set _top_t1 = Object.values($sexshop_top_t1)>>
<<set _bottom_t1 = Object.values($sexshop_bottom_t1)>>
<<set _multislot_t1 = Object.values($sexshop_multislot_t1)>>
<<set _underbottom_t1 = Object.values($sexshop_underbottom_t1)>>
<<set _shoe_t1 = Object.values($sexshop_shoe_t1)>>
<<set _misc_t1 = Object.values($sexshop_misc_t1)>>
<<else>>
<<set _head_t1 = Object.values($sexshop_head_t2)>>
<<set _top_t1 = Object.values($sexshop_top_t2)>>
<<set _bottom_t1 = Object.values($sexshop_bottom_t2)>>
<<set _multislot_t1 = Object.values($sexshop_multislot_t1)>>
<<set _underbottom_t1 = Object.values($sexshop_underbottom_t1)>>
<<set _shoe_t1 = Object.values($sexshop_shoe_t2)>>
<<set _misc_t1 = Object.values($sexshop_misc_t1)>>
<</if>>
<</silently>>\
<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/sexshop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
filter:grayscale(80%);
background-size: cover;
}
</style>\
<<button "Neck">>\
<<replace "#shop_list">> \
<<head_list>> \
<</replace>>\
<</button>>\
<<button "Top">>\
<<replace "#shop_list">> \
<<top_list>> \
<</replace>>\
<</button>>\
<<button "Bottom">>\
<<replace "#shop_list">> \
<<bottom_list>> \
<</replace>>\
<</button>>\
<<button "Dresses">>\
<<replace "#shop_list">> \
<<multislot_list>> \
<</replace>>\
<</button>>\
<<button "Lingerie">>\
<<replace "#shop_list">> \
<<underbottom_list>> \
<</replace>>\
<</button>>\
<<button "Shoes">>\
<<replace "#shop_list">> \
<<shoe_list>> \
<</replace>>\
<</button>>\
<<button "Misc">>\
<<replace "#shop_list">> \
<<misc_list>> \
<</replace>>\
<</button>>\
<<button "Stop browsing">>\
<<replace "#shop_list">> \
<</replace>>\
<</button>>\
<span id="shop_list"></span>
<<out_link>><<link "Let's get out of here" "Sexshop">>
<</link>><</out_link>>
<<out_link>><<link "Get back to the main street of Downtown" "Downtown">>
<<addmins 15>>
<</link>><</out_link>><<set_bedroom_bg>>\
<center><<wardrobe_widget>>\
<<link "Proceed to the hall." "Home">>\
<<nude_check>>\
<</link>>
<<link "Close wardrobe." "Bedroom">>\
<<nude_check>>\
<</link>>
</center>\<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/darkalley.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center>Through the ghettos and the barrio
And the bowery and the slum
A shadow is cast wherever he stands
Stacks of green paper in his
Red right hand
You don't have no money?
<<link "I give you some">>
<<money `10000`>>\
<</link>>
You don't have no car?
<<link "I'll get you one" "CheatGuy">>
<<set $car = 3>>\
<<set $car_3 = true>>\
<<set $chase_car_bonus = 20>>\
<<set $energy_mod_car = 1>>\
<</link>>
You’re out of breath, can't stand the pace?
<<link "I'll give you grace" "CheatGuy">>
<<set $base_energy += 10>>\
<<set $stam += 10>>\
<</link>>
Nobody gives you respect, feeling low?
<<link "You'll became a show" "CheatGuy">>
<<set $reputation += 5000>>
<</link>>
Not smart enough to break the locks?
<<link "I'll make you outfox them" "CheatGuy">>
<<set $cunning += 10>>\
<</link>>
No charm to win, feeling bland?
<<link "Let me land you a hand" "CheatGuy">>
<<set $charm += 10>>\
<</link>>
Can’t fight, fists are light?
<<link "I’ll make it right" "CheatGuy">>
<<set $combat += 10>>\
<</link>>
Your health is failing, feeling frail?
<<link "I’ll lift the veil" "CheatGuy">>
<<set $health_base += 50>>\
<</link>>
Had enough, wanna leave?
<<out_link>><<link "I'll let you go" "Dark Alleys">><</link>><</out_link>></center>NOTHING HERE<<silently>>\
<<set _media_bj = $distributor_blowjob.random()>>\
<<set _media_sex = $distributor_anal.random()>>\
<<set _media_creampie = $distributor_creampie.random()>>\
<</silently>>\
<style>
body.harbor::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/harbor/distributor.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center>\
<span class="distributor">- "So you want your ass to be punished again."</span> - He stands up and moves to the door, locking it behind him. The bolt slides into place, echoing through the room. The usual hint for outside guards that their boss is busy.
<span class="distributor">- "On your knees,"</span> - he commanded with a low growl. Too late to back out now - you comply. You could see the bulge in his pants, a testament to his arousal.
<<linkappend "Unzip his pants.">>
The Distributor's cock springs free. You took it in your hand and wrap your fingers around the thick shaft. He groaned, his head falling back as you took him into your mouth.
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
<span class="distributor">- "That feels good, maybe you should’ve picked another line of business"</span> - he growled, his hips moving in time with your mouth. He groaned again, his cock growing even harder in your mouth.
<span class="distributor">- "That's it."</span> - Cartel's representative pulled you off the dick by the hair. - <span class="distributor">"Bent over."</span>
<<linkappend "Comply.">>
<<anal_whore_progress>>\
He positioned himself behind you, his cock pressing against your backdoor.
- "Are you already used to it?" - just as you were about to answer him, he begin thrusting you in, without giving a second to even adjust to his size.
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
His cock were sliding in and out of your ass with forceful thrusts while his hands was gripping your hips tightly. Your moans definitely were heard outside by the passerby warehouse workers and Cartel's guards, although perhaps they are already used to it. No wonders, the size of Distributor is challenge even for your ass...
He leaned over you, his body covering yours, feeling of tensing shows how he's approaching <<linkappend "the edge.">>
<video @src="_media_creampie" autoplay loop muted controls width="600" height="350"></video>
He groaned, his cock pulsing as he came, filling your ass with cum. It took you a couple of minutes to regain your senses, your body aching from the intensity of the encounter. Meanwhile, the Distributor is already back behind his desk, watching you.
<span class="distributor">- "That was... fun."</span> - He adjusts his glasses, locking eyes with you.
<<link "Nod." "The Distributor">>
<</link>>\
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
</center>\<style>
body.harbor::before {
content: '';
background-image: url("img/background/harbor/distributor.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<set $distributor_standoff = true>>\
The Distributor sighed, clasped his hands together and fixed his gaze on you. Quite uncommon.
- "I know exactly what you were up to with my guards. And I know you tried to steal from us - from me. There’s no other reason you'd fuck an entire squad of night guards. Mind explain?"
<<if $charm >= 10>>\
<<linkappend "Hint subtly that you wouldn’t mind giving him some special attention either.">>
- "Are you seducing me? Reeeally?" - the Distributor lowered his head, peering at you over his glasses. Though his tone was laced with irony, a clear hint of genuine interest slipped into his voice.
<<charm_link>><<link "Yes." "Distributor First Quickie">>\
<<set $distributor_lewd = true>>\
<<set $distributor_daily_sex = true>>\
<</link>><</charm_link>>\
<</linkappend>>\
<<else>>\
<span class="not_available">Doesn't seems that you can make it out through your charms.</span>\
<</if>>
<<if $cun >= 10>>\
<<cun_link>><<linkappend "Lie about something.">>
- "So, you're telling me you were just strolling by after a night in some junky place, when suddenly you heard one of my guards begging for help with a busted coffee machine? And you thought it would be funny to bust him out? Reeeally?"
<<linkappend "Yes.">>
The Distributor sighed.
- "I’m letting this slide this time, purely because I’m curious about what you can do. You’ve shown promise. But don’t play dumb next time."
<<link "Nod." "The Distributor">><</link>>\
<</linkappend>>\
<</linkappend>><</cun_link>>\
<<else>>\
<span class="not_available">Doesn't seems that you can make it out through by lies.</span>\
<</if>>
<<if $money >= 10000>>\
<<linkappend "Offer him 10000$ for moral damages.">>
- "Wise decision. I’m letting this slide this time, purely because I’m curious about what you can do. You’ve shown promise."
<<link "Pay." "The Distributor">><</link>>\
<</linkappend>>\
<<else>>\
<span class="not_available">If only you had a lump sum on you...</span>\
<</if>>
<<linkappend "Tell him that you have no explanation.">>
- "That’s… disappointing. Well, I’ll have to give you a lesson. I’m not going to do it Cartel style nevertheless, your offense isn’t that serious. I’ll let the police handle you." - The Distributor glanced at his phone, then back at you.
<<link "Sigh." "Custody">>
<<addhours 1>>\
<</link>>\
<</linkappend>>\<<silently>>\
<<set _media_bj = $distributor_blowjob.random()>>\
<<set _media_sex = $distributor_anal.random()>>\
<<set _media_creampie = $distributor_creampie.random()>>\
<</silently>>\
<style>
body.harbor::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/harbor/distributor.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center>\
<span class="distributor">- "You'll regret it."</span> - He stands up and moves to the door, locking it behind him. The bolt slides into place, echoing through the room. Not that it’ll stop the guards outside if things go south… seems more like a signal for them.
<span class="distributor">- "On your knees,"</span> - he commanded with a low growl. Too late to back out now - you comply. You could see the bulge in his pants, a testament to his arousal.
<<linkappend "Unzip his pants.">>
The Distributor's cock springs free. His size is... astonishing. Who would've thought that this clerk-type of guy has such monstrocity in the pants. You took it in your hand and wrap your fingers around the thick shaft. He groaned, his head falling back as you took him into your mouth.
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
<span class="distributor">- "That feels good, maybe you should’ve picked another line of business"</span> - he growled, his hips moving in time with your mouth. He groaned again, his cock growing even harder in your mouth.
<span class="distributor">- "That's it."</span> - Cartel's representative pulled you off the dick by the hair. - <span class="distributor">"Bent over."</span>
<<linkappend "Comply.">>
<<anal_whore_progress>>\
He positioned himself behind you, his cock pressing against your backdoor.
<span class="distributor">- "You better get used to it."</span> - just as you were about to ask him to change his decision, he begin thrusting you in, without giving a second to even adjust to his size.
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
His cock were sliding in and out of your ass with forceful thrusts while his hands was gripping your hips tightly. Your moans definitely were heard outside by the passerby warehouse workers and Cartel's guards. No wonders, the size of Distributor is challenge even for your ass...
He leaned over you, his body covering yours, feeling of tensing shows how he's approaching <<linkappend "the edge.">>
<video @src="_media_creampie" autoplay loop muted controls width="600" height="350"></video>
He groaned, his cock pulsing as he came, filling your ass with cum. It took you a couple of minutes to regain your senses, your body aching from the intensity of the encounter. Meanwhile, the Distributor is already back behind his desk, watching you.
<span class="distributor">- "Apologies for my... lapse in composure. It won't happen again. Unless..."</span> - He adjusts his glasses, locking eyes with you. <span class="distributor">- "Feel free to drop a hint - especially if you’re planning to cross paths with the Cartel again."</span>
<<link "Nod." "The Distributor">>
<</link>>\
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
</center>\<<silently>>\
<<set _media_bj = $romano_blowjob.random()>>\
<<set _media_sex = $romano_sex.random()>>\
<<set _media_facial = $cumshot.random()>>\
<</silently>>\
<style>
body.suburbs::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/suburbs/romanosuburbs.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center>\
He grins wider, standing up and moving to the door. He locks it behind him, the bolt echoing through the room. <span class="romano">"Good."</span> - he says, turning back to you. - <span class="romano">"You're a wild one, aren't you? A little danger, a little adventure... Let see how beautiful you can be..."</span> - Alfa walks back to you, his eyes never leaving you, and his hands moving up to undress whatever you wears.
You let him undress you, his fingers tracing every inch of your skin. When you’re naked, he steps back to look at you, his eyes dark with desire. <span class="romano">"Bellissima"</span> - he exclaimed with pinched fingers.
You sighed tiredly and reached for his belt, undoing it with practiced ease. Romano's cock springs free, hard and ready. Being glad that you finally got to the business, you dropped to <<linkappend "your knees in front of him.">>
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
You lean forward, wrapping your lips around his shaft. He groans, his hands fisting in your hair, guiding your head as you suck him.
<span class="romano">- "That's it, cara mia,"</span> - Alfa murmurs. - <span class="romano">"Take it all. Show me what you can do."</span> - You gag slightly, but you take him deeper, your hand working the base of his shaft. You look up at him, his face a picture of pleasure. You pull back, teasing him, telling him to not be so fast. His eyes flash with irritation, but he lets you take control.
You guide him to a nearby couch and let him push you gently <<linkappend "down.">>
...of all the possible positions he chose the dullest ones. This guy’s definitely been watching too many classics... You tease this poor bastard with commentaries about his decisions, but your body is arching up to meet his.
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
He fucked you slow and steady, hornyness of Romano's amplua and his actual actions are on very different levels. He even stopped with his usual exclamations, completely focused on his movements.
It was a very sudden when he pulled out and positioned you right in front of him. Romano looks up at you, his eyes dark.
<<linkappend '- "Open your mouth, bella,"'>>
<video @src="_media_facial" autoplay loop muted controls width="600" height="350"></video>
You comply with your lips parting. He groans with pulsing cock in his hand and then... he comes, obviously, splashing everything he holded onto your face.
<span class="romano">- "You were wonderful,"</span> - he speaks, collapsing onto his usual chair and getting a cigar from table. You roll your eyes, but you're smiling. You've paid your card debt, and now you can <<link "move on" "Mafia Leader S">><</link>> after a quick clean up.
<</linkappend>>\
<</linkappend>>\
<</linkappend>>\
</center>\<<message 'Realtor & Furniture Stores' btn>>\
<<if $home_type == 0>>\
<<linkreplace "Move to flat - 5000$">>\
<<if $money < 5000>>\
Not enough money!\
<<else>>\
<<set $reputation += 150>>\
<<set $home_type = 1>>\
<<money `-5000`>>\
<<set $rent += 30>>\
<<goto "PC">>\
<</if>>\
<</linkreplace>>
You can move from your basement to a real gangsta's housing - flat in some shady district. It'll allows you to buy a garage and will increase yours home safety.
Will increase your tax payments by 30$.
<</if>>\
\
<<if $home_type == 1>>\
<<linkreplace "Move to one-storey house - 30000$">>\
<<if $money < 30000>>\
Not enough money!\
<<else>>\
<<set $reputation += 200>>\
<<set $home_type = 2>>\
<<money `-30000`>>\
<<set $rent += 150>>\
<<set $basement = 1>>\
<<set $coins_farm_size += 5>>
<<goto "PC">>\
<</if>>\
<</linkreplace>>
Time to get yourself an own small dream - a big plot with a few hectares with a small house on it. There's lot of potential for expansion. You can even build a whole mansion on it! An ideal option for everything - be it housing, a place for a restaurant, or even a headquarters for an organization. If, of course, you can afford that. But hey, no more moving?
Comes with a small basement as bonus. And, also, lot of free garages nearby, you can trade your garage for a new one in neighbourhood.
Will increase your tax payments by 150$.
<</if>>\
\
<<if $home_type >= 2 && $home_gym == false>>\
<<linkreplace "Gym extension - 50000$">>\
<<if $money < 50000>>\
Not enough money!\
<<else>>\
<<money `-50000`>>\
<<set $base_energy += 1>>\
<<set $home_gym = true>>\
<<goto "PC">>\
<</if>>\
<</linkreplace>>
Keeping yourself healthy makes you more energetic!
<</if>>\
\
<<if $home_type >= 2 && $basement == 1>>\
<<linkreplace "Basement extension - 30000$">>\
<<if $money < 30000>>\
Not enough money!\
<<else>>\
<<money `-30000`>>\
<<set $basement = 2>>\
<<set $coins_farm_size += 15>>\
<<goto "PC">>\
<</if>>\
<</linkreplace>>
Work on your basement, and you’ll unlock plenty of extra space right beneath your feet! Just make sure it stays within zoning law limits.
<</if>>\
\
<<if $home_type >= 2 && $basement == 2>>\
<<linkreplace "Basement extension 2 - 70000$">>\
<<if $money < 70000>>\
Not enough money!\
<<else>>\
<<money `-70000`>>\
<<set $basement = 3>>\
<<set $coins_farm_size += 30>>\
<<goto "PC">>\
<</if>>\
<</linkreplace>>
Underground extensions are costly, but they’ll turn the area beneath your house into a sprawling dungeon! Well, not an actual dungeon - zoning laws prevent anything too massive - but it’s the largest underground space legally possible for a residential area.
<</if>>\
\
<<if $home_type >= 2 && $home_swimming_pool == false>>\
<<linkreplace "Swimming pool extension - 60000$">>\
<<if $money < 60000>>\
Not enough money!\
<<else>>\
<<money `-60000`>>\
<<set $band_universal_mod = 1>>\
<<set $home_swimming_pool = true>>\
<<run $band_events.push("pool_fun")>>\
<<goto "PC">>\
<</if>>\
<</linkreplace>>
Fun time for everyone. Makes everyone who visits your place a little happier.
<</if>>\
\
<<if $home_type >= 2 && $home_fence == 0>>\
<<linkreplace "Fence around mansion - 30000$">>\
<<if $money < 30000>>\
Not enough money!\
<<else>>\
<<money `-30000`>>\
<<set $home_fence = 2>>\
<<goto "PC">>\
<</if>>\
<</linkreplace>>
Build Your Own Fortress.
<</if>>\
\
<<if $home_type >= 1 && $garage == 0>>\
<<linkreplace "Prefab Garage - 8000$">>\
<<if $money < 8000>>\
Not enough money!\
<<else>>\
<<set $garage = 1>>\
<<set $garage_size += 3>>\
<<money `-8000`>>\
<<set $rent += 15>>\
<<goto "PC">>\
<</if>>\
<</linkreplace>>
Garages of these sizes are able to accomodate at very least 6 cars, plentifull of space for anyone.
Property tax - 15$ a day.
<</if>>\
\
<<if $home_type >= 1 && $garage == 1>>\
<<linkreplace "Buy additional garages - 20000$">>\
<<if $money < 20000>>\
Not enough money!\
<<else>>\
<<set $garage = 2>>\
<<set $garage_size += 10>>\
<<money `-20000`>>\
<<set $rent += 125>>\
<<goto "PC">>\
<</if>>\
<</linkreplace>>
Buy out your neighbors' garages.
Additional property tax - 125$ a day.
<</if>>\
\
<<if $home_type >= 1 && $garage == 2>>\
<<linkreplace "Extend your garage - 40000$">>\
<<if $money < 40000>>\
Not enough money!\
<<else>>\
<<set $garage = 3>>\
<<set $garage_size += 37>>\
<<money `-40000`>>\
<<set $rent += 250>>\
<<goto "PC">>\
<</if>>\
<</linkreplace>>
Order the construction of a luxurious two-story garage with large windows that will make everyone jealous.
Additional property tax - 250$ a day.
<</if>>\
\
<<if $home_type >= 1 && $garage == 3>>\
<<linkreplace "Extend your garage underground - 60000$">>\
<<if $money < 60000>>\
Not enough money!\
<<else>>\
<<set $garage = 4>>\
<<set $garage_size += 50>>\
<<money `-60000`>>\
<<set $rent += 350>>\
<<goto "PC">>\
<</if>>\
<</linkreplace>>
There's no more space for cars on the ground, so we're going underground.
Additional property tax - 350$ a day.
<</if>>\
\
<<if $downtown_land_level == 1>>\
<<linkreplace "Upgrade apartment in Downtown - 2000$">>\
<<if $money < 2000>>\
Not enough money!\
<<else>>\
<<set $downtown_land_level = 2>>\
<<money `-2000`>>\
<<goto "PC">>\
<</if>>\
<</linkreplace>>\
<</if>>\
<<if $downtown_land_level == 2>>\
<<linkreplace "Upgrade apartment in Downtown further - 3000$">>\
<<if $money < 3000>>\
Not enough money!\
<<else>>\
<<set $downtown_land_level = 3>>\
<<money `-3000`>>\
<<goto "PC">>\
<</if>>\
<</linkreplace>>\
<</if>>\
<</message>>\
\
<<if $burglar_quest === 3>>\
<<message 'Black market' btn>>\
<<link "Order a lockpick - 40$">>\
<<pickup $p_inv "Lockpick" 1>>\
<<money `-40`>>\
<</link>>\
<</message>>\
<</if>>\<<message 'Brand Emporium Closed Indefinitely in Old Downtown'>>
The City_Herald writes:
The upscale fashion store "Brand Emporium" remains closed for an indefinite period as construction efforts get underway. The closure follows a successful police operation to rid the Old Downtown area of aggressive gang activity, and setting a much-needed security to the new heart of the city. Previously located in Old Downtown, now "Brand Emporium" will be opened in "The Mall". Authorities have confirmed that the neighborhood is undergoing extensive cleanup to restore its former charm. Residents and businesses alike are optimistic about the changes, hoping for a safer, revitalized urban center.
AngryRetard1337 replies(6833):
U WONT GET RID OF US U PIGS!!!!!!!!
*-*TreasureHunter*-* replies(6837):
Oooh, can't wait for this place to reopen again! People were telling that this emporium was a contraband spot, but it aaaalways had a very fashieonebile products in there before the gangs! I'm glad that police forces scared them away.
AngryRetard1337 replies(6838):
@*-*TreasureHunter*-* ILL GET YOUR SKULL, YOUR IP IS 192.168.1.1. CHECK FOR YOURSELF
<</message>>\
<br>\
<<message 'Road to Outskirts Temporarily Closed After Police Raid'>>
The City_Herald writes:
The road leading to the Outskirts has been temporarily closed following minor damage sustained during a large-scale police raid aimed at securing the city. Restoration crews are already working to repair the affected areas, with officials promising a swift reopening. The raid, part of ongoing efforts to stabilize the region, has been deemed a success, and normal traffic is expected to resume soon. Residents are urged to use alternative routes in the meantime.
MotoJoeWroomWroom replies(6872):
Daaaaaaaaaamn that will HIT on our finances......................
YoUrUnclExDDD replies(6888):
how tf they even damaged that road that really rolls my bejeebles
iHaTeNightmers replies(6897):
@YoUrUnclExDDD your what, you shivering my fucking timbers iykwim
IHATECOPS1111888 replies(6916):
SHUT THE EFF UP @CITY_HERALD
City_Herald replies(6921):
@IHATECOPS1111888 NO, SHUT THE FUCK UP YOU
<</message>>\
<br>\
<<message 'New Street Drug Floods City'>>
The City_Herald writes:
A dangerous new drug, rumored to act as a powerful aphrodisiac, is spreading rapidly across the city. While its initial effects may seem enticing, health officials warn of severe consequences, including loss of sanity, mental fog, debilitating migraines, and a host of other alarming symptoms. The Healthcare department of City Council has issued an urgent alert, cautioning residents to stay vigilant and report any suspected activity involving the substance. Authorities are intensifying efforts to identify the source and curb its distribution before the situation worsens.
AngryRetard1337 replies(6978):
we have a city council????
BestShitInTheCityWriteInPM replies(6997):
LOL authorities should do something with this indeed!!!
BoberUWU replies(7000):
7000 GET
Ilovedinos replies(7001):
7000 GET
ilovedinos replies(7003):
RIP
John_Doe7 replies(7009):
so thaaats why theres random chicks hopping on my dick every fucking day HELL YEAH
<</message>>\
<<if $reputation >= 1000>>\
<br>\
<<message 'Road to Outskirts Reopened, City Council Acknowledges Racing Events'>>
The City_Herald writes:
The road to the Outskirts has been fully restored and is now open to traffic, following swift repairs by city crews. Meanwhile, the City Council has addressed the growing trend of racing events taking place across the urban area. While officials are aware of these activities, no immediate actions will be taken to interfere, signaling a hands-off approach for now. Residents are advised to exercise caution and stay safe on the roads.
MotoJoeWroomWroom replies(7823):
ABOUT FUCKING TIME
Iamanon replies(7856):
ooooh finally i can get some fresh groceries again i soooo tired of buying GMO products from supermarkets
MrPink replies (7859):
@Iamanon u idiot its the same shit from markets in the city lmao
<</message>>\
<</if>>\
<<if $brand_clothing == true>>\
<br>\
<<message 'Grand Opening: Brand Emporium Brings High Fashion to City Center Mall'>>
The THE_Fashionista writes:
Step aside, ordinary - Brand Emporium has arrived to redefine luxury in the heart of the city! Nestled in the sparkling City Center Mall, "The Mall"! This chic haven offers exclusive collections from top-tier brands like Gilded Goat Couture and Eminence Rouge Atelier. Whether you're craving bold statement pieces or timeless elegance, Brand Emporium promises an unparalleled shopping experience that whispers sophistication at every turn. Join the style elite and let your wardrobe shine brighter than ever - because fashion this fabulous simply can't wait. Also, our company bought the share of the "Wild Rabbit" establishment located in Downtown and loaded it with our newest luxuries too! Thanks to the anonymous patron of our store, bytheway!
John_Doe15 replies(9248):
//Message was deleted by OP.//
COPSMUSTDIEHEH replies(9253):
//Message was deleted by OP.//
BoberUWU replies(9259):
//Message was deleted by OP.//
SexyChick88 replies(9269):
OMGGGGGGGG YES PLEASE! DONT LISTEN TO THESE STUPID ANIMALS YOUR SHOP IS THE BEST!!!!!
AngryRetard1337 replies(9277):
@SexyChick88 SHUT THE FUCK UP U STUPID CUNT
TURBOKILLER replies(9283):
//Message was deleted by OP.//
SexyChick88 replies (9288):
//Message was deleted by OP.//
<</message>>\
<</if>>\
<<if $p_boss == true>>\
<br>\
<<message 'Who Are These New Players?'>>
The RaidSurvivor11111 writes:
ayo scum, what’s the word on these new kids in town? Heard they set up shop, and people are saying they ain’t messing around. Crazy part? Their boss is a chick. Yeah, running things her own way, not like the usual playbook, but seems like she’s getting results. Question is, should we be worried about ‘em? Or are they just making noise?
TURBOKILLER replies(8589):
whats this new gang name bro
RaidSurvivor11111 replies(8593):
@TURBOKILLER $original_band_name or smth
MrPink replies(8601):
Havent heard about em tbh but good for them, this city needs something new
John_Doe7 replies(8608):
naaah
AngryRetard1337 replies(8620):
cool story bro
<</message>>\
<</if>>\
<<if $reputation >= 8000 && $p_boss == true>>\
<br>\
<<message 'Trailer With Cool Things For Sale'>>
The LunatiiiiiiiiiiK writes:
Well now I got me a real fine trailer sittin out on the outskirts lookin’ fer a new owner. ain’t much to look at but lemme tell ya what’s inside now that’s where it gets real innerestin. lets just say if ya got a taste fer excitin business this place might be jus’ what ya need. cash only no questions no nosey folks. Hit me up ‘fore someone else snags it. <<if $moonshine_trailer == 0>><<action_link>><<link "ma namber">><<script>> Dialog.setup("Call"); Dialog.wiki(Story.get("Trailer Call").processText()); Dialog.open(); <</script>><</link>><</action_link>><<else>> ------ STOP CALLING ME YOU FAGGOTS<</if>>
Aboba replies(10488):
bruh
PassangerWanker replies(10502):
i hope no one is stupid enough to call that number, right? skip this spam
<</message>>\
<</if>>\
<<if $night_club == true>>\
<br>\
<<message "Night Club In City Center Reopened">>
The pArtyAnimal writes:
Wait, so that old nightclub in the new center is actually open again? I always wondered why it was shut down in the first place - like, the whole district was just renovated, and somehow the owner couldn’t make it work, or what? Anyway, someone new took over and it’s back in business! Music’s blasting, lights are on, and from what I hear, it’s already drawing a crowd. Might have to check it out!!!
SexyChick88 replies(11302):
FINALLY
Jimmy replies(11358):
Who fucking cares
Dejavuivebeenherebefore replies(11427):
I think it was closed at the first place cuz it was under some of the gangs imho iirc fms in my opinion
<</message>>
<</if>>\<style>
body::before {
content: '';
background-image: url("img/background/home/contacts.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<span id="contacts"></span>\
<<button "M">>\
<<if _people != 1 || !_people>>\
<<replace "#people">><<include "People Male">><</replace>>
<<set _people = 1>>\
<<else>>\
<<replace "#people">><</replace>>\
<<set _people = 0>>\
<</if>>\
<</button>>\
<<button "F">>\
<<if _people != 2 || !_people>>\
<<replace "#people">><<include "People Fem">><</replace>>
<<set _people = 2>>\
<<else>>\
<<replace "#people">><</replace>>\
<<set _people = 0>>\
<</if>>\
<</button>>\
\
<<if $accomplices_list.length > 0>>\
<<button "Your accomplices">>\
<<if _people != 3 || !_people>>\
<<replace "#people">><<include "Accomplices">><</replace>>
<<set _people = 3>>\
<<else>>\
<<replace "#people">><</replace>>\
<<set _people = 0>>\
<</if>>\
<</button>>\
<</if>>\
\
<<if $sluts_list.length > 0>>\
<<button "Sluts">>\
<<if _people != 4 || !_people>>\
<<replace "#people">><<include "Sluts">><</replace>>
<<set _people = 4>>\
<<else>>\
<<replace "#people">><</replace>>\
<<set _people = 0>>\
<</if>>\
<</button>>\
<</if>>\
\
<<if $jail_list.length > 0>>\
<<button "Jail">>\
<<if _people != 5 || !_people>>\
<<replace "#people">><<include "JailList">><</replace>>
<<set _people = 5>>\
<<else>>\
<<replace "#people">><</replace>>\
<<set _people = 0>>\
<</if>>\
<</button>>\
<</if>>\
<span id="people"></span>
<<message "Red phone">>
<<include "Red Phone">>\
<</message>>\
[[Close contacts->Home]] <<widget "set_home_desc">>\
<<if $home_type == 0>>\
Home sweet... uh, basement. With peeling walls, a radiator that sounds like it's plotting revenge, and neighbors who seem to host a demolition derby every night, it's not much, but it's yours. Just try not to think about the mysterious stains. \
<style>
body::before {
content: '';
background-image: url("img/background/home/home-t1.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $home_type == 1>>\
Your very own box with a windows. Sure, the sirens scream at all hours, the car alarms sing their endless serenade, and your neighbors argue like it’s an Olympic sport - but at least it’s above ground. \
<style>
body::before {
content: '';
background-image: url("img/background/home/home-t2.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.6) 50%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $home_type == 2>>\
A step up in the world. This house has a space, a yard, and a very huge... potential. It’s not perfect, but with a little work (and a lot of money), it might just become the palace you deserve. \
<style>
body::before {
content: '';
background-image: url("img/background/home/home-t3.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.6) 50%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $home_type == 3>>\
The mansion glows brighter now - partly because of the neon sign from your very lucrative nightclub next door. With a warehouses, a car depot, and a sprawling operation hub, your home is now the beating heart of your empire. Just don’t let the party guests wander into your living room... again. \
<style>
body::before {
content: '';
background-image: url("img/background/home/home-t4.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.6) 50%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<</if>>\
<<if $home_gym == true>>\
You've made an investment in your personal gym, and it helps you with keeping you in tone everyday.
<</if>>\
<<if $home_swimming_pool == true>>\
In your backyard, there's a swimming pool that slightly boosts your crew's morale. Just remember: chlorine doesn’t clean up all evidence. \
<</if>>\
<<if $home_fence == 2>>\
And outside there's a tall, sturdy fence to keep out prying eyes, nosy neighbors, and those "free-spirited" types who think your backyard is public property. It says, “Keep out,” but with style - because nothing screams success like well-fortified privacy. \
<<link "Open all fence gates." "Home">>
<<set $home_fence = 1>>\
<</link>>\
<<elseif $home_fence == 1>>\
And outside there's a tall, sturdy fence to keep out prying eyes, nosy neighbors, and those "free-spirited" types who think your backyard is public property. It says, “Keep out,” but with style - because nothing screams success like well-fortified privacy. Buuuut you're keeping it open. \
<<link "Close all fence gates." "Home">>
<<set $home_fence = 2>>\
<</link>>\
<</if>>\
<<if $garage > 0>>\
Also you have your garage nearby.
<</if>>\
<</widget>>\
<<widget "set_bedroom_bg">>\
<<if $home_type == 0>>\
<style>
body::before {
content: '';
background-image: url("img/background/home/bedroom-t1.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.6) 50%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $home_type == 1>>\
<style>
body::before {
content: '';
background-image: url("img/background/home/bedroom-t2.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.6) 50%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $home_type == 2>>\
<style>
body::before {
content: '';
background-image: url("img/background/home/bedroom-t3.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.6) 50%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $home_type == 3>>\
<style>
body::before {
content: '';
background-image: url("img/background/home/bedroom-t4.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.6) 50%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<</if>>\
<</widget>>\
<<widget "set_bedroom_bg_sex">>
<<if $home_type == 0>>\
<style>
body::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/home/bedroom-t1.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.6) 50%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $home_type == 1>>\
<style>
body::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/home/bedroom-t2.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.6) 50%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $home_type == 2>>\
<style>
body::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/home/bedroom-t3.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.6) 50%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $home_type == 3>>\
<style>
body::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/home/bedroom-t4.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.6) 50%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<</if>>\
<</widget>>\
<<widget "set_home_bg">>\
<<if $home_type == 0>>\
<style>
body::before {
content: '';
background-image: url("img/background/home/home-t1.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $home_type == 1>>\
<style>
body::before {
content: '';
background-image: url("img/background/home/home-t2.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.6) 50%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $home_type == 2>>\
<style>
body::before {
content: '';
background-image: url("img/background/home/home-t3.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.6) 50%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<elseif $home_type == 3>>\
<style>
body::before {
content: '';
background-image: url("img/background/home/home-t4.webp");
inset: 0;
position: fixed;
mask-image: radial-gradient(circle, rgba(29,29,29,0.6) 50%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<</if>>\
<</widget>>\<<silently>>\
<<set _media = $gh_media.random()>>
<<set _amount = ($charm * random(1, 2)) + random(3, 7)>>
<<set _earnings = random(6, 13) * _amount>>
<<set _commentary = $gh_commentaries.random()>>
<</silently>>\
<style>
body.downtown::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/downtown/sexshop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
filter:grayscale(80%);
background-size: cover;
}
</style>\
<center>\
It's a dirty "job" people who aren't squeamish, but at least you're going to keep your anonymity. You’ve entered the booth and waited for clients... and it didn’t take long before the first one appeared.
<video @src="_media" autoplay loop muted controls width="600" height="350"></video>
And you get to work. This place is surprisingly popular among the crowd. There’s an obvious line of people on the other side of the hole you’ve been working at, and you’ve heard plenty of comments while blowing one cock after another...
<span id="public_gray">"_commentary"</span>
You've pleased _amount dicks and earned _earnings​$.
<<link "Clean yourself and get back to sexshop." "Sexshop">>
<<money `_earnings`>>\
<<addhours 1>>\
<<gloryhole_progress>>\
<</link>>\
</center><style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/marketplace.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<racketeer_encounter>>\
<center><<enemy_status>>
<span id="enemy_log">Finding the racketeer was almost too easy; all that prep might have been overkill. You shoved him into the nearest alleyway, leaving no room for doubt about your intentions. Now, it's time to let your fists do the talking.</span>\
<<enemy_intentions>>\
<span id="p_log"></span>\
</center>\
<<melee_attack>>\
<<silently>>\
<<if $enemy_hp <= 0>>
<<melee_success>>\
<<combat_reset>>
<<goto "Racketeer Win">>
<</if>>
<<if $p_hp <= 0>>
<<melee_fail>>\
<<combat_reset>>
<<goto "Racketeer Lose">>
<</if>>
<</silently>>\<<message "Hostile Actions" btn>>
<<if $sabo_active == false>>\
You're not preparing any hostile actions at the moment.
<<else>>\
Your enemies soon will face a surprice. Current plan: <<current_sabo>>\
<</if>>\
Every hostile action requires preparation and specific conditions written in the description of named action. Preparation takes one day, but fortunately, all you need is to allocate your organization’s resources for a successful sabotage. You'll usually see the results by morning. A successful action boosts your gang’s morale.
<<message "Street Gangs">>\
<<if $sabo_active == false && $band_strength >= 2000 && $garage_inv.count("Sedan Car", 2)&& $p_range.count("Block 19", 3) && $gangs_war == true>>\
<<link "Raid" "Whiteboard">>\
<<drop $garage_inv "Sedan Car" 2>>\
<<drop $p_range "Block 19" 3>>\
<<set $sabo_active = true>>\
<<set $sabo_type = "gangs_raid">>\
<</link>>\
- the good old quick strike on their turf. Reduces gang strength by 200.
Requirements: ''2000 band strength, 2 stolen sedans and 3 Block-19s.''
<<else>>\
Raid - the good old quick strike on their turf. Reduces gang strength by 200.
Requirements: ''2000 band strength, 2 stolen sedans and 3 Block-19s.''
<</if>>\
<<if $sabo_active == false && $chemist > 0 && $p_inv.count("Drugs", 200) && $p_craft.count("Organic Materials", 5) && $money >= 500 && $gangs_war == true>>\
<<link "Spike the drugs" "Whiteboard">>\
<<drop $p_inv "Drugs" 200>>\
<<drop $p_craft "Organic Materials" 5>>\
<<money `-500`>>\
<<set $sabo_active = true>>\
<<set $sabo_type = "gangs_spike">>\
<</link>>\
- we'll distribute our goods through their dealers. A small amount of cash for bribes will be needed. Reduces gang strength by 250.
Requirements: ''Chemist, 200 pieces of drugs, 5 pieces of organic materials and 500$.''
<<else>>\
Spike the drugs - we'll distribute our goods through their dealers. A small amount of cash for bribes will be needed. Reduces gang strength by 250.
Requirements: ''Chemist, 200 pieces of drugs, 5 pieces of organic materials and 500$.''
<</if>>\
<<if $sabo_active == false && $band_strength >= 500 && $gangs_war == true>>\
<<link "Catch the racketeer" "Whiteboard">>\
<<set $sabo_active = true>>\
<<set $sabo_type = "gangs_racketeer">>\
<</link>>\
- Street Gangs collect money from local establishments every morning. Your guys will ask around about the collector's appearance, and tomorrow morning, you'll take care of him. Reduces gang strength by 150. You may get some money from it.
Requirements: ''500 band strength.''
<<else>>\
Catch the racketeer - Street Gangs collect money from local establishments every morning. Your guys will ask around about the collector's appearance, and tomorrow morning, you'll take care of him. Reduces gang strength by 150. You may get some money from it.
Requirements: ''500 band strength.''
<</if>>\
<<if $sabo_active == false && $money >= 3000 && $gangs_war == true>>\
<<link "Find their stashes" "Whiteboard" >>\
<<money `-3000`>>\
<<set $sabo_active = true>>\
<<set $sabo_type = "gangs_stashes">>\
<</link>>\
- bribe some mouths and retrieve the gang's goods. It's as simple as that. Reduces gang strength by 150. You'll get some drugs from it.
Requirements: ''3000$.''
<<else>>\
Find their stashes - bribe some mouths and retrieve the gang's goods. It's as simple as that. Reduces gang strength by 150. You'll get some drugs from it.
Requirements: ''3000$.''
<</if>>\
<</message>>
<<message "Mafia">>\
<<if $sabo_active == false && $band_strength >= 2000 && $garage_inv.count("Sedan Car", 4) && $p_range.count("Block 19", 4) && $p_range.count("I16", 1) && $mafia_war == true>>\
<<link "Raid" "Whiteboard">>\
<<drop $garage_inv "Sedan Car" 4>>\
<<drop $p_range "Block 19" 4 "I16" 1>>\
<<set $sabo_active = true>>\
<<set $sabo_type = "mafia_raid">>\
<</link>>\
- the good old quick strike on their turf. Reduces mafia strength by 500.
Requirements: ''5000 band strength, 4 stolen sedans, 4 Block-19s and 1 l16.''
<<else>>\
Raid - the good old quick strike on their turf. Reduces mafia strength by 500.
Requirements: ''5000 band strength, 4 stolen sedans, 4 Block-19s and 1 l16.''
<</if>>\
<<if $sabo_active == false && $money >= 5000 && $p_melee.count("Baseball Bat", 2) && $p_melee.count("Brass Knuckles", 2) && $mafia_war == true>>\
<<link "Thrash the auto workshop" "Whiteboard">>\
<<money `-5000`>>\
<<drop $p_melee "Baseball Bat" 2 "Brass Knuckles" 2>>\
<<set $sabo_active = true>>\
<<set $sabo_type = "mafia_workshop">>\
<</link>>\
- hire some random hooligans for an overnight act of vandalism. Reduces mafia strength by 500.
Requirements: ''5000$, 2 baseball bats and 2 brass knuckles.''
<<else>>\
Thrash the auto workshop - hire some random hooligans for an overnight act of vandalism. Reduces mafia strength by 500.
Requirements: ''5000$, 2 baseball bats and 2 brass knuckles.''
<</if>>\
<<if $sabo_active == false && $band_strength >= 5000 && $mafia_war == true>>\
<<link "Wreck their cars" "Whiteboard">>\
<<set $sabo_active = true>>\
<<set $sabo_type = "mafia_wrecking">>\
<</link>>\
- provoke them on their turf and challenge them to a race. Your guys will handle the provoking, while you take care of the racing in the morning. This action reduces mafia strength by 400 if successful, and you may acquire some cars.
Requirements: ''5000 band strength.''
<<else>>\
Wreck their cars - provoke them on their turf and challenge them to a race. Your guys will handle the provoking, while you take care of the racing in the morning. This action reduces mafia strength by 400 if successful, and you may acquire some cars.
Requirements: ''5000 band strength.''
<</if>>\
<<if $sabo_active == false && $band_strength >= 5000 && $p_melee.count("Butterfly Knife", 1) && $p_range.count("Block 19", 2) && $p_range.count("Saga-12", 1) && $mafia_war == true>>\
<<link "Disrupt the undercover ring" "Whiteboard">>\
<<drop $p_melee "Butterfly Knife" 1>>\
<<drop $p_range "Block 19" 2 "Saga-12" 1>>\
<<set $sabo_active = true>>\
<<set $sabo_type = "mafia_ring">>\
<</link>>\
- show them how useless are combat arts nowadays. Reduces mafia strength by 500, you'll get some dirty money from it.
Requirements: ''5000 band strength, 1 butterfly knife, 2 Block-19s and 1 Saga-12.''
<<else>>\
Disrupt the undercover ring - show them how useless are combat arts nowadays. Reduces mafia strength by 500, you'll get some dirty money from it.
Requirements: ''5000 band strength, 1 butterfly knives, 2 Block-19s and 1 Saga-12.''
<</if>>\
<</message>>
<<message "Bikers">>\
<<if $sabo_active == false && $band_strength >= 12000 && $garage_inv.count("Pickup Truck", 2) && $p_range.count("Block 19", 5) && $p_range.count("I16", 1) && $bikers_war == true>>\
<<link "Raid" "Whiteboard">>\
<<drop $garage_inv "Pickup Truck" 2>>\
<<drop $p_range "Block 19" 5>>\
<<drop $p_range "I16" 1>>\
<<set $sabo_active = true>>\
<<set $sabo_type = "bikers_raid">>\
<</link>>\
- the good old quick strike on their turf. Reduces bikers' strength by 1200.
Requirements: ''12000 band strength, 3 stolen pickups, 5 Block-19s and 1 l16.''
<<else>>\
Raid - the good old quick strike on their turf. Reduces bikers' strength by 1200.
Requirements: ''12000 band strength, 3 stolen pickups, 5 Block-19s and 1 l16.''
<</if>>\
<<if $sabo_active == false && $thiefs_amount >= 5 && $band_strength >= 13000 && $garage_inv.count("Pickup Truck", 2) && $bikers_war == true>>\
<<link "Heist" "Whiteboard">>\
<<set $sabo_active = true>>\
<<set $sabo_type = "bikers_heist">>\
<</link>>\
- a swift robbery of their warehouses near landing strip. Reduces bikers' strength by 800. You'll get some random shipments.
Requirements: ''5 active thieves, 13000 band strength and 2 stolen pickups.''
<<else>>\
Heist - a swift robbery of their warehouses near landing strip. Reduces bikers' strength by 800. You'll get some random shipments.
Requirements: ''5 active thieves, 13000 band strength and 2 stolen pickups.''
<</if>>\
<<if $sabo_active == false && $dirty_money >= 50000 && $bikers_war == true>>\
<<link "Burn the money" "Whiteboard">>\
<<dirty_money `-50000`>>\
<<set $sabo_active = true>>\
<<set $sabo_type = "bikers_burn">>\
<</link>>\
- set fire to the large pile of dirty cash in front of the bikers' club. That'll break Volkov's heart. Reduces bikers' strength by 1500.
Requirements: ''50000$ in dirty.''
<<else>>\
Burn the money - set fire to the large pile of dirty cash in front of the bikers' club. That'll break Volkov's heart. Reduces bikers' strength by 1500.
Requirements: ''50000$ in dirty.''
<</if>>\
<<if $sabo_active == false && $p_range.count("Block 19", 5) && $p_range.count("Saga-12", 3) && $p_range.count("I16", 2) && $bikers_war == true>>\
<<link "Setup" "Whiteboard">>\
<<drop $p_range "Block 19" 5 "Saga-12" 3 "I16" 2>>\
<<set $sabo_active = true>>\
<<set $sabo_type = "bikers_setup">>\
<</link>>\
- create some fake weapon caches in the outskirts and then feed the information about them to the cops. This will provoke the security forces to take action against the bikers. Reduces bikers' strength by 1500. It'll hurt your reputation.
Requirements: ''5 Block-19s, 3 Sagas-12 and 2 I16.''
<<else>>\
Setup - create some fake weapon caches in the outskirts and then feed the information about them to the cops. This will provoke the security forces to take action against the bikers. Reduces bikers' strength by 1500.
Requirements: ''5 Block-19s, 3 Sagas-12 and 2 l16.''
<</if>>\
<<if $sabo_active == false && $chemist >= 2 && $warehouse_inv.count("Moonshine Shipment", 2) && $p_craft.count("Organic Materials", 5) && $money >= 2000 && $bikers_war == true>>\
<<link "Spike their alcohol" "Whiteboard">>\
<<drop $warehouse_inv "Moonshine Shipment" 2>>\
<<drop $p_craft "Organic Materials" 5>>\
<<money `-2000`>>\
<<set $sabo_active = true>>\
<<set $sabo_type = "bikers_spike">>\
<</link>>\
- bribe the person responsible for the bikers' club supplies and push your spiked goods onto them. Reduces biker's strenght by 900.
Requiremens: ''Chemist, 2 moonshine shipments, 5 organic materials and 2000$.''
<<else>>\
Spike their alcohol - bribe the person responsible for the bikers' club supplies and push your spiked goods onto them. Reduces biker's strenght by 900.
Requiremens: ''Chemist, 2 moonshine shipments, 5 organic materials and 2000$.''
<</if>>\
<</message>>
<</message>>\<<silently>>\
<<set $gangs_str -= 100>>
<<set _earnings = random(1000, 2500)>>
<<set $reputation += 60>>
<</silently>>\
<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/marketplace.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
You won the fight with the racketeer. What once belonged to the gang now belongs to you - _earnings​$ to be exact. This victory is sure to put a dent in the Gangs rep in Downtown.
<<link "Got it." "Downtown">>
<<money `_earnings`>>\
<</link>>\<<silently>>
<<set $gangs_str += 100>>
<<set $reputation -= 50>>
<</silently>>\
<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/marketplace.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
The racketeer landed the final blow, and you raised your hands in surrender. You… lost. It happens, even to the best. Recognizing the situation, you made the smartest move - getting the hell out of here. After a defeat like that, you’ll need to lay low and rest for the day. Unfortunately, the Gangs managed to uphold their reputation this time.
<<link "Sigh." "Home">>\
<<set $stam = 0>>\
<<if $gameDate.getHours() >= 8>>\
<<adddays 1>>\
<<set $gameDate.setHours(3)>>\
<<else>>\
<<set $gameDate.setHours(3)>>\
<</if>>\
<</link>>\<style>
body::before {
content: '';
background-image: url("img/background/events/burglars.webp");
inset: 0;
position: fixed;
background-size: cover;
filter:grayscale(90%);
}
</style>\
Night falls over your territory. Tonight is a thief, bold enough - or foolish enough - gonna test your defenses. You’ve turned the situation to your advantage by setting an ambush. Every light in the house is off, full illusion of an easy target. But you need to carefully choose your approach.
<<combat_link>><<link "Hit em first." "Burglar Fight">><</link>><</combat_link>>
<<charm_link>><<link "Seduce the thief." "Burglar Quickie">><</link>><</charm_link>>
<<if $band_strength >= 10000>>
<<link "Call your crew." "Burglar Crew">>
<</link>>\
<<elseif $p_boss == true && $band_strength < 5000>>\
<span class="not_available">You don't have enough people to guard your house for a whole night, sadly.</span>
<</if>>\<style>
body::before {
content: '';
background-image: url("img/background/events/burglars.webp");
inset: 0;
position: fixed;
background-size: cover;
filter:grayscale(90%);
}
</style>\
<<burglar_encounter>>\
<center><<enemy_status>>
<span id="enemy_log">Violence it is. Timing is everything. You waited until midnight, then heard the unmistakable sound of someone breaking into your house. You've stepped into the light with confidence, <span class="combat_text">"You've choose the wrong neighbourhood, fucker!"</span>, you yelled at thief.</span>\
<<enemy_intentions>>\
<span id="p_log"></span>\
</center>\
<<melee_attack>>\
<<silently>>\
<<if $enemy_hp <= 0>>
<<melee_success>>\
<<combat_reset>>
<<goto "Burglar Win">>
<</if>>
<<if $p_hp <= 0>>
<<melee_fail>>\
<<combat_reset>>
<<goto "Burglar Lose">>
<</if>>
<</silently>>\<<silently>>\
<<pickup $p_melee "Crowbar" 1>>
<<set _random_roll = random(7, 30)>>
<<pickup $p_inv "Lockpick" _random_roll>>
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/background/events/burglars.webp");
inset: 0;
position: fixed;
background-size: cover;
filter:grayscale(90%);
}
</style>\
<center>\
Instead of taking matters into your own hands, you just signal your crew, who have been scattered around your turf. Within moments, the air fills with the sound of heavy boots. The thief barely has time to realize their mistake before your gang swarms in, overpowering them effortlessly.
You stand back, arms crossed, watching as they drag the intruder out into the night. Justice, swift and brutal, delivered on your command. Thiefs are not gonna bother you now.
Loot: _random_roll lockpicks and crowbar
<<link "Time to sleep without worrying about anything." "NewDay">>
<<set $gameDate.setHours(8)>>
<<set $gameDate.setMinutes(0)>>
<</link>>\
</center>\<<silently>>\
<<set _media_sex = $intruder_sex.random()>>\
<<set _dirtytalk = $intruder_dt.random()>>\
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/background/events/burglars.webp");
inset: 0;
position: fixed;
background-size: cover;
filter:grayscale(90%);
}
</style>\
<center>\
You decide to take a different approach. You waited until midnight, then heard the unmistakable sound of someone breaking into your house. You've stepped into the light with deliberate grace, you let your voice cut through the silence. <span class="charm">"Looking for something... or someone?"</span> you purr. The thief freezes, their surprise plain. Instead of a trap, they’ve walked into temptation itself.
With every word, every movement, you weave a web, drawing them closer. The air grows heavy with tension, and the power shifts entirely to your hands.
<<linkappend "...">>
And all of this prelude just for a very rough time...
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
<span class="male_text">- "_dirtytalk"</span>
After all, he was satisfied and left you with promise to never come back.
<<link "Time to get really deep sleep, you've been fucked silly tonight." "NewDay">>
<<set $gameDate.setHours(8)>>
<<set $gameDate.setMinutes(0)>>
<</link>>\
<</linkappend>>\
</center>\<<silently>>\
<<pickup $p_melee "Crowbar" 1>>
<<set _random_roll = random(7, 30)>>
<<pickup $p_inv "Lockpick" _random_roll>>
<<set $reputation += 50>>\
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/background/events/burglars.webp");
inset: 0;
position: fixed;
background-size: cover;
filter:grayscale(90%);
}
</style>\
<center>\
The battle was fierce, but your skill and resolve won out. The thief, battered and defeated, scrambled to escape into the night. As they fled, their final words echoed in desperation: a promise never to return. Your home remains secure, and your dominance unshaken.
You've got his crowbar and _random_roll lockpicks!
<<link "Time to sleep without worrying about anything." "NewDay">>
<<set $gameDate.setHours(8)>>
<<set $gameDate.setMinutes(0)>>
<</link>>\
</center>\<<silently>>\
<<set $reputation -= 150>>\
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/background/events/burglars.webp");
inset: 0;
position: fixed;
background-size: cover;
filter:grayscale(90%);
}
</style>\
<center>\
The fight didn’t go as planned. The thief was faster, stronger, or just luckier. Left bruised and cornered in your own home, you had no choice but to call the police by using quick call on your phone - a humiliating act for someone in your position. Thief smirked at you and left your house, well, atleast something good from all of this...
<<link "Time to sleep..." "NewDay">>
<<set $gameDate.setHours(8)>>
<<set $gameDate.setMinutes(0)>>
<</link>>\
</center>\<<silently>>\
<<set _media_bj = $ffm_bj.random()>>
<<set _media_sex = $ffm_sex.random()>>
<</silently>>\
<style>
body.harbor::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/harbor/brothel.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center>\
You wanted to have some fun with your new friend and a brothel's whore, and you got it. Money well spent.
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
The whore knew her craft well, but you had no intention of letting her surpass you.
<<linkappend "Proceed.">>
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
Let’s just say, all of you left a lasting impression on each other, and you and your new acquaintance exchanged numbers.
<<link "Nice." "Brothel">>\
<<addhours 1>>\
<</link>>\
<</linkappend>>\
</center>\<<silently>>
<<if $enemy == false>>
<<set $enemy_hp = 45>>
<<set $enemy_hp_max = $enemy_hp>>
<<set $enemy_combat = 6>>
<<set $enemy_name = "Slick Trick (and occasionally his friends)">>
<<set $enemy_skill = "gangs_roulette">>
<<set $enemy = true>>
<</if>>
<</silently>>\
<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/gangsleaders.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center><<enemy_status>>
<span id="enemy_log">Only one thug is gonna walk away from this alley today.</span>\
<<enemy_intentions_boss>>\
<span id="p_log"></span>\
</center>\
<<melee_attack>>\
<<silently>>\
<<if $enemy_hp <= 0>>
<<melee_success>>\
<<combat_reset>>
<<goto "Gangs Leaders Win">>
<</if>>
<<if $p_hp <= 0>>
<<melee_fail>>\
<<combat_reset>>
<<goto "Gangs Leaders Lose">>
<</if>>
<</silently>>\<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/gangsleaders.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Slick Trick staggers back, his breaths ragged and his knife slipping from his grasp. He glares but knows he’s beaten. Biggie shakes his head with a chuckle, stepping forward.
<span class="biggie">- "Well, guess you proved it. Downtown’s yours now, no argument here. And don’t worry, you’ll get your cut - we’ll make sure of that.”</span>
Sub-Dizzy nods silently, taking a slow drag as if to seal the deal. Slick finally grits his teeth and mutters,
<span class="slick_trick">- “Alright, you’ve got us. From now on, we’re proud to run as $band_name - and we’ll pay up like everyone else. Boss.”</span>
<<link "That's right." "Home">>
<<set $gangs_racketeer = false>>\
<<set $gangs_war = false>>\
<<set $downtown_state = true>>\
<<set $band_war_progress = 0>>\
<<set $reputation += 1000>>\
<<addhours 3>>\
<</link>>\<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/gangsleaders.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Slick Trick stands over you, triumphant and sneering, his knife spinning deftly in his hand. “See? Told ya this one wasn’t worth it,” he jeers, shooting a mocking glance at Biggie and Sub-Dizzy. “You two were ready to bow? Pathetic.”
Biggie shrugs awkwardly, avoiding your gaze, while Sub-Dizzy simply exhales a puff of smoke, his silence heavy with disappointment.
Slick leans closer, a sly grin spreading across his face. “Now, look at you. Weak, beaten. Guess that means I get to decide what happens next. And you, guys, should leave us.” His tone drips with suggestion, a chilling edge that makes his intentions unmistakable.
So, you can...<<link "call in your crew and run away" "Home">>
<<set $band_war_progress = 0>>\
<<set $reputation -= 500>>\
<<morale `-20`>>\
<<addhours 2>>\
<<set $gangs_str += 500>>\
<</link>>
or <<charm_link>><<link "see what he's up to..." "Slick Trick Quickie">>
<<set $band_war_progress = 0>>\
<<set $reputation -= 500>>\
<<morale `-20`>>\
<<addhours 1>>\
<<set $gangs_str += 500>>\
<</link>><</charm_link>> it'll probably cost you your reputation even more...<<silently>>
<<if $enemy == false>>
<<set $enemy_hp = 35>>
<<set $enemy_hp_max = $enemy_hp>>
<<set $enemy_combat = 7>>
<<set $enemy_name = "Alfa Romano">>
<<set $enemy_skill = "alfas_deck">>
<<set $enemy = true>>
<</if>>
<</silently>>\
<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/romanosuburbs.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center><<enemy_status>>
<span id="enemy_log">Time to see who's gonna wield a crown... for now.</span>\
<<enemy_intentions_boss>>\
<span id="p_log"></span>\
</center>\
<<melee_attack>>\
<<silently>>\
<<if $enemy_hp <= 0>>
<<melee_success>>\
<<combat_reset>>
<<goto "Mafia Leader Win">>
<</if>>
<<if $p_hp <= 0>>
<<melee_fail>>\
<<combat_reset>>
<<goto "Mafia Leader Lose">>
<</if>>
<</silently>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/romanosuburbs.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<span class="romano">“Alright, alright, cara mia, you win!”</span> he says with a dramatic sigh, raising his hands in mock surrender. <span class="romano">“From now on, the Suburbs - and my whole business - are yours. I’ll report to you, give you your cut, and keep things running smoothly. Capisce?”</span>
He straightens his tie and winks. <span class="romano">“Besides, it’s not so bad working for someone with your... determination. Maybe this old dog can learn some new tricks, eh?”</span> His charm now feels genuine, his tone warm and oddly eager to please as he adds, <span class="romano">“You can count on me, boss. Together, we’ll make a fortune - bellissimo! Also, if you didn't knew already about my little underground ring in gym and cars business in auto center - i'm willing to lay everything out to you!”</span>
<<link "That's right." "Home">>
<<set $mafia_wreck = false>>\
<<set $mafia_war = false>>\
<<set $suburbs_state = true>>\
<<set $band_war_progress = 0>>\
<<set $reputation += 1500>>\
<<set $autoshop_information = true>>\
<<set $ring_information = true>>\
<<addhours 3>>\
<</link>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/romanosuburbs.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Alfa Romano adjusts his jacket with a theatrical flourish, barely winded from the fight. He looks down at you with a mix of amusement and mild disappointment, shaking his head slowly.
<span class="romano">- “Ah, bella mia, I expected more from someone so bold,”</span> he says, his voice almost pitying. <span class="romano">“But don’t take it too hard. Even the best of us have our... off days.”</span>
He gestures towards the door with a sweep of his hand, a faint smile lingering on his lips. <span class="romano">“Now, do me a favor and leave my home before things get... awkward. No hard feelings, eh? Let’s call it a lesson in knowing your limits.”</span>
Romano chuckles lightly, turning his attention back to his desk as though you were nothing more than a fleeting distraction. <span class="romano">“Next time, come prepared - or don’t come at all.”</span>
<<link "Sigh." "Home">>
<<set $band_war_progress = 0>>\
<<set $reputation -= 500>>\
<<addhours 2>>\
<<morale `-20`>>\
<<set $mafia_str += 500>>\
<</link>>\<<silently>>
<<if $enemy == false>>
<<set $enemy_hp = 50>>
<<set $enemy_hp_max = $enemy_hp>>
<<set $enemy_combat = 9>>
<<set $enemy_name = "Volkov">>
<<set $enemy_skill = "volkovs_money_throw">>
<<set $enemy = true>>
<</if>>
<</silently>>\
<center><<enemy_status>>
<span id="enemy_log">This city is too big for you two.</span>\
<<enemy_intentions_boss>>\
<span id="p_log"></span>\
</center>\
<<melee_attack>>\
<<silently>>\
<<if $enemy_hp <= 0>>
<<melee_success>>\
<<combat_reset>>
<<goto "Bikers Leader Win">>
<</if>>
<<if $p_hp <= 0>>
<<melee_fail>>\
<<combat_reset>>
<<goto "Bikers Leader Lose">>
<</if>>
<</silently>>\Volkov slumped back against the wall, his breaths heavy and labored. He raised his hands, palms out, in a gesture of surrender. For a moment, he studied you, his sharp eyes betraying a mix of grudging respect and frustration.
- “Okay, okay,” he muttered. “You boss now. Me works for you.” He gave a slow nod, his lips twitching into a faint, crooked grin. “We make money... big money.”
He straightened himself with effort, brushing off his jacket as if nothing had happened. “Boss,” he repeated, the word tasting unfamiliar in his mouth. “You say, I do. You bring cash, I bring... solution.”
<<link "That's right." "Home">>
<<set $bikers_war = false>>\
<<set $outskirts_state = true>>\
<<set $reputation += 2000>>\
<<set $band_war_progress = 0>>\
<<addhours 3>>\
<</link>>\The fight ended with you sprawled on the floor, aching and out of breath. Volkov towered over you, not even winded, brushing dust from his jacket with a smug look.
- “Not strong enough,” he said simply, shaking his head. “Come back... only for business. Bring cash. Nothing else.”
At his nod, a few of his bikers stepped forward, hauling you to your feet and escorting you out of The Fringe Club. The door slammed shut behind you, the muffled sounds of laughter and clinking glasses reminding you of the fight lost.
<<link "Sigh." "Home">>
<<set $band_war_progress = 0>>\
<<set $reputation -= 500>>\
<<morale `-20`>>\
<<addhours 3>>\
<<set $bikers_str += 500>>\
<</link>>\<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/gangsleaders.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Time to settle this. You've made a call to the gang leaders and offered them a truce... on the condition that they fold into your empire.
Biggie chuckles, the sound heavy and sluggish.
<span class="biggie">- “Oh, you wanna ‘settle it,' huh? Gotta say, you got guts callin’ us. But you know, we don’t just roll over for anyone.”</span>
A sharper voice cuts in, Slick Trick’s tone practically dripping with mockery.
<span class="slick_trick">- “What Biggie’s tryin’ to say is… you wanna play boss? Fine. But you better show you’re worth our time. Sure, maybe your gang’s stronger than ours, but we ain’t lettin’ some punk waltz in and take what’s ours.”</span>
A faint sound of someone exhaling deeply - Sub-Dizzy’s silent acknowledgment of the conversation.
Biggie sighs, clearly uninterested in prolonging the conversation.
<span class="biggie">- “Alright, alright. We’ll humor you. Meet us on our turf, same place as always. Don’t worry - we ain’t lookin’ to jump you... in all strenghts. But… if you wanna call the shots, you’re gonna have to earn it.”</span>
<<linkappend "Proceed to their HQ.">>
You went to their HQ without any problems, no one stopped you. You took some goons with you just in case. $right_hand.nickname is gonna cover you and jump in the moment you give a signal if something goes wrong.
Biggie leans against a shabby coach, Sub-Dizzy smokes silently, and Slick Trick paces with his knife in hand.
Biggie gives you a lazy wave.
<span class="biggie">- “You showed up. Gotta respect that. Your crew’s tougher - no point fighting the obvious. I’m in.”</span>
Sub-Dizzy nods slightly, his agreement clear.
Slick Trick steps forward, knife gleaming.
<span class="slick_trick">- “Speak for yourself, Biggie. I’m not bowing down without a fight. You wanna lead us? Prove you’ve got the guts.”</span>
<<combat_link>><<link "So be it." "CombatGangsLeaders">>
<</link>><</combat_link>>\
<</linkappend>>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/romanosuburbs.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
The Suburbs have been a thorn in your side for... long enough. With the Romano mafia clearly weaker than your $band_type, you decide it’s time to end this once and for all.
Their estate is eerily quiet as you approach, flanked by your goons. Only a handful of people make any attempt to stop you, mostly verbally, and even Brody waves casually from his garage, as though he couldn’t care less. The Romano mafia is no longer the main power here - and they know it.
Inside the mansion, you find Alfa Romano seated in his opulent office, behind a grand desk cluttered with casino chips and playing cards. As you enter, his gaze shifts from surprise to a broad, almost disarming smile, as if you’d never had any beef with him.
You lay out a simple ultimatum: surrender and work under your organization, or be cast aside entirely.
<span class="romano">- “You mean... I just hand over a share of my bellissima business to you? Just like that?”</span> He chuckles, shaking his head like it’s the punchline to a private joke.
But then his hand lingers near the blackjack deck, his grin turning sharp. <span class="romano">“Well, if you think you’re taking my crown without a little spettacolo, think again!”</span> With a sudden burst of energy, <<combat_link>><<link "he flips the table," "CombatMafiaLeader">><</link>><</combat_link>> chips flying everywhere, and lunges at you with the theatrical flair of a man who refuses to bow quietly.Enough was enough. You pulled up to The Fringe Club, their hangout, ready to settle things once and for all.
Inside, the place was loud and rowdy, but nobody stopped you as you made your way straight to the back, where Volkov sat hunched over a table.
<span class="volkov">- “You got money?”</span> he asked, not even bothering with a greeting
You sit, laying out your offer: a partnership that would make him richer than he’s ever dreamed. His eyes narrow, the mention of wealth sparking a glint of interest, but his response is slow, deliberate. <span class="volkov">“Hmm... money is good. But...”</span> He shakes his head, his hand slicing the air.</span class="volkov"> “No boss. Volkov is boss.”</span>
You press further, but his gaze sharpens, his tone growing firm. <span class="volkov">“You don’t listen.”</span> He picks up a bullet, rolling it between his fingers. <span class="volkov">“No deal. No partner. Go.”</span>
It was clear he wasn’t going to budge. If words wouldn’t work, you’d have to <<combat_link>><<link "settle this the hard way." "CombatBikersLeader">><</link>><</combat_link>><style>
body.downtown::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/downtown/gangsleaders.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<set _media = $slick_trick_sex.random()>>\
<<set _media_creampie = $creampie_anal.random()>>\
<center>\
<<anal_whore_progress>>\
Without any hesitation he took you from behind. It was quick, dirty, and quite rough sex.
<video @src="_media" autoplay loop muted controls width="600" height="350"></video>
<span class="slick_trick">- "You should know your place... for now, atleast. I have to say, i was ready to be yielded to your gang too. But it was worth it after all."</span>
Your moans fully approves this statement. It's quite shameful, probably whole HQ of Gangs hears it...
<<linkappend "...">>
<video @src="_media_creampie" autoplay loop muted controls width="600" height="350"></video>
<span class="slick_trick">- "No biggie, slut? Got it, huh? I'm pretty sure you wouldn't allow me do it to you if you didn't wanted it, ha! Now get out of here."</span>
He didn't let you to take a breather and pushed you out of the room and left you a goodbay slap on the ass.
<<link "Sigh." "Home">>
<<addhours 1>>\
<<if $boss_type != "Slut Boss">>\
<<set $reputation -= 200>>\
<</if>>\
<</link>>\
<</linkappend>>\
</center>\<style>
body::before {
content: '';
background-image: url("img/background/events/prologue.webp");
inset: 0;
position: fixed;
filter:grayscale(100%);
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<<if $last_crime == "Burglary">>
<span class="male_text">- "Burglary, huh? Well, you can keep the tools we found on you. But nothing else."</span>
<<elseif $last_crime == "Grand Theft Auto">>
<span class="male_text">- "The car you stole belongs to a gang member. And honestly, I fucking hate that guy. So, consider this car a little present from us - it’ll be parked near your new home."</span>
<<elseif $last_crime == "Pimping">>
<span class="male_text">- "You’ve made some good profit working as a pimp. That’s why your father wants you to keep… one thousand bucks. Yeah, don’t give me that look - we’re just following his orders."</span>
<<elseif $last_crime == "Den">>
<span class="male_text">- "Take whatever you tried to sell to those poor bastards. We need to make you disappear anyway."</span>
<<elseif $last_crime == "Armed Robbery">>
<span class="male_text">- "Shame you chose this path when you had so many options... Well, whatever. I guess you can keep your knife - it’ll come in handy soon enough."</span>
<<elseif $last_crime == "Underground Fight">>
<span class="male_text">- "Your previous antics are probably the reason for this farce. I hope you learned a thing or two while you were there, because it’ll be very useful very soon."</span>
<</if>>\
The other agent leans forward, his tone sharper now. - <span class="male_text">"So, about our warning, you're going to thaaat city, y'know, $city_name."</span>
They pause for a moment, letting the weight of the name sink in. Everything that you know about this city is that its full of gangs, power struggles, and violence, and has no real order. Tortuga of modern world. Your father was talking about it with his partners in crime, and, if you remember correctly, they wanted to add it to their empire. So, it is how he decided to do it...?
<span class="male_text">- "Have you heard about a huge police crackdown that happened three months ago in $city_name?"</span> - one of the agents broke the silence. You shook your head.<span class="male_text"> - "Basically, one raid changed everything. Gangs were fractured, businesses shut down, prison cells are overflowing. This is a free real estate right now. And someone from your family, you know, someone who SAVES you all the time, wants you to prove yourself. And he says that you're ready for that. But i'll be honest, odds are against you."</span> - He pauses, giving you a pointed look.
<span class="male_text">- "And now, you’re going to be thrown into that mess. Your job? Setup your own gang in $city_name. Restore some kind of control. Or at least the money flow. The methods are up to you. No one will judge, do whatever it takes. We'll assist you if you get yourself in trouble, police chief of $city_name is our guy. And you'll getting yourself your very own apartments... in a basement. Any questions?"</span>
<<message "Other gangs?">>
<span class="male_text">- "There are still four gangs in $city_name. This number used to be seven, but three of them merged into one strong organization simply called ''The Gangs''. Their main sources of income are racketeering and burglary. They control the Old Downtown, the previous city center, but right now, it’s more of a ghetto. The police didn’t stop at just finishing the crackdown - they secured a federal grant and brought in private investors to create a new, fortified city center. They took over what used to be a residential district, cleaned it up, and turned it into a haven for law-abiding citizens."
- "Then there’s the ''Mafia''. Not the real one, obviously, just some poseurs. They mainly deal with stolen cars, and there are rumors about an underground fight ring under their control. Their area of operation is in the suburbs of $city_name."
- "And then there are the ''Bikers'' and the ''Cartel''. We don’t know much about the bikers, other than that they work as couriers and transport stuff around. They also deal in weapons, selling to literally anyone. It’s a big mystery to me why we haven’t shut them down already. As for the Cartel... The ''Cartel'' isn’t a local gang, not by a long shot. You know about the Cartel, right? The Cartel is a major trading organization that acts as an intermediary between sellers and buyers. Most likely, they’re interested in the city itself, which is why they have a representative here. The Cartel isn’t your problem. Do not, I repeat, do not do anything foolish with them."</span>
<</message>>
<<message "How can i get some money?">>
<span class="male_text">- "Do whatever you can. I’m pretty sure you know the drill. Start with something small, but we’re not gonna teach you how to make money illegally. Just be mindful of how you get your cash - if it’s dirty money, clean it before using it, or the IRS will come after you, and we won’t be able to save you in that case. You can launder your money by funneling it into legal enterprises... That’s all I’m gonna say."</span>
<</message>>
<<message "How do i organize my own gang?">>
<span class="male_text">- "Your father asked himself this question in his time, which is why he asked us to leave you a whiteboard with some tasks to help set you up. It’ll be at your place."</span>
<</message>>
<<message "What do you recommend me to do first?">>
<span class="male_text">- "Build your reputation and your wealth. Everything you do will affect your rep. Also, try to meet all the important people in the city first, just to know what your options are. Probably its wise to start from the Old Downtown."</span>
<</message>>
<<link "No questions." "CharGen3">>
<</link>>\You’ve been a naughty girl, playing with fire, smoking, playing with knives... Not everyone in your family approved of your behavior, but it wasn’t reprehensible in such circles. +1 <span class="combat_text">combat</span>.No one in your circle of friends had any doubt that you were the boss. Most of your friends are from other families tied to criminal, and being their leader is in your blood. +1 <span class="charm">charm</span>.You always have been trying to get your nose into family business, even though adults do not allowed you to do so. But because of that you know something about things that are better to keep secret. +1 <span class="cun">cunning</span>.Assaulting people with knives and various sports equipment is your way of doing business. You know how to collect money from debtors, and it was your first duty for your father’s empire. You’re not joking, and people around you should know that. +1 <span class="combat_text">combat</span>. You had access to one of the biggest treasuries in the world, but you wanted to build your own treasure trove. Your first theft was pretty petty, but you tasted the thrill and excitement. It’s almost like a gambling addiction when you’re opening a new wallet, and you’re still a long way from your "one last score." +1 <span class="cun">cunning</span>.You’ve been seducing people for your own pleasure and wealth. Manipulation, fraud, framing - it’s all part of your arsenal. It’s quite easy to seduce people when your father is a crime lord and you’re quite pretty yourself. +1 <span class="charm">charm</span>.You’ve been caught for burglary. Your target was a wealthy house in a posh district. Even though you knew how to deal with home security systems and how to distract a dog, you got busted. +2 <span class="cun">cunning</span> and 5 lockpicks. Each lockpick allows you to enter a house.You’ve stolen a car. It wasn’t the greatest ride, and it’s definitely not worth a prison term, but you’ve been experimenting, trying out different thievery techniques. Who knew it was so easy to track a car, even after a plate and color change? +2 <span class="cun">cunning</span> and car. The car unlocks fast travel.You’ve organized a drug distribution den. Everything went smoothly - you got rid of the squatters in a shady project in the ghetto, convinced some family contacts to prepare the drug supplies, and even hired a few muscle, but you can't trust desperate drug addicts. One day, they just turned you in to the police. +1 <span class="charm">charm</span>, +1 <span class="cun">cunning</span>, 50 drugs right from the start. You can distribute it on various streets and locations.You’ve been doing business behind your father’s back. Well, it’s hard to call your deals very enterprise-like; you’ve been robbing people in shady alleys and setting toll prices in “bad” districts. It was bound to end like this one day, anyway. +2 <span class="combat_text">combat</span> and butterfly knife right from the start. The butterfly knife is a good weapon for any kind of situations. You’ve been a ma for some girls under the protection of your father’s organization, so your role was simply to find clients for them. And it wasn’t easy. You had to deal with hysterics, rude and hesitant clients, and handle the various consequences. One of the dissatisfied clients turned you in to the police. +2 <span class="charm">charm</span>, <span class="money_text">1000$</span> right from the start.You’ve been a pit fighter. Your new hobby really annoys your family, but you don’t care at all. You wouldn’t be surprised if it was your father who told the cops to raid your underground ring. +2 <span class="combat_text">combat</span>, first combat trait right from the start, allowing you to use a unique ability in combat.<style>
body::before {
content: '';
background-image: url("img/background/events/prologue_2.webp");
inset: 0;
position: fixed;
filter:grayscale(80%);
background-size: cover;
}
</style>\
You were transported to the outskirts of the city through a variety of routes, each more discrete than the last. The agents made sure to keep their distance, ensuring no one followed you. By the time you reached the border of the city, the car you were in had already passed through several police checkpoints.
The car stopped in front of an unremarkable house. The agents let the engine idle for a moment, then one of them turned to you with a stern expression.
- "This is it. You’ll find your place here for now. Keep a low profile. And don’t forget about the whiteboard inside the house - it’s important. If you need any more advices - ''use a red phone'', it should be somewhere in the house."
You nodded, the weight of the situation settling in as the door was opened for you. With one last look at the agents, you stepped out into the crumbling neighborhood. The city loomed ahead, still a chaotic mess, but now, it was <<link "yours to control." "Home">><<moneynoreplace `200`>><<set $game_state = 1>><</link>>\<span class="fem_text">- "Allo. 'Renovation and Stuff' on the line."</span>
You ask about the construction work this agency is doing at the mall.
<<if $reputation < 5000>>\
<span class="fem_text">- "Who the fuck are you to ask those questions? Some big shot, hmmmm? Don’t stick your nose in someone else’s business."</span> Then they drop the call. Rude.
<<link "Whatever.">>
<<script>>
Dialog.close();
<</script>>
<</link>>\
<<elseif $brand_clothing_construction == true>>\
<span class="fem_text">- "Mam, i told you that it'll be finished by tomorrow."</span>
<<link "Ok. Nice.">>
<<script>>
Dialog.close();
<</script>>
<</link>>\
<<elseif $reputation >= 5000>>\
<<set $brand_clothing_construction = true>>\
<span class="fem_text">- "Oh, I recognize your voice! Sure, ma'am, we're almost done with the construction work. It'll be ready... I think, by tomorrow. Sorry for the inconvenience!"</span>
<<link "Nice.">>
<<script>>
Dialog.close();
<</script>>
<<run Engine.show()>>\
<</link>>\
<</if>>\<span class="fem_text">- "Allo. 'Renovation and Stuff' on the line."</span>
That's... surprising, you've expected some private person to be on the phone but whatever. You inquired about the nightclub building that's up for rent.
<<if $reputation < 10000 && $p_boss == false>>\
<span class="fem_text">- "This is not up for discussion. The sign wasn’t meant for you. When you become some... i don't know, rogue boss, then give us a call."</span> Then they drop the call. Rude.
<<link "Whatever.">>
<<script>>
Dialog.close();
<</script>>
<</link>>\
<<else>>\
<span class="fem_text">- "Hello! Glad to hear someone is finally interested in this, uh, gem of a venue. Its prime location is sure to attract plenty of clients and yada-yada-yada. You can find in there storage rooms, underground parking, a fully equipped bar, functioning nighttime lighting and other thingies you need to run this place, you know the drill. As a bonus, we can setup you with stuff from our contacts. Price: 150000$ as a pledge and 500$ everyday for rent. Our courier can deliver the necessary documents at your convenience."</span>
<<if $money >= 150000>>\
<<link "Send me your courier already.">>
<<money `-150000`>>\
<<set $night_club = true>>\
<<run $band_events.push("nc_dealer")>>\
<<set $nc_tax = 500>>\
<<set $nc_pop_raise = 1>>\
<<set $nc_pop = 5>>\
<<set $reputation += 1000>>\
<<script>>
Dialog.close();
<</script>>
<<run Engine.show()>>\
<</link>>\
<br>\
<<else>>\
<span class="not_available"> You don't have enough money.</span>
<</if>>\
<<link "Drop the line.">>
<<script>>
Dialog.close();
<</script>>
<</link>>\
<</if>>\Bass thunders through the walls, lights dance across the floor, and the crowd pulses with energy. Yours gang members mix seamlessly with the partygoers, keeping the vibe alive. Spotlights sweep over the VIP booths above, place for your trusted lieutenants. It’s chaos, it’s control, and it’s all under your roof. <<if $nc_stripper_poles == true>>Poles glint under neon lights with dancers spinning effortlessly, adding a touch of allure to your club.<</if>>\
<<if $nc_pop < 15>>\
But right now, it feels like a secret only a few have discovered.
<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-lowpop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<elseif $nc_pop >= 15 && $nc_pop < 60>>\
The word’s out, and the place is steadily building a reputation.
<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-midpop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<else>>\
The city knows this is the place to be, and everyone wants in.
<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-highpop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<</if>>\
<<if !$gameDate.getHours() >= 20 || !$gameDate.getHours() <= 3>>\
It's not a prime time right now for a such place, there's only a few people here and there.
<<else>>\
It's a prime time right now. Club is crowded with people.
<</if>>\
<<action_link>><<link "Enjoy the atmopshere" "NightClub Talks">><<addmins 30>><</link>><</action_link>>
<<if $nc_stripper_poles == true && $nc_striptease_cd == 0>>\
<<action_link>><<link "Get on the stripper pole" "Striptease NC">>
<</link>><</action_link>>
<</if>>\
<<if $nc_stripper_poles == true && $nc_striptease_cd > 0>>\
<<link "Get on the stripper pole" "Striptease NC">>
<</link>>\
- but you won't get a popularity boost, it's better to wait atleast for $nc_striptease_cd more d.
<</if>>\
<<in_link>><<link "Your cabinet." "NightClub Info">>
<</link>><</in_link>>
<<if $downtown_state == true>>\
<<link "Biggie, Slick Trick and Sub-Dizzy" "Gangs Leaders NC">>
<</link>>
<</if>>\
<<if $suburbs_state == true>>\
<<link "Alfa Romano" "Mafia Leader NC">>
<</link>>
<</if>>\
<<if $outskirts_state == true>>\
<<link "Volkov" "Bikers Leader NC">>
<</link>>
<</if>>\
<<out_link>><<link "Get back to the main street of City Center" "City Center">>
<</link>><</out_link>><<widget "nc_calculations">>\
<<silently>>/
<<set $nc_pop_raise = 0>>
/* POPULARITY PENALTIES */
<<if $nc_pop >= 0 && $nc_pop < 20>>
<<set $nc_pop_raise = 1>>
<<elseif $nc_pop >= 20 && $nc_pop < 50>>
<<set $nc_pop_raise = 0>>
<<elseif $nc_pop >= 50 && $nc_pop < 75>>
<<set $nc_pop_raise = -1>>
<<elseif $nc_pop >= 75>>
<<set $nc_pop_raise = -2>>
<</if>>
/* ENTRANCE PRICE */
<<if $nc_entrance_price == 5>>
<<set $nc_pop_raise += 1>>
<<elseif $nc_entrance_price == 15>>
<<set $nc_pop_raise -= 1>>
<</if>>
/* DRINKS */
<<set $nc_capacity_drinks_use = $nc_pop * 5>>
<<if $nc_capacity_drinks < $nc_capacity_drinks_use>>
<<set $nc_pop_raise -= 1>>
<</if>>
/* DRUGS */
<<if $nc_backrooms_deals == true>>
<<set $nc_capacity_drugs_use = $nc_pop * 4>>
<<if $nc_capacity_drugs > $nc_capacity_drugs_use>>
<<set $nc_pop_raise += 1>>
<</if>>
<</if>>
/* RISKS */
<<set $nc_risks = ($nc_pop * 3)>>
<<set _risk_effect = ($nc_risks / 100) * $nc_risk_percentage_mod>>
<<set $nc_risks -= _risk_effect>>
<<set $nc_risks = Math.trunc($nc_risks)>>
/* MAINTENANCE */
<<set $nc_tax = 500 + $nc_tax_upgrades>>
<<set $nc_tax += 200 * $nc_drinks_autobuy>>
/* INCOME */
<<if $nc_capacity_drinks < $nc_capacity_drinks_use>>
<<set $nc_income = ($nc_entrance_price * $nc_pop) * 5>>\
<<else>>
<<set $nc_income = ($nc_entrance_price * $nc_pop) + (50 * $nc_pop)>>\
<</if>>
<<if $nc_capacity_drugs > $nc_capacity_drugs_use && $nc_backrooms_deals == true>>
<<set $nc_income += $nc_capacity_drugs_use * 12>>
<</if>>
<<if $nc_drugdealer_event == true>>
<<set _nc_drugdealer_toll = random(150, 300)>>
<<set $nc_income += _nc_drugdealer_toll>>
<</if>>
<<set $nc_laundry = (100 * $nc_pop) + $nc_laundry_mod>>\
/* INCOME OSCILLATION */
<<if $nc_income < 500>>
<<set $nc_oscillation = random(0, 200)>>
<<elseif $nc_income < 1000>>
<<set $nc_oscillation = random(-300, 300)>>
<<elseif $nc_income < 2000>>
<<set $nc_oscillation = random(-600, 600)>>
<<elseif $nc_income < 4000>>
<<set $nc_oscillation = random(-1000, 1000)>>
<<elseif $nc_income < 8000>>
<<set $nc_oscillation = random(-2000, 2000)>>
<<elseif $nc_income >= 8000>>
<<set $nc_oscillation = random(-3000, 3000)>>
<</if>>
/* THINGS FROM UPGRADES */
<<if $nc_stripper_poles == true>>
<<set $nc_pop_raise += 1>>
<</if>>
<</silently>>\
<</widget>>\
<<widget "change_entrance_price">>\
<<if $nc_entrance_price == 5>>\
<<link "+" "NightClub Info">>
<<set $nc_entrance_price = 10>>\
<</link>>\
<<elseif $nc_entrance_price == 10>>\
<<link "+" "NightClub Info">>
<<set $nc_entrance_price = 15>>\
<</link>>\
<<link "-" "NightClub Info">>
<<set $nc_entrance_price = 5>>\
<</link>>\
<<elseif $nc_entrance_price == 15>>\
<<link "-" "NightClub Info">>
<<set $nc_entrance_price = 10>>\
<</link>>\
<</if>>\
<</widget>>\
<<widget "change_drinks_autobuy">>\
<<link "+" "NightClub Info">>\
<<set $nc_drinks_autobuy += 1>>\
<</link>>\
<<link "-" "NightClub Info">>\
<<set $nc_drinks_autobuy -= 1>>\
<</link>>\
<</widget>>\
<<widget "change_lab_percentage">>\
<<if $nc_lab_percentage >= 0 && $nc_lab_percentage <= 95>>\
<<link "+">>\
<<set $nc_lab_percentage += 5>>\
<<run Engine.show()>>\
<</link>>\
<</if>>\
<<if $nc_lab_percentage >= 5 && $nc_lab_percentage <= 100>>\
<<link "-">>\
<<set $nc_lab_percentage -= 5>>\
<<run Engine.show()>>\
<</link>>\
<</if>>\
<</widget>>\
<<widget "change_moonshine_percentage">>\
<<if $nc_moonshine_percentage >= 0 && $nc_moonshine_percentage <= 95>>\
<<link "+">>\
<<set $nc_moonshine_percentage += 5>>\
<<run Engine.show()>>\
<</link>>\
<</if>>\
<<if $nc_moonshine_percentage >= 5 && $nc_moonshine_percentage <= 100>>\
<<link "-">>\
<<set $nc_moonshine_percentage -= 5>>\
<<run Engine.show()>>\
<</link>>\
<</if>>\
<</widget>>\
<<widget "nc_newday">>
<<nc_pop `$nc_pop_raise`>>
<<if $nc_capacity_drinks >= $nc_capacity_drinks_use>>
<<nc_capacity_drinks `-$nc_capacity_drinks_use`>>
<</if>>
<<set $nc_capacity_drinks += $nc_drinks_autobuy * 100>>
<<if $nc_capacity_drugs > $nc_capacity_drugs_use && $nc_backrooms_deals == true>>
<<nc_capacity_drugs `-$nc_capacity_drugs_use`>>
<</if>>
<<if $p_lab_nc_prod == true>>
<<set $nc_capacity_drugs += $nc_lab_prod>>
<</if>>
<</widget>><<silently>>\
<<nc_calculations>>
<<count_lab_production_speed>>
<<set _pop_meter = $nc_pop / 100>>
<<set _risks_meter = $nc_risks / 100>>
<<set _drinks_meter = $nc_capacity_drinks / 10000>>
<<set _drugs_meter = $nc_capacity_drugs / 10000>>
<<set _liters_daily = $nc_drinks_autobuy * 100>>
<</silently>>\
<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-office.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $strange_note_4 === false>>\
<div id="replace">You see a peculiar piece of paper laying on the table of your new office. <<link "You really want to check it out.">><<replace #replace>>You should check your inventory for a new item.<</replace>><<set $strange_note_4 = true>><<pickup $p_inv "Strange Note#4" 1>><</link>></div>\
<</if>>\
Nightclub popularity: <<showmeter "nc_popularity" _pop_meter>>\
Probability of risks: <<showmeter "nc_risks" _risks_meter>>\
Drinks capacity: <<showmeter "nc_drinks_cap" _drinks_meter>>\
<<if $nc_backrooms_deals == true>>\
Drugs capacity: <<showmeter "nc_drugs_cap" _drugs_meter>>
<</if>>\
Potential flat income: $nc_income​$ (without oscillation)
Potential laundry: $nc_laundry​$.
Potential popularity change: $nc_pop_raise.
Entrance fee: $nc_entrance_price​$ <<change_entrance_price>>
Required amount of drinks daily: $nc_capacity_drinks_use l.
<<if $warehouse_inv.has("Moonshine Shipment")>>\
<<link "Use 1 moonshine shipment to add 250l to drinks capacity." "NightClub Info">>\
<<drop $warehouse_inv "Moonshine Shipment" 1>>\
<<nc_capacity_drinks `250`>>
<</link>>
<<else>>\
<span class="not_available"> You could add some moonshine from your own stocks. 1 shipment is 250l of capacity.</span>
<</if>>\
Daily amount of alcohol cargo purchased, 100l for 200$: $nc_drinks_autobuy. <<change_drinks_autobuy>>
<<if $nc_backrooms_deals == true>>\
Requires amount of drugs daily: $nc_capacity_drugs_use pcs.
<<if $warehouse_inv.has("Drugs Shipment")>>\
<<link "Use 1 drugs shipment to add 150pcs to drugs capacity." "NightClub Info">>
<<drop $warehouse_inv "Drugs Shipment" 1>>\
<<nc_capacity_drugs `150`>>\
<</link>>
<<else>>\
<span class="not_available"> You could add some drugs from your own stocks. 1 shipment is 150pcs of capacity.</span>
<</if>>\
<<if $p_lab == true && $p_lab_nc_prod == true>>\
Amount of drugs transported from your lab: $nc_lab_prod pcs or $nc_lab_percentage%. <<change_lab_percentage>>
<<elseif $p_lab == true && $p_lab_nc_prod == false>>\
<span class="not_available">You could use the chemists from your lab to restock the nightclub. Visit your lab for that. </span>
<</if>>\
<</if>>\
Daily maintenance cost: $nc_tax​$
Name of the club: <<textbox "$nc_name" $nc_name>> <<link "Confirm" "NightClub Info">><</link>>
<<if $nc_drugdealer_event == true>>\
Local drugdealers are selling their drugs in your club safely by paying you their share. It gives you from 150$ to 300$ daily. <<link "Stop it." "NightClub Info">><<set $nc_drugdealer_event = false>><<run $band_events.push("nc_dealer")>><<nc_pop `5`>><</link>>
<</if>>\
<<message "Upgrades">>
<<include "NC Upgrades">>\
<</message>>
<<link "Get back to the main stage." "NightClub PC">>
<</link>>
<<out_link>><<link "Get back to the main street of City Center" "City Center">>
<</link>><</out_link>><<if $money >= 20000 && $nc_stripper_poles == false && $nc_stripper_poles == false>>\
<<link "Stripper poles" "NightClub Info">>
<<set $nc_stripper_poles = true>>\
<<money `-20000`>>\
<<set $nc_tax_upgrades += 500>>\
<</link>>, 20000$ and 500$ upkeep - the heart and soul of any thriving nightclub. Buying them also means investing in professional dancers who’ll bring the crowd to its knees - and, let’s be honest, with the right skills, even the boss herself could steal the show. Adds a bonus to popularity raise.
<<elseif $money < 20000 && $nc_stripper_poles == false>>\
<span class="not_available">Stripper poles</span>, 20000$ and 500$ daily upkeep - the heart and soul of any thriving nightclub. Buying them also means investing in professional dancers who’ll bring the crowd to its knees - and, let’s be honest, with the right skills, even the boss herself could steal the show. Adds a bonus to popularity raise.
<<elseif $nc_stripper_poles == true>>\
<s>Stripper poles, 20000$ and 500$ daily upkeep - the heart and soul of any thriving nightclub. Buying them also means investing in professional dancers who’ll bring the crowd to its knees - and, let’s be honest, with the right skills, even the boss herself could steal the show. Adds a bonus to popularity raise.</s>
<<link "Remove poles and dismiss strippers" "NightClub Info">>\
<<money `7500`>>\
<<set $nc_tax_upgrades -= 500>>\
<<set $nc_stripper_poles = false>>\
<</link>>, you're gonna get 7500$ for poles back.
<</if>>\
\
<<if $money >= 15000 && $nc_backrooms_deals == false>>\
<<link "Backroom Deals" "NightClub Info">>
<<set $nc_backrooms_deals = true>>
<<money `-15000`>>\
<</link>>, 15000$ - turning your nightclub into more than just a party spot, this deal sets up a discreet system for moving product right under the crowd’s noses. A sophisticated ordering network, generous bribes to the right officials, and loyal staff who know how to keep their mouths shut will ensure smooth operations. Adds a drugs capacity meter and allows you to sell drugs by higher than on the market price, 12$ a piece. Amount of sells daily depends on your popularity, ranging from 0 to 400 drugs daily. Having drugs in stocks raises popularity of the club.
<<elseif $money < 15000 && $nc_backrooms_deals == false>>\
<span class="not_available">Backroom Deals</span> - 15000$ - Turning your nightclub into more than just a party spot, this upgrade sets up a discreet system for moving product right under the crowd’s noses. A sophisticated ordering network, generous bribes to the right officials, and loyal staff who know how to keep their mouths shut will ensure smooth operations. Adds a drugs capacity meter and allows you to sell drugs by higher than on the market price, 6$ a piece. Amount of sells daily depends on your popularity, ranging from 0 to 300 drugs daily. Having drugs in stocks raises popularity of the club.
<<elseif $nc_backrooms_deals == true>>\
<s>Backroom Deals - 15000$ - Turning your nightclub into more than just a party spot, this upgrade sets up a discreet system for moving product right under the crowd’s noses. A sophisticated ordering network, generous bribes to the right officials, and loyal staff who know how to keep their mouths shut will ensure smooth operations. Adds a drugs capacity meter and allows you to sell drugs by higher than on the market price, 6$ a piece. Amount of sells daily depends on your popularity, ranging from 0 to 300 drugs daily. Having drugs in stocks raises popularity of the club.</s>
<</if>>\
\
<<if $money >= 10000 && $nc_extra_bouncers == false>>\
<<link "Extra bouncers" "NightClub Info">>
<<set $nc_extra_bouncers = true>>\
<<money `-10000`>>\
<<set $nc_tax_upgrades += 1000>>\
<<set $nc_risk_percentage_mod += 30>>\
<</link>>, 10000$ and 1000 daily upkeep - with the right amount of cash, you’ll have a small army of intimidating professionals who’ll ensure your club runs smoothly - and no one dares mess with your business. -30% of risks rise.
<<elseif $money < 10000 && $nc_extra_bouncers == false>>\
<span class="not_available">Extra bouncers</span>, 10000$ and 1000$ daily upkeep - 10000$ and 1000 daily upkeep - with the right amount of cash, you’ll have a small army of intimidating professionals who’ll ensure your club runs smoothly - and no one dares mess with your business. -30% of risks probability.
<<elseif $nc_extra_bouncers == true>>\
<s>Extra bouncers, 10000$ and 1000$ daily upkeep - 10000$ and 1000 daily upkeep - with the right amount of cash, you’ll have a small army of intimidating professionals who’ll ensure your club runs smoothly - and no one dares mess with your business. -30% of risks probability.</s>
<<link "Dismiss the additional bouncers" "NightClub Info">>
<<set $nc_extra_bouncers = false>>\
<<set $nc_tax_upgrades -= 1000>>\
<<set $nc_risk_percentage_mod -= 30>>\
<<money `4000`>>\
<</link>> - get back yours 4000$ for selling equipment.
<</if>>\
\
<<if $money >= 60000 && $nc_cctv == false>>\
<<link "ССTV" "NightClub Info">>
<<set $nc_cctv = true>>\
<<money `-60000`>>\
<<set $nc_tax_upgrades += 500>>\
<<set $nc_risk_percentage_mod += 37>>\
<</link>>, 60000$ and 500 daily upkeep - you can’t keep an eye on everything yourself - so let the cameras do the dirty work. This upgrade installs high-tech surveillance all over the club, watching every corner, every shady deal, and every slip-up. -37% of risks probability.
<<elseif $money < 10000 && $nc_extra_bouncers == false>>\
<span class="not_available">CCTV</span>, 10000$ and 1000$ daily upkeep - 60000$ and 500 daily upkeep - you can’t keep an eye on everything yourself - so let the cameras do the dirty work. This upgrade installs high-tech surveillance all over the club, watching every corner, every shady deal, and every slip-up. -37% of risks probability.
<<elseif $nc_cctv == true>>\
<s>CCTV, 10000$ and 1000$ daily upkeep - 60000$ and 500 daily upkeep - you can’t keep an eye on everything yourself - so let the cameras do the dirty work. This upgrade installs high-tech surveillance all over the club, watching every corner, every shady deal, and every slip-up. -37% of risks probability.</s>
<<link "Remove and sell CCTV setup" "NightClub Info">>
<<set $nc_cctv = false>>\
<<set $nc_tax_upgrades -= 500>>\
<<set $nc_risk_percentage_mod -= 37>>\
<<money `20000`>>\
<</link>> - get back yours 20000$.
<</if>>\
\
<<if $nc_boss_order == false>>\
<<link "Boss's order" "NightClub Info">>
<<set $nc_boss_order = true>>\
<<set $band_morale_nc = -1>>\
<<set $nc_risk_percentage_mod += 30>>\
<</link>> - with a clear directive from you, your gang members will face consequences if they cause any trouble at your club, but they’ll also receive a bonus for resolving any issues that arise. -1 gang morale daily, -30% of risks probability.
<<else>>\
<s>Boss's order - with a clear directive from you, your gang members will face consequences if they cause any trouble at your club, but they’ll also receive a bonus for resolving any issues that arise. -1 gang morale daily, -30% of risks probability.</s>
<<link "Cancel the order" "NightClub Info">>
<<set $nc_boss_order = false>>\
<<set $band_morale_nc = 0>>\
<<set $nc_risk_percentage_mod -= 30>>\
<</link>> - let the guys have some fun again.
<</if>>\
\
<<if $money >= 60000 && $nc_gambling_tables == false>>\
<<link "Gambling tables" "NightClub Info">>
<<set $nc_gambling_tables = true>>\
<<money `-60000`>>\
<<set $nc_tax_upgrades += 1000>>\
<<set $nc_laundry_mod += 5000>>\
<</link>>, 60000$ and 1000$ daily upkeep - with a cut of every bet, you’ll be laundering money with style, all while making sure your clientele thinks they’re winning big. The house always wins, especially when you're running the show. +5000$ laundry amount.
<<elseif $money < 60000 && $nc_gambling_tables == false>>\
<span class="not_available">Gambling tables</span> - 60000$ and 1000$ daily upkeep - with a cut of every bet, you’ll be laundering money with style, all while making sure your clientele thinks they’re winning big. The house always wins, especially when you're running the show. +5000$ laundry amount.
<<elseif $nc_gambling_tables == true>>\
<s>Gambling tables - 60000$ and 1000$ daily upkeep - with a cut of every bet, you’ll be laundering money with style, all while making sure your clientele thinks they’re winning big. The house always wins, especially when you're running the show. +5000$ laundry amount. </s>
<<link "Stop all gambling activities in the club" "NightClub Info">>
<<set $nc_gambling_tables = false>>\
<<money `25000`>>\
<<set $nc_tax_upgrades -= 1000>>\
<<set $nc_laundry_mod -= 5000>>\
<</link>> - it'll get you back yours 25000$. And also makes your soul more pure that ever, of course.
<</if>>\<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/gangsleaders.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $gangs_met > 0>>\
A badly lit room filled with the smell of smoke and the sound of low, thumping music. Graffiti and old posters cover the concrete walls. Biggie, Slick Trick and Sub-Dizzy are on their places. Triumvirate of an ex-enemies.<</if>>
<<include "Gangs Leaders">>\
<<if $p_boss == true>>\
<<action_link>><span class="action_link"><<link "Ask them to find you a random hoe from the streets." "Gangs Random Slut">>
<<addhours 1>>\
<</link>></span><</action_link>>
<<else>>\
<span class="not_available"> You could hire a random whore from the streets using the trio's connections, but you don't have your own gang yet.</span>
<</if>>\
<<out_link>><<link "Get back outside." "Street Gangs">>
<</link>><</out_link>>
<<out_link>><<link "Get back to the main street of Downtown" "Downtown">>
<<addmins 15>>
<</link>><</out_link>><style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-gangs.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
They're sticking to their habits, taking the VIP cabin closest to the dance floor where everything thumps relentlessly.
<<include "Gangs Leaders">>\
<<if $p_boss == true>>\
<<link "Ask them to find you a random hoe from the streets." "Gangs Random Slut NC">>
<<addhours 1>>\
<</link>>
<<else>>\
<span class="not_available"> You could hire a random whore from the streets using the trio's connections, but you don't have your own gang yet.</span>
<</if>>\
<<out_link>><<link "Get back to the main stage." "NightClub PC">>
<</link>><</out_link>>
<<out_link>><<link "Get back to the main street of City Center" "City Center">>
<<addmins 15>>
<</link>><</out_link>><style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-mafia.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<createnpc_slut_dt>>\
<<set _payment_amount = random(700, 1200) * _rate>>\
It took them a whole hour to find and bring to you an appropriate girl.
- "Hi, you may call me a _nickname. I’ve volunteered to work for you, but I’m asking for _payment_amount​$ upfront to start."
You can rate her at _rate out of 10.
<<if $p_traits.includes("observer")>>\
She's <<beauty_desc_temp>> her clothes are <<clothes_desc_temp>> and body is <<body_desc_temp>>
<<else>>\
<span class="not_available">If only you were more observant, you would know exactly why you rate her like that...</span>
<</if>>\
<<if $money >= _payment_amount>>\
<<link "Hire." "Gangs Leaders NC">>\
<<money `-_payment_amount`>>\
<<addslut>>\
<</link>>\
<<else>>\
<span class="not_available"> You don't have such money. </span>\
<</if>>
<<link "Whatever." "Gangs Leaders NC">>\
<</link>>\<<silently>>\
<<if $suburbs_state == false>>
<<set _romano_yapping = $romano_yapping.random()>>
<<elseif $suburbs_state == true>>
<<set _romano_yapping = $romano_yapping_boss.random()>>
<</if>>
<</silently>>\
<<if $mafia_met == 0>>\
You walk into a lavish, dimly lit room. A large mahogany desk sits at the center, and behind it, lounging in a leather chair, is the mafia leader. He's impeccably dressed in a tailored suit, a smirk playing on his lips as he shuffles a deck of cards.
<span class="romano">- "Ah, finalmente! The new hustler I've been hearing about. Benvenuta! I've been waiting for the chance to meet the lady who runs these streets like they're her personal racetrack. My name is Alfa Romano, nice to meet you!" </span>
He gestures you to sit in the chair opposite him, his eyes glinting with interest.
<span class="romano">- "Please, make yourself at home. Mi chiamo vincenzo. I like a woman who knows her way around a job, capisce? And I've got a feeling you're gonna like what I have to offer. See, I've got a little... operation. ''Cars'', mostly. We find 'em, we take 'em, we make 'em disappear, and voilà! They come back with a whole new identity."</span>
He leans back, casually tossing the cards from one hand to the other.
<span class="romano">- "But I ain't just about cars, you know. Io amo il gioco! I love the thrill of a good gamble. It's why I'm in the business of buying those casino crowns. ''You bring me your crowns, I pay you double in cash. In dirty cash'', if you know what i mean. No questions asked. And if you're feeling lucky, maybe you and I can ''play a little blackjack'' sometime. I'm always up for a good game. So, cara mia, what do you say? You scratch my back, I scratch yours."</span>
<span class="in_link"><<link "Got it.">>
<<set $mafia_met = 1>>\
<<set $reputation += 150>>\
<<run Engine.show()>>\
<</link>></span>\
<<else>>\
<span class="romano">- "_romano_yapping"</span>
<<exchange_mafia>>
<</if>>\<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-mafia.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Romano is lounging casually at the center of his VIP booth, surrounded by a group of women and empty glasses. His signature grin lights up as he sees you, clearly in his element - comfortable, confident, and just a bit too at home in the spotlight.
<<include "Mafia Leader">>\
<<trade_link>><<link "Trade." "Mafia Car Trade NC">>
<</link>><</trade_link>>
<span class="not_available">Romano doesn't want to play blackjack in here.</span>
<<out_link>><<link "Get back to the main stage." "NightClub PC">>
<</link>><</out_link>>
<<out_link>><<link "Get back to the main street of City Center" "City Center">>
<<addmins 15>>
<</link>><</out_link>><style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-mafia.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
Everything you'll load into Mafia's garage will be left hanging there till you transfer it again or trade in.
<<give $garage_inv $mafia_trade use drop inspect all>>
<<give $mafia_trade $garage_inv inspect all>>
<<button "Calculate price.">>\
<<set _price = 0>>\
<<set _rep = 0>>\
<<set _amount = $mafia_trade.array.count("SUV Car")>>\
<<set _price += _amount * 650>>\
<<set _rep += _amount * 60>>\
<<set _amount = $mafia_trade.array.count("Pickup Truck")>>\
<<set _price += _amount * 500>>\
<<set _rep += _amount * 60>>\
<<set _amount = $mafia_trade.array.count("Muscle Car")>>\
<<set _price += _amount * 700>>\
<<set _rep += _amount * 60>>\
<<set _amount = $mafia_trade.array.count("Sedan Car")>>\
<<set _price += _amount * 400>>\
<<set _rep += _amount * 60>>\
<<set _amount = $mafia_trade.array.count("Porter Car")>>\
<<set _price += _amount * 350>>\
<<set _rep += _amount * 60>>\
<<set _amount = $mafia_trade.array.count("Van Car")>>\
<<set _price += _amount * 450>>\
<<set _rep += _amount * 60>>\
<<set _amount = $mafia_trade.array.count("Sportcar")>>\
<<set _price += _amount * 800>>\
<<set _rep += _amount * 60>>\
<<script>>
Dialog.setup("Deal");
Dialog.wiki(Story.get("Car Trade Window").processText());
Dialog.open();
<</script>>
<</button>>
<br>\
<<link "Stop trading" "Mafia Leader NC">>
<</link>>\<style>
body.outskirts::before {
content: '';
background-image: url("img/background/outskirts/bikersclub.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $bikers_met > 0>>\
In the back of The Fringe, a small, curtained-off corner offers Volkov his peace - distant from the bar’s chaos but not from the money. A wooden table, a few chairs. Here, business is simple: quiet, quick, and always about the cash.
<<bikersLeaderPhrases>>\
<</if>>\
<<include "Bikers Leader">>\
<<out_link>><<link "Stop talking with him." "Bikers Club">>
<</link>><</out_link>>
<<out_link>><<link "Go back outside." "Outskirts">>
<<addmins 5>>
<</link>><</out_link>><<silently>>\
<<set _media_sex = $volkov_sex.random()>>\
<<set _media_creampie = $creampie_anal.random()>>\
<</silently>>\
<style>
body.center::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/center/nc-office.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<center>\
He looked at you with surprise but didn't ask any questions.
You took his hand and led him to the backstage area of $nc_name. The space felt private, almost intimate, shielded from the chaos and noise of the main club, though the bass and music still echoed faintly through the walls. Perfect fuckroom, it even has a bed.
Volkov didn’t bother with small talk.
- “Turn around,” he said simply, his tone leaving no room for hesitation.
The moment you turned, he pushed you forward, bending you over the nearby furniture with swift, deliberate force. He didn't bother with foreplay at all, he grabbed your ass, spread it open, enjoyed the view literally for a few seconds before proceeding to the <<linkappend "main course.">>
<<anal_whore_progress>>\
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
You gasped as he forced his way in, and just like that the room was filled with your moans and his grunts. He chose the quite debatable orifice but you won't complain, no time for it. Biker was really rough and quick with his motions, he wasn’t restraining himself. A low growl rumbled in his throat as you felt his body <<linkappend "tense against you.">>
<video @src="_media_creampie" autoplay loop muted controls width="600" height="350"></video>
He pulled out veeeery slowly while huffing, his cock slipping out of you with a wet sound.
- "You're a wild. One. Thanks." his voice filled with approval. You waved him off with a gesture, signaling that he shouldn't wait - you needed a few minutes to gather yourself.
<<link "Let's get back to the hustling." "Bikers Leader NC">>
<</link>>\
<</linkappend>>\
<</linkappend>>\
</center>\<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-biker.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
In a dim corner of your club, Volkov lounges with a beer, surrounded by a couple of rough bikers. The music’s loud, but his booth stays quiet - private, low, and perfect for business. Only lieutenants get this close, but Volkov’s focus is on the cash, not the comfort.
<<bikersLeaderPhrases_NC>>\
<<include "Bikers Leader">>\
<<out_link>><<link "Get back to the main stage." "NightClub PC">>
<</link>><</out_link>>
<<out_link>><<link "Get back to the main street of City Center" "City Center">>
<<addmins 15>>
<</link>><</out_link>><<silently>>\
<<if $p_traits.includes("strip_3")>>
<<set _skill_bonus = 4>>
<<elseif $p_traits.includes("strip_2")>>
<<set _skill_bonus = 3>>
<<elseif $p_traits.includes("strip_1")>>
<<set _skill_bonus = 2>>
<<elseif $p_traits.includes("strip_0")>>
<<set _skill_bonus = 1>>
<</if>>
<<if $nc_striptease_cd == 0 && $p_traits.includes("strip_3")>>
<<nc_pop `2`>>
<<elseif $nc_striptease_cd == 0>>
<<nc_pop `1`>>
<</if>>
<<set _media_dancing = $striptease_pole.random()>>\
<</silently>>\
\
<<if $nc_pop < 15>>\
<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-lowpop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<elseif $nc_pop >= 15 && $nc_pop < 60>>\
<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-midpop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<else>>\
<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-highpop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<</if>>\
\
<center>\
<<if _skill_bonus == 4>>\
You've mastered the art of pole dancing. Every movement of your body is calculated, with one simple goal - to seduce the audience, making them gaze upon you and yearn for more. You're not making money as a stripper in your nightclub, but art anyway is priceless.
<</if>>\
<<if _skill_bonus == 3>>\
You begin to dance, and your body swaying in perfect harmony with the music. Each twist and turn is executed with a practiced grace, your muscles moving fluidly as you climb the pole, your legs wrapping around it in a seamless motion. Yeah, you're definitely know your art.
<</if>>\
<<if _skill_bonus == 2>>\
Words like "Agata," "Aerial Invert," and "Ankle Hang" no longer make your hands tremble or cause you any distress. While your grip might still be a little too tight on the pole and your spins are a bit shaky, your movements have undeniably become more refined.
<</if>>\
<<if _skill_bonus == 1>>\
You hesitate for a moment before stepping into the spotlight, your movements lacking the fluid grace of a seasoned performer. Still, there's a crowd that’s satisfied with even the bare minimum of a tease.
<</if>>\
<video @src="_media_dancing" autoplay loop muted controls width="600" height="350"></video>
People know you're the owner of this place, and that ignites the crowd with excitement. \
<<if $nc_striptease_cd == 0>>\
<<set $nc_striptease_cd = 3>>\
Expect a significant boost in your club's popularity.
<<elseif $nc_striptease_cd > 0>>\
However, the crowd eventually gets too accustomed to your antics.
<</if>>\
<<link "Get off the stage." "NightClub PC">>
<<striptease_progress>>\
<</link>>\
</center><<widget "out_link" container>>\
<span class="out_link"><img src="img/UI/icons/movement_arrow_out.png"/> _contents</span>\
<</widget>>
<<widget "in_link" container>>\
<span class="in_link"><img src="img/UI/icons/movement_arrow_in.png"/> _contents</span>\
<</widget>>
<<widget "action_link" container>>\
<span class="action_link"><img src="img/UI/icons/action_icon.png"/> _contents</span>\
<</widget>>
<<widget "trade_link" container>>\
<span class="trade_link"><img src="img/UI/icons/trade_icon.png"/> _contents</span>\
<</widget>>
<<widget "biz_link" container>>\
<span class="biz_link"><img src="img/UI/icons/biz_icon.png"/> _contents</span>\
<</widget>>
<<widget "charm_link" container>>\
<span class="charm_link"><img src="img/UI/icons/charm_icon.png"/><img src="img/UI/icons/charm_icon.png"/>_contents<img src="img/UI/icons/charm_icon.png"/><img src="img/UI/icons/charm_icon.png"/></span>\
<</widget>>
<<widget "combat_link" container>>\
<span class="combat_link"><img src="img/UI/icons/combat_icon.png"/> _contents</span>\
<</widget>>
<<widget "cun_link" container>>\
<span class="cun_link"><img src="img/UI/icons/cunning_icon.png"/> _contents</span>\
<</widget>>
<<widget "district_bg" container>>\
<span class="district_background"> _contents</span>\
<</widget>><<if tags().includes('rideable') || tags().includes('home')>>\
<<if tags().includes('home')>>\
<span class="not_available"> Home </span>\
<<else>>\
<<link "__Home__" "Home">><<addmins 20>>\
<</link>>\
<</if>>\
<<if tags().includes('downtown')>>\
<span class="not_available"> Old Downtown </span>\
<<else>>\
<<link "__Old Downtown__" "Downtown Road">><</link>>\
<</if>>\
<<if tags().includes('suburbs')>>\
<span class="not_available"> Suburbs </span>\
<<else>>\
<<link "__Suburbs__" "Suburbs Road">><</link>>\
<</if>>\
<<if tags().includes('center')>>\
<span class="not_available"> City Center </span>\
<<else>>\
<<link "__City Center__" "City Center Road">><</link>>\
<</if>>\
<<if tags().includes('harbor')>>\
<span class="not_available"> Harbor </span>\
<<else>>\
<<link "__Harbor__" "Harbor Road">><</link>>\
<</if>>\
<<if tags().includes('outskirts')>>\
<span class="not_available"> Outskirts </span>\
<<else>>\
<<link "__Outskirts__" "Outskirts Road">><</link>>
<</if>>\
<<checkbox "$ft_locked" false true autocheck>> Lock \
<<else>>\
<span class="not_available"> You can't ride here. </span>
<</if>>\<<if tags().includes('rideable') || tags().includes('home')>>\
<<button "30m">>
<<addmins 30>>\
<<run Engine.show()>>\
<</button>>\
<<button "1h">>
<<addhours 1>>\
<<run Engine.show()>>\
<</button>>\
<<button "2h">>
<<addhours 2>>\
<<run Engine.show()>>\
<</button>>\
<<button "4h">>
<<addhours 4>>\
<<run Engine.show()>>\
<</button>>\
<<else>>\
<span class="not_available"> You can't wait here. </span>
<</if>>\/* Brightness settings */\
<<if tags().includes('outdoors') && !tags().includes('downtown') && !tags().includes('suburbs') && !tags().includes('harbor') && !tags().includes('center') && !tags().includes('outskirts')>>\
<<brightness_check>>\
<<elseif tags().includes('outdoors') && tags().includes('downtown') || tags().includes('outdoors') && tags().includes('suburbs') || tags().includes('outdoors') && tags().includes('harbor') || tags().includes('outdoors') && tags().includes('center') || tags().includes('outdoors') && tags().includes('outskirts')>>\
<<brightness_check_district>>\
<<elseif !tags().includes('outdoors') && !tags().includes('downtown') && !tags().includes('suburbs') && !tags().includes('harbor') && !tags().includes('center') && !tags().includes('outskirts')>>\
<<brightness_check>>\
<<brightness_check_loc>>\
<<else>>\
<<brightness_check_district>>\
<<brightness_check_loc>>\
<</if>>\
/* Sending home */\
\
<<if $gameDate.getHours() >= 3 && $gameDate.getHours() <= 7 && tags().includes('rideable') || $gameDate.getHours() >= 3 && $gameDate.getHours() <= 7 && tags().includes('home')>>\
<<goto "LatePage">>\
<</if>>\
\
<<game_version_check>>\<<widget "brothel_calculations">>\
<<silently>>\
<<set $brothel_quality = 0>>
<<set $brothel_sluts = 0>>
<<for _i = 0; _i < $sluts_list.length; _i = _i + 1>>\
<<if $sluts_list[_i].work_location == "Brothel">>\
<<set _v = $sluts_list[_i]>>\
<<capture _v, _i>>\
<<set_fem_rate_temp>>
<<set $brothel_quality += _v.rate>>
<<set $brothel_sluts ++>>
<</capture>>\
<</if>>\
<</for>>\
<<set $brothel_quality = ($brothel_quality * 2) + $brothel_quality_mods>>
<<if $brothel_aphrodisiac_upgrade == true>>
<<set _brothel_clients_amount = 4 * (($brothel_pop / 100 * 20) + 6)>>
<<set _max_aphrodisiac_ql = _brothel_clients_amount * 3>>
<<if $brothel_capacity_aphrodisiac >= _max_aphrodisiac_ql>>
<<set $brothel_quality += 50>>\
<</if>>
<</if>>
<<if $brothel_sluts == 0>>
<<set $brothel_quality = 0>>
<</if>>
<</silently>>\
<</widget>>\
<<widget "brothel_quality_caption">>\
<<if $brothel_quality < 50>>\
this establishment offers low-quality services, so don't expect high profits.
<<elseif $brothel_quality < 250>>\
this establishment offers rather mediocre services compared to others, but it still has some potential.
<<elseif $brothel_quality < 500>>\
this is a fine establishment known for its quality services.
<<elseif $brothel_quality < 800>>\
this is a great establishment offering top-notch services on the market.
<<else>>\
people travel just for this establishment alone. One of the best.
<</if>>\
<</widget>>\
<<widget "brothel_sluts_list">>\
<<for _i = 0; _i < $sluts_list.length; _i = _i + 1>>\
<<if $sluts_list[_i].work_location == "Brothel">>\
<<set _v = $sluts_list[_i]>>\
<<capture _v, _i>>\
<<button "_v.name _v.nickname">>
<<set $active_npc = _v>>\
<<script>>
Dialog.setup(State.temporary.v.name + " " + State.temporary.v.nickname);
Dialog.wiki(Story.get("Sluts Window").processText());
Dialog.open();
<</script>>
<</button>>\
<</capture>>\
<</if>>\
<</for>>\
<</widget>>\
<<widget "brothel_client_type_calc">>\
<<silently>>\
<<if $brothel_pop < 30>>
<<set _brothel_client = "poor">>
<<elseif $brothel_pop < 70>>
<<set _brothel_client = "middle class">>
<<else>>
<<set _brothel_client = "wealthy">>
<</if>>
<</silently>>\
<</widget>>\
<<widget "brothel_report">>\
<<silently>>\
<<set _brothel_clients_amount = 4 * (($brothel_pop / 100 * 20) + 6)>>
<<set _brothel_clients_amount = Math.trunc(_brothel_clients_amount)>>
<<brothel_client_type_calc>>
<<if _brothel_client == "poor">>
<<set _required_br_quality = _brothel_clients_amount * 3>>
<<elseif _brothel_client == "middle class">>
<<set _required_br_quality = _brothel_clients_amount * 5>>
<<elseif _brothel_client == "wealthy">>
<<set _required_br_quality = _brothel_clients_amount * 8>>
<</if>>
<<set _brothel_aphrodisiac = $brothel_capacity_aphrodisiac / 5000>>
<<set _max_aphrodisiac = _brothel_clients_amount * 3>>
<</silently>>\
<<if $brothel_aphrodisiac_upgrade == true>>\
Aphrodisiac:
<<showmeter "brothel_aphrodisiac_cap" _brothel_aphrodisiac>>\
One piece of aphrodisiac sells for 8-15$.
Maximum possible amount of aphrodisiac needed per day: _max_aphrodisiac pcs.
One shipment of aphrodisiac is equal to 200pcs.
<<if $warehouse_inv.has("Aphrodisiac Shipment")>>\
<<link "Fill in 1 shipment from your warehouse." "Brothel">>
<<drop $warehouse_inv "Aphrodisiac Shipment" 1>>\
<<brothel_capacity_aphrodisiac `200`>>\
<</link>>
<<else>>\
<span class="not_available"> Fill in 1 shipment from your warehouse.</span>
<</if>>\
<</if>>\
\
Maximum possible number of clients: _brothel_clients_amount.
Type of visitors: _brothel_client.
Quality report: <<brothel_quality_caption>>\
<<if _required_br_quality <= $brothel_quality>>\
The quality of services meets the highest expectations.
<<else>>\
The quality of services does not meet the highest expectations.
<</if>>\
<</widget>>\
<<widget "brothel_work">>\
<<silently>>\
<<brothel_calculations>>
<<brothel_client_type_calc>>
<<set _brothel_clients_amount = random(1, 4) * (($brothel_pop / 100 * 20) + random(3, 6))>>
<<set _brothel_clients_amount = Math.trunc(_brothel_clients_amount)>>
<<if _brothel_client == "poor">>
<<set _required_br_quality = _brothel_clients_amount * 3>>
<<elseif _brothel_client == "middle class">>
<<set _required_br_quality = _brothel_clients_amount * 5>>
<<elseif _brothel_client == "wealthy">>
<<set _required_br_quality = _brothel_clients_amount * 8>>
<</if>>
<<set _brothel_profit = Math.min(_required_br_quality, $brothel_quality) * random(25, 50)>>
<<money `_brothel_profit`>>
\
<<set _aphrodisiac_profit = 0>>
<<if $brothel_aphrodisiac_upgrade == true>>
<<set _brothel_aphrodisiac_needed = 0>>\
<<for _i = 0; _i < _brothel_clients_amount; _i = _i + 1>>
<<set _brothel_aphrodisiac_needed += random(1, 3)>>
<</for>>\
<<set _aphrodisiac_profit = Math.min(_brothel_aphrodisiac_needed, $brothel_capacity_aphrodisiac) * random(8, 15)>>
<<money `_aphrodisiac_profit`>>
<<set _used_aphrodisiac = Math.min(_brothel_aphrodisiac_needed, $brothel_capacity_aphrodisiac)>>
<<set $brothel_capacity_aphrodisiac = Math.clamp($brothel_capacity_aphrodisiac - _used_aphrodisiac, 0, 5000)>>
<</if>>
\
<</silently>>\
<<if _required_br_quality <= $brothel_quality>>\
<<set $brothel_pop = Math.clamp($brothel_pop + 1, 0, 100)>>\
_brothel_profit​$ - brothel profit. All clients were successfully serviced in your brothel, increasing its popularity.
<<else>>\
<<set $brothel_pop = Math.clamp($brothel_pop - 1, 0, 100)>>\
_brothel_profit​$ - brothel profit. Not all clients were serviced in your brothel, leading to a drop in popularity.
<</if>>\
<<if $brothel_aphrodisiac_upgrade == true>>\
_aphrodisiac_profit​$ - aphrodisiac distribution in brothel, _used_aphrodisiac pcs of aphrodisiac were used and $brothel_capacity_aphrodisiac more in stock.
<<set $total_gained += _aphrodisiac_profit>>\
<</if>>\
<<set $total_gained += _brothel_profit>>\
<</widget>>\<<if $money >= 50000 && $brothel_restoration == false>>\
<<link "Restoration" "Brothel">>
<<money `-50000`>>\
<<set $brothel_quality_mods += 50>>\
<<set $brothel_tax += 100>>\
<<set $brothel_sluts_max += 10>>\
<<set $brothel_restoration = true>>\
<</link>>, 50000$ and 100$ upkeep - a fresh coat of paint, reinforced walls, and working plumbing - finally, a place that doesn’t look condemned. Slightly increases quality of services, allows to set up 10 more sluts.
<<elseif $money < 50000 && $brothel_restoration == false>>\
<span class="not_available">Restoration</span>, 50000$ and 100$ upkeep - a fresh coat of paint, reinforced walls, and working plumbing - finally, a place that doesn’t look condemned. Slightly increases quality of services, allows to set up 10 more sluts.
<<elseif $brothel_restoration == true>>\
<s>Restoration, 50000$ and 100$ upkeep - a fresh coat of paint, reinforced walls, and working plumbing - finally, a place that doesn’t look condemned. Slightly increases quality of services, allows to set up 10 more sluts.</s>
<<if $brothel_sluts <= ($brothel_sluts_max - 10)>>\
<<link "Destroy your own enterprise" "Brothel">>\
<<set $brothel_sluts_max -= 10>>\
<<set $brothel_tax -= 100>>\
<<set $brothel_quality_mods -= 50>>\
<<set $brothel_restoration = false>>\
<<money `15000`>>\
<</link>> - why? Who knows, but you'll get a 15000$ back.
<<else>>\
<span class="not_available"> You could destroy your own brothel if you'd atleast 10 free slots for sluts.</span>
<</if>>\
<</if>>\
\
<<if $money >= 60000 && $brothel_vip == false>>\
<<link "VIP booths" "Brothel">>
<<money `-60000`>>\
<<set $brothel_quality_mods += 60>>\
<<set $brothel_vip = true>>\
<</link>>, 60000$ and 100$ upkeep - private rooms with velvet curtains and soft lighting - where discretion comes at a premium. Slightly increases quality of services.
<<elseif $money < 60000 && $brothel_vip == false>>\
<span class="not_available">VIP booths</span>, 60000$ and 100$ upkeep - private rooms with velvet curtains and soft lighting - where discretion comes at a premium. Slightly increases quality of services.
<<elseif $brothel_vip == true>>\
<s>VIP booths, 60000$ and 100$ upkeep - private rooms with velvet curtains and soft lighting - where discretion comes at a premium. Slightly increases quality of services.</s>
<<link "Sell these booths away" "Brothel">>\
<<set $brothel_tax -= 100>>\
<<set $brothel_quality_mods -= 60>>\
<<set $brothel_vip = false>>\
<<money `20000`>>\
<</link>> - you'll get 20000$ back.
<</if>>\
\
<<if $money >= 20000 && $brothel_aphrodisiac_upgrade == false>>\
<<link "Weird Perfume" "Brothel">>
<<money `-20000`>>\
<<set $brothel_aphrodisiac_upgrade = true>>\
<</link>>, 20000$ - set up a drug-dealing network in your brothel, pushing aphrodisiacs under the counter for those willing to pay extra. Slightly increases quality of services if you have enough of aphrodisiac in stock.
<<elseif $money < 20000 && $brothel_aphrodisiac_upgrade == false>>\
<span class="not_available">Weird Perfume</span>, 20000$ - set up a drug-dealing network in your brothel, pushing aphrodisiacs under the counter for those willing to pay extra. Slightly increases quality of services if you have enough of aphrodisiac in stock.
<<elseif $brothel_aphrodisiac_upgrade == true>>\
<s>Weird Perfume, 20000$ - set up a drug-dealing network in your brothel, pushing aphrodisiacs under the counter for those willing to pay extra. Slightly increases quality of services if you have enough of aphrodisiac in stock.</s>
<</if>>\
\
<<if $money >= 30000 && $brothel_more_rooms == false>>\
<<link "More rooms" "Brothel">>
<<money `-30000`>>\
<<set $brothel_tax += 150>>\
<<set $brothel_sluts_max += 10>>\
<<set $brothel_more_rooms = true>>\
<</link>>, 30000$ and 150$ upkeep - more rooms, more comfort, more business. Its simple as that. Adds 10 additional slots for sluts in your brothel.
<<elseif $money < 20000 && $brothel_more_rooms == false>>\
<span class="not_available">More rooms</span>, , 30000$ and 150$ upkeep - more rooms, more comfort, more business. Its simple as that. Adds 10 additional slots for sluts in your brothel.
<<elseif $brothel_more_rooms == true>>\
<s>More rooms, 30000$ and 150$ upkeep - more rooms, more comfort, more business. Its simple as that. Adds 10 additional slots for sluts in your brothel.</s>
<<if $brothel_sluts <= ($brothel_sluts_max - 10)>>\
<<link "Buldoze a few sections of brothel" "Brothel">>\
<<set $brothel_sluts_max -= 10>>\
<<set $brothel_tax -= 150>>\
<<set $brothel_more_rooms = false>>\
<<money `7500`>>\
<</link>> - less rooms - less problems. You'll get 7500$ back.
<<else>>\
<span class="not_available"> You could buldoze a few rooms if you had atleast 10 free slots for sluts.</span>
<</if>>\
<</if>>\
\
<<if $money >= 25000 && $brothel_hookas == false>>\
<<link "Hookas and other shit" "Brothel">>
<<money `-25000`>>\
<<set $brothel_tax += 150>>\
<<set $brothel_quality_mods += 72>>\
<<set $brothel_hookas = true>>\
<</link>>, 25000$ and 150$ upkeep - a touch of indulgence - plush seats, flavored smoke, and a well-stocked bar to keep the night flowing. Moderately increases quality of services.
<<elseif $money < 25000 && $brothel_hookas == false>>\
<span class="not_available">Hookas and other shit</span>, , 25000$ and 150$ upkeep - a touch of indulgence - plush seats, flavored smoke, and a well-stocked bar to keep the night flowing. Moderately increases quality of services.
<<elseif $brothel_hookas == true>>\
<s>Hookas and other shit, 25000$ and 150$ upkeep - a touch of indulgence - plush seats, flavored smoke, and a well-stocked bar to keep the night flowing. Moderately increases quality of services.</s>
<<link "Sell additional equipment to some junkies outside" "Brothel">>\
<<set $brothel_tax -= 150>>\
<<set $brothel_quality_mods -= 72>>\
<<set $brothel_hookas = false>>\
<<money `5000`>>\
<</link>> - you won't get much from it, but atleast its possible to get 5000$.
<</if>>\<<if $trailer_call == false>>\
<<set $trailer_call = true>>\
<span class="male_text"> - "Well, lookie here, a buyer, huh? Lemme tell ya, this ain’t just no regular ol’ trailer - it’s a real fine setup, got everythin’ ya need to cook up some good ol’ firewater. Got the still, the pipes, the whole damn works. All ready to go, no fiddlin’ needed. Twenty grand cash, no hagglin’, no bullshit. You want it or not? ‘Cause I ain’t waitin’ all day."</span>
<<if $money >= 20000>>
<<trade_link>><<link "Meet with him and pay 20k for trailer with moonshine production equipment." "Moonshine Trailer Intro">>
<<script>>
Dialog.close();
<</script>>
<<money `-20000`>>\
<<set $moonshine_trailer = true>>\
<<addhours `1`>>
<</link>><</trade_link>>
<<else>>\
<span class="not_available"> You don't have 20000$ for this.</span>
<</if>>\
<<link "Forget about it.">>
<<script>>
Dialog.close();
<</script>>
<</link>>\
<<else>>\
<span class="male_text"> - "Aw, hell, you again? You gonna buy or just yank my chain all day? Like I said - trailer, still, all set up, twenty grand, cash. Take it or leave it, but quit wastin’ my damn time."</span>
<<if $money >= 20000>>
<<trade_link>><<link "Meet with him and pay 20k for trailer with moonshine production equipment." "Moonshine Trailer Intro">>
<<script>>
Dialog.close();
<</script>>
<<money `-20000`>>\
<<set $moonshine_trailer = true>>\
<<addhours `1`>>
<</link>><</trade_link>>
<<else>>\
<span class="not_available"> You don't have 20000$ for this.</span>
<</if>>\
<<link "Forget about it.">>
<<script>>
Dialog.close();
<</script>>
<</link>>\
<</if>>\<style>
body.outskirts::before {
content: '';
background-image: url("img/background/outskirts/trailer.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
The deal went down fast. Cash changed hands, thick bills counted quick, and the redneck barely looked twice before stuffing ‘em away.
<span class="male_text"> -"Alright, here’s yer keys, papers ‘n all. Still’s in the back, don’t go blowin’ yerself up. Water hookup’s busted, but that ain’t my problem no more."</span>
With that, he tipped his hat, climbed into his rusted-out truck, and kicked up a cloud of dust as he peeled off, leaving you standing in front of the brand-new - and slightly questionable - investment.
<<link "Alright then." "Moonshine Trailer">>
<</link>><<silently>>\
<<set _moonshine_meter = $moonshine_mats / 5000>>
<<set _farmer_payments = $moonshine_farmers * 100>>
<<set _progress_meter = $moonshine_progress / 100>>
<<set $moonshine_prod_speed = ($moonshine_farmers * 10) * $moonshine_prod_mod>>
<<set _moonshine_autobuy_amount = $moonshine_autobuy * 100>>
<<if $night_club == true>>
<<set $nc_moonshine_prod_speed = Math.trunc(($moonshine_prod_speed / 100) * $nc_moonshine_percentage)>>
<<set $moonshine_prod_speed -= $nc_moonshine_prod_speed>>
<</if>>
<</silently>>\
<style>
body.outskirts::before {
content: '';
background-image: url("img/background/outskirts/trailer.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
A rusted trailer sits in the middle of the dry, open plains, looking like it hasn’t moved in decades. Smoke drifts from makeshift vents, and a few locked sheds stand nearby, hiding whatever keeps this place running. <<if $moonshine_camp == true>> Around it, a handful of tents have sprung up, with a simple wooden fence marking the edge of this growing operation. <</if>>
Resources:
<<showmeter "moonshine_mats_cap" _moonshine_meter>>\
Amount of resources you're buying daily: _moonshine_autobuy_amount​l. 1l = 1$. <<moonshine_autobuy>>
<<if $p_craft.has("Agricultural Products") && $moonshine_mats < 5000>>\
<<link "Fill it with agricultural produce for 25l." "Moonshine Trailer">>
<<drop $p_craft "Agricultural Produce" 1>>\
<<set $moonshine_mats += 25>>\
<</link>>
<</if>>\
<<if $p_craft.has("Organic Materials") && $moonshine_mats < 5000>>\
<<link "Fill it with organic materials for 50l." "Moonshine Trailer">>
<<drop $p_craft "Organic Materials" 1>>\
<<set $moonshine_mats += 50>>\
<</link>>
<</if>>\
Progress: <<showmeter "moonshine_progress" _progress_meter>>\
Each cycle produces 1 moonshine shipment if you have where to store it.
Progress daily: $moonshine_prod_speed%/day.
Amount of farmers: $moonshine_farmers/$moonshine_farmers_max.
Each farmer requires 100$/day. You're paying: _farmer_payments​$/day.
<<if $night_club == true>>\
Percentage of produce going to $nc_name: $nc_moonshine_percentage%.<<change_moonshine_percentage>>
Speed of production for night club: $nc_moonshine_prod_speed%/day.
100% of one cycle is a 250l.
<</if>>\
<<message "Upgrades">>\
<<include "Moonshine Upgrades">>\
<</message>>
<<out_link>><<link "Get back to home" "Home">>
<<addmins 30>>
<</link>><</out_link>>
<<out_link>><<link "Get back to outskirts" "Outskirts">>
<<addmins 15>>\
<</link>><</out_link>><<widget "moonshine_autobuy">>\
<<link "+">>\
<<set $moonshine_autobuy += 1>>\
<<run Engine.show()>>\
<</link>>\
<<if $moonshine_autobuy > 0>>\
<<link " -">>\
<<set $moonshine_autobuy -= 1>>\
<<run Engine.show()>>\
<</link>>\
<</if>>\
<</widget>>
<<widget "moonshine_newday">>\
<<silently>>\
<<if $moonshine_autobuy > 0>>
<<set _moonshine_autobuy_amount = $moonshine_autobuy * 100>>
<<if $money >= _moonshine_autobuy_amount>>
<<money `_moonshine_autobuy_amount`>>
<<set $moonshine_mats += _moonshine_autobuy_amount>>
<<set _moonshine_autobuy_fail = false>>
<<else>>
<<set _moonshine_autobuy_fail = true>>
<</if>>
<</if>>
<<set $moonshine_prod_speed = ($moonshine_farmers * 10) * $moonshine_prod_mod>>
<<set $nc_moonshine_prod_speed = Math.trunc(($moonshine_prod_speed / 100) * $nc_moonshine_percentage)>>
<<if $nc_moonshine_percentage > 0>>
<<set $nc_moonshine_prod += $nc_moonshine_prod_speed>>
<<set $moonshine_prod_speed -= $nc_moonshine_prod_speed>>
<<set _nc_moonshine_cycle = 0>>
<<if $moonshine_mats >= 100>>
<<for $nc_moonshine_prod >= 100>>
<<set $moonshine_mats -= 100>>
<<set $nc_moonshine_prod -= 100>>
<<set _nc_moonshine_cycle += 1>>
<</for>>
<<else>>
<<set _moonshine_club_no_mats = true>>
<<if $nc_moonshine_prod > 100>>
<<set $nc_moonshine_prod = 100>>
<</if>>
<</if>>
<</if>>
<<set _moonshine_cycle = 0>>
<<set _farmer_payments = $moonshine_farmers * 100>>
<<set $moonshine_progress += $moonshine_prod_speed>>
<<if $moonshine_mats >= 100>>
<<for $moonshine_progress >= 100>>\
<<set $moonshine_progress -= 100>>
<<set $moonshine_mats -= 100>>
<<if $warehouse_inv.length < $p_warehouse_size>>
<<pickup $warehouse_inv "Moonshine Shipment" 1>>
<<set $moonshine_mats -= 100>>
<<set _moonshine_cycle += 1>>
<<else>>
<<set _moonshine_no_place = true>>
<<set _moonshine_cycle += 1>>
<</if>>
<</for>>\
<<else>>
<<set _moonshine_no_mats = true>>
<<if $moonshine_progress > 100>>
<<set $moonshine_progress = 100>>
<</if>>
<</if>>
<</silently>>\
<</widget>>\<<if $money >= 16000 && $moonshine_prod_upgrade_1 == false>>\
<<link "Upgraded Equipment" "Moonshine Trailer">>
<<money `-16000`>>\
<<set $moonshine_prod_mod += 1>>\
<<set $moonshine_prod_upgrade_1 = true>>\
<</link>>, 16000$ - better stills, better filters, better booze. Every drop runs smoother and stronger. Additional +100% to farmers efficiency.
<<elseif $money < 16000 && $moonshine_prod_upgrade_1 == false>>\
<span class="not_available">Upgraded Equipment</span>, 16000$ - better stills, better filters, better booze. Every drop runs smoother and stronger. Additional +100% to farmers efficiency.
<<elseif $moonshine_prod_upgrade_1 == true>>\
<s>Upgraded Equipment, 16000$ - better stills, better filters, better booze. Every drop runs smoother and stronger. Additional +100% to farmers efficiency.</s>
<<link "Sell good equip and get the old one" "Moonshine Trailer">>\
<<set $moonshine_prod_mod -= 1>>\
<<set $moonshine_prod_upgrade_1 = false>>
<<money `5000`>>\
<</link>> - you'll get 5000$ back.
<</if>>\
\
<<if $money >= 21000 && $moonshine_prod_upgrade_2 == false>>\
<<link "Additional Tools" "Moonshine Trailer">>
<<money `-21000`>>\
<<set $moonshine_prod_mod += 1>>\
<<set $moonshine_prod_upgrade_2 = true>>\
<</link>>, 21000$ - extra gadgets and refinements keep the process steady and the yield high. Additional +100% to farmers efficiency.
<<elseif $money < 21000 && $moonshine_prod_upgrade_2 == false>>\
<span class="not_available">Additional Tools</span>, 21000$ - extra gadgets and refinements keep the process steady and the yield high. Additional +100% to farmers efficiency.
<<elseif $moonshine_prod_upgrade_2 == true>>\
<s>Additional Tools, 21000$ - extra gadgets and refinements keep the process steady and the yield high. Additional +100% to farmers efficiency.</s>
<<link "Sell everything" "Moonshine Trailer">>\
<<set $moonshine_prod_mod -= 1>>\
<<set $moonshine_prod_upgrade_2 = false>>
<<money `9000`>>\
<</link>> - you'll get 9000$ back.
<</if>>\
\
<<if $money >= 10000 && $moonshine_extra_trailer == false>>\
<<link "Second Trailer" "Moonshine Trailer">>
<<money `-10000`>>\
<<set $moonshine_farmers_max += 3>>\
<<set $moonshine_extra_trailer = true>>\
<</link>>, 10000$ - more space, more hands, no extra heat. Just another shack in the wild. +3 additional slots for farmers.
<<elseif $money < 10000 && $moonshine_extra_trailer == false>>\
<span class="not_available">Second Trailer</span>, 10000$ - more space, more hands, no extra heat. Just another shack in the wild. +3 additional slots for farmers.
<<elseif $moonshine_extra_trailer == true>>\
<s>Second Trailer, 10000$ - more space, more hands, no extra heat. Just another shack in the wild. +3 additional slots for farmers.</s>
<<if $moonshine_farmers <= ($moonshine_farmers_max - 3)>>\
<<link "Get rid of it" "Moonshine Trailer">>\
<<set $moonshine_extra_trailer = false>>\
<<set $moonshine_farmers_max -= 3>>
<<money `3000`>>\
<</link>> - you'll get 3000$ back.
<<else>>\
<span class="not_available"> You need to have atleast 3 free spots for farmers before selling this upgrade.</span>
<</if>>\
<</if>>\
\
<<if $money >= 15000 && $moonshine_camp == false>>\
<<link "Bootlegger Camp" "Moonshine Trailer">>
<<money `-15000`>>\
<<set $moonshine_farmers_max += 4>>\
<<set $moonshine_camp = true>>\
<</link>>, 15000$ - A few tents, some cover, and more workers blending into the scenery. +4 additional slots for farmers.
<<elseif $money < 15000 && $moonshine_camp == false>>\
<span class="not_available">Bootlegger Camp</span>, 15000$ - A few tents, some cover, and more workers blending into the scenery. +4 additional slots for farmers.
<<elseif $moonshine_camp == true>>\
<s>Bootlegger Camp, 15000$ - A few tents, some cover, and more workers blending into the scenery. +4 additional slots for farmers. </s>
<<if $moonshine_farmers <= ($moonshine_farmers_max - 4)>>\
<<link "Get rid of it" "Moonshine Trailer">>\
<<set $moonshine_camp = false>>\
<<set $moonshine_farmers_max -= 4>>
<<money `4500`>>\
<</link>> - you'll get 4500$ back.
<<else>>\
<span class="not_available"> You need to have atleast 4 free spots for farmers before selling this upgrade.</span>
<</if>>\
<</if>>\
\<<silently>>
<<repeat 40ms>>
<<set $tax_evasion_timer += 0.040>>
<<replace "#countdown">>Countdown: <<= $tax_evasion_timer.toFixed(2)>>.<</replace>>
<</repeat>>
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/background/events/TE_heist.webp");
inset: 0;
position: fixed;
filter:grayscale(60%);
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 91%);
background-size: cover;
}
</style>\
<center>\
<span id="countdown">Countdown: $tax_evasion_timer.</span>
<<tax_evasion_span_0>><<numberbox "$tax_code_input_0" $tax_code_input_0 "Tax Evasion Minigame">><</tax_evasion_span_0>>\
<<tax_evasion_span_1>><<numberbox "$tax_code_input_1" $tax_code_input_1 "Tax Evasion Minigame">><</tax_evasion_span_1>>\
<<tax_evasion_span_2>><<numberbox "$tax_code_input_2" $tax_code_input_2 "Tax Evasion Minigame">><</tax_evasion_span_2>>\
<<tax_evasion_span_3>><<numberbox "$tax_code_input_3" $tax_code_input_3 "Tax Evasion Minigame">><</tax_evasion_span_3>>\
<<link "Check Result">>
<<if $tax_code_input_0 == $tax_code_0 && $tax_code_input_1 == $tax_code_1 && $tax_code_input_2 == $tax_code_2 && $tax_code_input_3 == $tax_code_3>>\
<<goto "HeistTE End">>
<<else>>\
<<run Engine.show()>>\
<</if>>\
<</link>>\
</center>\<<widget "setup_TE">>
<<set $tax_code_0 = random(1, 9)>>
<<set $tax_code_1 = random(1, 9)>>
<<set $tax_code_2 = random(1, 9)>>
<<set $tax_code_3 = random(1, 9)>>
<<set $tax_code_full = [$tax_code_0, $tax_code_1, $tax_code_2, $tax_code_3]>>
<<set $tax_code_input_0 = 0>>
<<set $tax_code_input_1 = 0>>
<<set $tax_code_input_2 = 0>>
<<set $tax_code_input_3 = 0>>
<<set $tax_evasion_timer = 0>>
<<set $tax_evasion_score = 0>>
<<for _i = 0; _i < $accomplices_list.length; _i = _i + 1>>
<<set $tax_evasion_score += random(1000, 5000)>>
<</for>>
<<for _i = 0; _i < $sluts_list.length; _i = _i + 1>>\
<<set $tax_evasion_score += random(1000, 5000)>>
<</for>>\
<</widget>>\
<<widget "tax_evasion_span_0" container>>\
<<if $tax_code_input_0 == $tax_code_0>>\
<span class="right_place">_contents</span>\
<<elseif $tax_code_full.includes($tax_code_input_0)>>\
<span class="wrong_place">_contents</span>\
<<else>>\
<span class="wrong_number">_contents</span>\
<</if>>\
<</widget>>\
<<widget "tax_evasion_span_1" container>>\
<<if $tax_code_input_1 == $tax_code_1>>\
<span class="right_place">_contents</span>\
<<elseif $tax_code_full.includes($tax_code_input_1)>>\
<span class="wrong_place">_contents</span>\
<<else>>\
<span class="wrong_number">_contents</span>\
<</if>>\
<</widget>>\
<<widget "tax_evasion_span_2" container>>\
<<if $tax_code_input_2 == $tax_code_2>>\
<span class="right_place">_contents</span>\
<<elseif $tax_code_full.includes($tax_code_input_2)>>\
<span class="wrong_place">_contents</span>\
<<else>>\
<span class="wrong_number">_contents</span>\
<</if>>\
<</widget>>\
<<widget "tax_evasion_span_3" container>>\
<<if $tax_code_input_3 == $tax_code_3>>\
<span class="right_place">_contents</span>\
<<elseif $tax_code_full.includes($tax_code_input_3)>>\
<span class="wrong_place">_contents</span>\
<<else>>\
<span class="wrong_number">_contents</span>\
<</if>>\
<</widget>>\
<<widget "tax_evasion_results">>\
<<if $tax_evasion_timer >= 80>>\
The numbers don’t add up, the forms don’t check out, and now there’s a nightmare in a suit knocking at your door. The IRS isn’t just auditing - you’ve practically summoned a financial apocalypse. Fines, asset seizures, legal threats - it’s a full-blown disaster. And the worst part? They don’t forget. Ever. You’ve lost all the money you could, but there’s still a chance to salvage some cash - and maybe even your reputation - if you can pin this mess on someone else…
<<morale `-10`>>\
<<if $taxmen_friend == true>>\
<<link "Set up your taxmen friend." "HeistTE Results">>
<<set $warehouse_tax_upgrade = false>>\
<<set $taxmen_friend = false>>\
<<set $tax_evasion_score = ($tax_evasion_score / 100) * 40>>\
<<set $tax_evasion_score = Math.trunc($tax_evasion_score)>>\
<<set $reputation -= 200>>
<</link>>
<</if>>\
<<link "Accept this failure as a champion." "HeistTE Results">><<set $tax_evasion_score = 0>><<set $reputation -= 400>><</link>>
<<elseif $tax_evasion_timer >= 60>>\
A miscalculation here, a misplaced decimal there, and the plan crumbles. The tax office didn’t buy the scheme, and while you’re not in immediate trouble, the losses are brutal. You end up paying way more than you would’ve if you’d just played it straight. A costly lesson in creative accounting.
<<link "Sigh." "HeistTE Results">>
<<set $tax_evasion_score = ($tax_evasion_score / 100) * 40>>
<<set $tax_evasion_score = Math.trunc($tax_evasion_score)>>\
<<set $reputation -= 500>>\
<<morale `-10`>>\
<</link>>\
<<elseif $tax_evasion_timer >= 30>>\
Not perfect, not terrible. Some deductions went through, others got flagged, but at the end of the day, you walk away with a decent cut. Could’ve been smoother, but considering the risks, it's a solid enough win.
<<link "Nice." "HeistTE Results">>
<<set $tax_evasion_score = ($tax_evasion_score / 100) * 70>>
<<set $tax_evasion_score = Math.trunc($tax_evasion_score)>>\
<<set $reputation += 250>>\
<<morale `5`>>\
<</link>>\
<<elseif $tax_evasion_timer < 30>>\
A masterpiece of fraud. Every loophole exploited, every document impeccable. The tax office doesn't bat an eye, and the cash stays exactly where it belongs - in your pockets. It’s a work of financial art, the kind of scam they’ll never even realize happened.
<<link "Great." "HeistTE Results">>
<<set $reputation += 500>>\
<<morale `10`>>\
<</link>>\
<</if>>\
<</widget>>\<<silently>>
<<set _driver_skillcheck = $heist_difficulty + random(-2, 2)>>
<<set _gunner_skillcheck = $heist_difficulty + random(-3, 3)>>
<</silently>>\
<style>
body::before {
content: '';
background-image: url("img/background/events/TE_heist.webp");
inset: 0;
position: fixed;
filter:grayscale(60%);
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 91%);
background-size: cover;
}
</style>\
You gave all the papers to your driver and gunner, now it's their turn to work.
<<if $crew_driver_skill > _driver_skillcheck + 1>>\
<<set $tax_evasion_timer -= 10>>\
<div class="success">The driver reads the streets like an open book, cutting through alleys, timing the lights, and making every second count. You gain a little extra time - just enough to breathe easy.</div>\
<<elseif $crew_driver_skill < _driver_skillcheck - 1>>\
<<set $tax_evasion_timer += 10>>\
<div class="fail">Traffic, wrong turns, a stalled car at the worst possible moment - everything conspires against you. Driver lost some precious time on the road.</div>\
<<else>>\
<div class="even">It’s close, but the driver gets there just in time. No room for hesitation. Safe, but not by much.</div>
<</if>>\
Now it's time to handle all the papers to clerks in a post office.
<<if $crew_main_gunner_skill > _gunner_skillcheck + 1>>\
<<set $tax_evasion_timer -= 10>>\
<div class="success">The gunner steps into the post office like they own the place. A cold glare, a little intimidation, maybe even a casual hand resting on their jacket - people suddenly remember urgent business elsewhere. Within seconds, gunner at the front of the line, sliding the papers over before anyone dares complain. Smooth. It wins you some time.</div>\
<<elseif $crew_main_gunner_skill < _gunner_skillcheck - 1>>\
<<set $tax_evasion_timer += 10>>\
<div class="fail">Too much attitude, or maybe not enough - either way, the crowd isn't having it. An old lady launches into a speech about waiting her turn, some guy in a suit won’t budge, and before gunner know it, precious minutes are slipped away. By the time he reach the counter, the clerk is already flipping the "Closed" sign. It'll take some time to convience him to take your papers.</div>\
<<else>>\
<div class="even">The line is long, but the gunner keeps his cool. A little posturing, some well-placed grumbling, and a bit of luck help him to inch forward just fast enough. It’s tight, but the papers make it to the clerk before the window closes.</div>\
<</if>>\
And... you've done it. Let's wait for <<linkappend "results.">>
<<tax_evasion_results>>\
<</linkappend>>\<style>
body::before {
content: '';
background-image: url("img/background/events/TE_heist.webp");
inset: 0;
position: fixed;
filter:grayscale(60%);
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 91%);
background-size: cover;
}
</style>\
The gang gathers around the table, stacks of documents spread out like a damn battlefield map, every piece of the puzzle laid bare. Plans are whispered, numbers are crunched, and loopholes are carefully threaded. It’s not just about hiding the money, it’s about making it disappear without a trace...
Hours have slipped away in a haze of numbers and fine print. The groundwork is done, but now comes the trickiest part - the final touches. One last adjustment, one last forged signature, one last transaction to tie it all together. The clock is ticking, and the post office is about to close. If the documents aren’t sent out in time, the whole scheme falls apart. You need to finish it, personally, as a boss.
<<message "Hints for tax evasion.">>
Your goal is to guess a secret 4-digit code in the correct order. Each digit has a specific position. After each attempt, you will receive feedback:
<span class="right_place">Green</span> means the digit is correct and in the right position.
<span class="wrong_place">Yellow</span> means the digit is in the code but in the wrong position.
<span class="wrong_number">Red</span> means the digit is not in the code at all."
''The only possible numbers are 1 to 9.''
The quicker you finish your job, the bigger the score.
<</message>>\
<<link "Let's begin." "HeistTE">>
<<setup_TE>>\
<</link>>\<style>
body::before {
content: '';
background-image: url("img/background/events/TE_heist.webp");
inset: 0;
position: fixed;
filter:grayscale(60%);
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 91%);
background-size: cover;
}
</style>\
The job’s finally done. Papers filed, money moved, and nerves frayed, the crew exhales in unison.
Score: $tax_evasion_score​$.
<<link "Time to left the hell behind." "NewDay">>
<<dirty_money `$tax_evasion_score`>>\
<<heist_reset>>\
<<adddays 1>>
<<set $gameDate.setHours(8)>>
<<set $gameDate.setMinutes(0)>>
<</link>>\<<silently>>\
<<if $sex_mistakes == 2>>\
<<goto "Fail Lesb Sex">>\
<</if>>\
<<if $active_npc.pleasure >= 100>>\
<<goto "Lesb Sex Finish">>\
<</if>>\
<<if $active_npc.sex_stam < 1>>
<<goto "Fail Lesb Sex Stam">>
<</if>>
<</silently>>\
<<set $active_media = $lesbian_idle.random()>>\
<<set_bedroom_bg_sex>>\
<center>\
<span class="pic"><img @src ="$active_media"></span>
\
<<lesb_sex_type>>\
<<lesb_pleasure_meter>>\
<<lesb_sex_stam_meter>>\
<<if $active_npc.pleasure < 20>>\
<<foreplay_lesb>>\
<<else>>\
<<lesbian_sex>>\
<</if>>\
<<link "Stop this." "Home">>
<<set $active_npc.friendship -= 30>>\
<<sex_reset>>\
<<addhours 1>>\
<</link>>\
</center><<silently>>
<<if $active_npc.depravity >= 14>>\
<<set _anal_roll = random(0, 20)>>
<<if _anal_roll >= 10>>
<<set _media_sex = $home_anal.random()>>
<<set $anal_sex = true>>
<<else>>
<<set _media_sex = $home_vag.random()>>
<</if>>
<<else>>
<<set _media_sex = $home_vag.random()>>
<</if>>
<<set _media_bj = $home_blow.random()>>
<<set _friendship_change_multiplier = random(1, 3)>>
<</silently>>\
<<set_bedroom_bg_sex>>\
<center>\
People like you don’t have the luxury of lengthy foreplay, so, you've decided to do it quick today, you just need to prepare your partner for that. With a confident motion, you took your bedfellows dick out and start giving him a head.
<video @src="_media_bj" autoplay loop muted controls width="600" height="350"></video>
After a few sloppy minutes on the knees you've decided that it's time to turn your back to $active_npc.name.
<<if $anal_sex == false>>
And he goes vanilla today.
<<else>>\
And he went for you ass.
<</if>>\
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
Everyone had a quick fun tonight.
<<link "Quit from quickiest quickie." "Home">>
<<set $active_npc.friendship += _friendship_change_multiplier * $charm>>\
<<sex_reset>>\
<</link>>
</center>\<<set_home_bg>>\
<<if $band_right_hand == true>>\
You wake up to the sound of footsteps approaching. Before you can fully shake off the remnants of sleep, your right-hand man, $right_hand_name $right_haned.nickname is already standing in your room, arms crossed, waiting patiently.
<<else>>\
You wake up to the sound of footsteps approaching. Before you can fully shake off the remnants of sleep, one of your new recruits is already standing in your room, arms crossed, waiting patiently.
<</if>>\
<span class="male_text"> - "Boss, good morning. Hate to corner you like this right after you wake up, but we gotta talk. The gang's got a few people now, and letting things run wild ain't gonna do us any favors. Internal matters need your attention."</span>
A small pause, then he continues, <span class="male_text">- "And yeah, I won’t sugarcoat it, do not take it as a rudeness, but some choices you make ain’t always gonna work out the way we want. But that’s part of the game. You make the calls, we roll with ‘em."</span>
With that, he gestures towards the door. <span class="male_text"> - "C'mon, let's get to it. The gang’s waiting."</span>
<<in_link>><<link "Proceed." "Band Events">><<set $band_first_event = true>><</link>><</in_link>>\<<set_home_bg>>\
<<get_band_event>>\<<widget "get_band_event">>\
<<set _random_event = $band_events.random()>>\
<<switch _random_event>>\
<<case "solid_hustle">>\
<<include "Solid Hustle Event">>\
<<case "den_problem">>\
<<include "Den Problem Event">>\
<<case "arming">>\
<<include "Arming Event">>\
<<case "nc_dealer">>\
<<include "NC Drugdealer Event">>\
<<case "warehouse_raid">>\
<<if $warehouse_raid_cd == 0>>\
<<include "Warehouse Raid Event">>\
<<else>>\
<<get_band_event>>\
<</if>>\
<<case "pool_fun">>\
<<include "Pool Event">>\
<<case "troublemaker">>\
<<include "Troublemaker Event">>\
<<case "argument">>\
<<include "Argument Event">>\
<</switch>>\
<</widget>>\
<<widget "solid_hustle_results">>\
<<if _random_item_type == 0>>\
This "stash lead" led him to the garage full of junk. Rusty bikes, old TVs, and boxes of random crap. Not a total waste, but hardly the "big score" you were promised.
Loot: _amount _loot_item.
<<pickup $p_inv _loot_item _amount>>\
<<elseif _random_item_type == 1>>\
He got a jewelry box out of the stash, neat.
Loot: _amount _loot_item.
<<pickup $p_inv _loot_item _amount>>\
<<elseif _random_item_type == 2>>\
Apparently, he got a lead to the very sus weapons stash. Well, whatever, finders keepers.
Loot: _amount _loot_item.
<<pickup $p_range _loot_item _amount>>\
<</if>>\
<</widget>>\
<<widget "warehouse_raid_lost_items">>\
<<silently>>\
<<if $warehouse_inv.length >= 3>>
<<set _lost_item_1 = $warehouse_inv.array.random()>>\
<<set _lost_item_2 = $warehouse_inv.array.random()>>\
<<set _lost_item_3 = $warehouse_inv.array.random()>>\
<<drop $warehouse_inv _lost_item_1 1>>
<<drop $warehouse_inv _lost_item_2 1>>
<<drop $warehouse_inv _lost_item_3 1>>
<<notify 4s>>You lost _lost_item_1, _lost_item_2 and _lost_item_3<</notify>>
<<elseif $warehouse_inv.length == 2>>\
<<set _lost_item_1 = $warehouse_inv.array.random()>>\
<<set _lost_item_2 = $warehouse_inv.array.random()>>\
<<drop $warehouse_inv _lost_item_1 1>>
<<drop $warehouse_inv _lost_item_2 1>>
<<notify 4s>>You lost _lost_item_1 and _lost_item_2<</notify>>
<<else>>
<<notify 4s>>There's nothing to lose on your warehouse, huh <</notify>>
<</if>>
<</silently>>\
<</widget>>\<<silently>>\
<<set _random_item_type = random(0, 2)>>
<<if _random_item_type == 0>>
<<set _loot_item = either("Smartphone", "Old phone", "Wallet")>>
<<set _amount = random(10, 60)>>
<<set _payment = random(500, 3500)>>
<<elseif _random_item_type == 1>>
<<set _loot_item = either("Golden Ring", "Silver Ring", "Golden Chain")>>
<<set _amount = random(10, 40)>>
<<set _payment = random(1000, 3800)>>
<<elseif _random_item_type == 2>>
<<set _loot_item = either("Block 19", "Saga-12", "I16")>>
<<set _amount = random(2, 6)>>
<<set _payment = random(4000, 20000)>>
<</if>>
<</silently>>\
One of your gang members, a wiry guy with a fox-like grin, practically rubs his hands together as he approaches. <span class="male_text">- "Boss, listen, I got a lead on a stash. Real nice stuff - could be weapons, could be electronics, who knows? Point is, we can grab it for cheap before some other punks sniff it out."</span>
<span class="male_text"> - "I just need a little cash to make the deal happen. A small investment, yeah? Say, _payment​$ and we gucci. And when we flip this haul, we’ll be rolling in it. Easy money, boss. What do you say?"</span>
<<if $money >= _payment>>\
<<linkreplace "Pay for his small venture.">>\
<<replace ".option_2">><</replace>>\
<<money `-_payment`>>\
<<solid_hustle_results>>\
<<trade_link>><<link "Roll with it." "Home">><<addmins 30>><<morale `5`>><</link>><</trade_link>>\
<</linkreplace>>
<<else>>\
<span class="not_available"> Not enough munny.</span>
<</if>>\
<span class="option_2"><<out_link>><<link "Do not bother with it." "Home">>\
<<set _reputation_loss = random(50, 200)>>\
<<set $reputation -= _reputation_loss>>\
<<morale `-10`>>\
<<addmins 15>>\
<</link>><</out_link>> He'll be upset and maybe slightly disappointed in you after that, but who cares? What he’s offering is basically gambling - and gambling is some veeeery bad shit. You're not into that.</span><<silently>>\
<<set _rep_amount = random(50, 150)>>
<</silently>>\
Some of your guys approach, making it clear they’ve got a concern. <span class="male_text"> -"Boss, we’re runnin’ light while others are strapped. Not sayin’ we need a whole arsenal, just one crate to get started. We’ll figure out the rest ourselves, but right now we’re lookin’ real soft out there."</span>
<span class="male_text">- "This needs fixing, boss. Sort it out now, and it won’t be a problem again. If you don’t have the gear on hand, bring it later, i can distribute it, and you always can call me when you're home - but until then, unarmed boys ain't exactly boosting morale."</span><<if $band_right_hand == true>> - $right_hand.name $right_hand.nickname says. <<else>> - other goon says.<</if>>
<<if $warehouse_inv.has("Weapons Shipment")>>\
<<action_link>><<link "Provide your gang with weapon shipment." "Home">>\
<<drop $warehouse_inv "Weapons Shipment" 1>>\
<<morale `5`>>\
<<set $reputation += _rep_amount>>\
<<run $band_events.delete("arming")>>\
<</link>><</action_link>>
<</if>>\
<<out_link>><<link "You'll deal with it later." "Home">>
<<set $reputation -= _rep_amount>>\
<<morale `-10`>>\
<<set $event_arming_on = true>>\
<<run $band_events.delete("arming")>>\
<<set $band_universal_mod -= 2>>\
<<addmins 15>>\
<</link>><</out_link>>\<<silently>>\
<<set _drugs_type = random(0, 2)>>
<<if _drugs_type == 0>>
<<set _drug = "Drugs">>
<<set _amount = random(100, 200)>>
<<set _payment = random(2000, 5000)>>
<<elseif _drugs_type == 1>>
<<set _drug = "Steroids">>
<<set _amount = random(80, 170)>>
<<set _payment = random(3000, 7000)>>
<<elseif _drugs_type == 2>>
<<set _drug = "Aphrodisiac">>
<<set _amount = random(100, 200)>>
<<set _payment = random(2500, 5000)>>
<</if>>
<<set _rep = random(100, 250)>>\
<</silently>>\
One of your guys walks up, hands in his pockets, speaking low and fast. <span class="male_text"> "My buddy who ran a crib got hit - cops rolled in, he’s in deep shit. Needs cash to crawl out, and he’s throwing in some dope as a thank-you. You in? He asks for _payment​$ and will give _amount doses of _drug."</span>
Well, helping some locals will boost your rep - makes you look like someone who handles business. Plus, there’s an extra drugs for it. Ignore it, and people might start thinking you’re just some punk.
<<if $money >= _payment>>\
<<trade_link>><<link "Accept." "Home">>\
<<set $reputation += _rep>>\
<<money `-_payment`>>\
<<pickup $p_inv _drug _amount>>\
<<addmins 30>>\
<</link>><</trade_link>>
<<else>>\
<span class="not_available"> Not enough cash.</span>
<</if>>\
<<out_link>><<link "You don't care." "Home">>\
<<set $reputation -= _rep>>\
<<morale `-10`>>\
<<addmins 15>>\
<</link>><</out_link>><<silently>>\
<<set _amount_of_drugs = random(100, 200)>>
<</silently>>\
A couple of your guys drag a jittery man into the room, shoving him forward. <span class="male_text"> - "Boss, caught this punk slangin’ dope in your club. Didn’t ask, didn’t pay - figured you’d wanna handle it." </span> The dealer looks around, sweating, hands twitching like he’s ready to bolt but knows better.
Now, it’s your call. You could take his stash and send him packing, make him pay for the right to operate - though that’d stain the club’s rep - or hand him over to the cops, boosting the club’s image at the cost of your own.
<<action_link>><<link "Take whats yours and send this guy away." "Home">>
<<addmins 30>>\
<<pickup $p_inv "Drugs" _amount_of_drugs>>\
<<notify 3s>> You took _amount_of_drugs doses of drugs from this dealer.<</notify>>\
<</link>><</action_link>>
<<trade_link>><<link "Make him pay you toll everyday" "Home">>
<<addmins 30>>\
<<set $nc_drugdealer_event = true>>\
<<run $band_events.delete("nc_dealer")>>\
<<nc_pop `-30`>>\
<</link>><</trade_link>>
<<action_link>><<link "Pass him to the cops" "Home">>
<<addmins 30>>\
<<nc_pop `10`>>\
<<set $reputation -= random(100, 250)>>\
<</link>><</action_link>>\
A couple of your guys rush in, looking tense. <span class="male_text"> "Boss, we got a problem - cops are all over the warehouse. You gotta see this."</span> No time to waste. <<in_link>><<link "You roll up with them." "Warehouse Raid Event Page">><<addmins 15>><</link>><</in_link>>\Well, sure enough, blue lights flash, officers are rummaging through your stock.
<span class="male_text"> - "Been after a warrant for this place a long time. And look at that - you got caught red-handed. Illegal goods, clear as day. Everyone involved is looking at serious time."</span> - smug-looking sergeant steps forward. <span class="male_text"> "Not that it matters - if we don’t find anything, we can always... fix that." </span>He mutters under his breath, almost to himself,
Yeah, right... He’s laying it on thick, but the message is clear - he’s fishing for a payoff. You could grease his palms and make them go away, or let them take a cut and walk. In worst case they seize a little product, but with the police chief behind you, you’re not losing sleep over it. Or.. there's another way.
<<if $money >= 8000>>\
<<trade_link>><<link "Pay him and his boys a 8000$ for their trouble." "Home">>
<<money `-8000`>>\
<<set $warehouse_raid_cd = 14>>\
<<addmins 30>>\
<</link>><</trade_link>> - this doesn’t guarantee they won’t come back later, but at least you won’t have to expect them for a couple of weeks.
<<else>>\
<span class="not_available"> If only you had atleast 8 grand on you...</span>
<</if>>\
<<if $charm >= 8>>\
<<charm_link>><<link "Offer a solution that you and him will like much more." "Warehouse Raid Quickie">><<set $warehouse_raid_cd = 14>><</link>><</charm_link>>
<<else>>\
<span class="not_available">Doesn't look like his interested in you sexually.</span>
<</if>>\
<<out_link>><<link "Shrug and drive away." "Home">>
<<set $reputation -= random(80, 120)>>\
<<warehouse_raid_lost_items>>\
<<set $warehouse_raid_cd = 14>>\
<<addmins 15>>\
<</link>><</out_link>><<set _media = $warehouse_raid_sex.random()>>\
<center>\
Guys in uniform probably aren’t your type - otherwise, you’d have switched sides. But there’s something intriguing about the tension between opposites. And you’re going to play on that. The sergeant’s interest clearly extends beyond just your criminal record.
You flash your guys a look, a silent order. They hesitate, then nod, backing off without a word. The sergeant raises a brow as the last of them steps away.
You step closer, letting your body language do the work. It didn't took a long before the serg reached his radio and said the expected words: <span class="male_text"> "All units, wrap it up. We’re done here."</span>
<<linkappend "Time to work on this case disappearance.">>
You and sergeant found a perfect spot for your "fieldwork". You just hope that this guy turned off his bodycam and no one's gonna check CCTV today... or, honestly, whatever.
<video @src="_media" autoplay loop muted controls width="600" height="350"></video>
He pounded you like he mean it, maybe he had some thoughts about opposites too.
Both of you had some fun this morning. This solution to this problem will get you some time before the next raid.
<<link "Time to get back to hustling." "Home">>
<<addhours 1>>\
<<set $warehouse_raid_cd = 14>>\
<<sex_rep_check>>\
<</link>>
<</linkappend>>\
</center>\A few of your guys lounge around, looking way too relaxed for a crew of criminals. One of them grins, nodding toward the backyard. <span class="male_text"> "Boss, we were thinkin’ - why not kick back a little? Pool’s right there, sun’s out, drinks are cold. Just a little downtime, y’know? You in?"</span>
Another one chimes in, already peeling off his jacket. <span class="male_text">"Ain’t like we’re slackin’ - just keepin’ morale up. Besides, it’s your place. You oughta enjoy it too."</span>
These guys aren’t exactly busy, so no big deal if they’re slacking off. Your gang practically lives in your backyard anyway - lounging by the pool, killing time. You can ignore it, let them enjoy themselves as usual, or even throw in some extras for a little morale boost cuz they brought it up. Not that you care. Unless… you’ve got something else in mind to "bust".
<<if $money >= 2000>>\
<<trade_link>><<link "Drop 2000$ for drinks and a few whores for your gang." "Home">>
<<money `-2000`>>\
<<morale `10`>>\
<<addmins 30>>\
<<notify 3s>> Your guys had a great time this morning. <</notify>>\
<</link>><</trade_link>>
<<else>>\
<span class="not_available"> You don't have any extra money for their leisure anyway. </span>
<</if>>\
<<charm_link>><<link "Join them." "Pool Event Quickie">><</link>><</charm_link>>
<<out_link>><<link "Whatever." "Home">>
<<addmins 15>>
<</link>><</out_link>>\<<silently>>\
<<set _media_entrance = $pool_entrance.random()>>\
<<set _media_sex = $pool_sex.random()>>\
<</silently>>\
<style>
body::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/home/pool.webp");
inset: 0;
position: fixed;
background-size: cover;
}
</style>\
<center>\
You smirk, deciding to indulge them - after all, what’s the point of having a crew if you can’t enjoy the perks? Disappearing inside for a moment, you slip into something more... attention-grabbing. When you step back out, all conversation dies. Eyes wander, smirks form, a few whistles break the silence.
<video @src="_media_entrance" autoplay loop muted controls width="600" height="350"></video>
Leaning against the railing, you let your gaze drift over them, slow and deliberate. <<linkappend "Well, the boys wanted a party, didn’t they?">>
<video @src="_media_sex" autoplay loop muted controls width="600" height="350"></video>
You've singled one out and had a blast with him. More would be too much for a start of the day.
That for sure will boost some "morale" in your gang.
<<if $boss_type == "Slut Boss">>\
Even though it's kind off expected move from you.\
<<elseif $boss_type == "Crime Legend">>\
Even though it's not exactly fitting for your status, no one dares to argue with your decisions.
<<else>>\
Even though it's not really expected from you and will raise some questions too. But who cares?
<</if>>\
<<link "Good morning." "Home">>
<<morale `5`>>\
<<addmins 45>>\
<<sex_rep_check>>\
<</link>>\
<</linkappend>>\
</center>\<style>
body.suburbs::before {
content: '';
background-image: url("img/background/suburbs/autocenter.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
As you pull up on your ride, a grease-streaked mechanic wipes his hands on a rag and strolls over. <span class="male_text"> - "Nice wheels. But you’re new around here, huh?"</span>
<span class="male_text">- "Listen, just a heads-up - this ain’t free territory. The mafia runs these streets, and they don’t like strangers rolling through without payin’ up. Sooner or later, they’ll come knockin’."</span>
He jerks a thumb toward the outskirts.<span class="male_text"> - "If you wanna settle it before they settle it for you, go see Romano. Big house, up on the hill. Can’t miss it."</span> With that, he steps back, leaving you with your fresh ride - and a fresh problem. Now you know where is Mafia's HQ.
<<link "Proceed." "Auto Center">>
<<set $mafia_base = true>>\
<<addmins 15>>\
<</link>>\<span class="red_phone">- "Speak."</span>
<<link "How do I get money?">>
<<replace ".red_phone">>\
- "Work. Work on your name, work on your skills. This ain't business course - people like you should spot opportunities the moment they arise."\
<</replace>>\
<</link>>
\
<<link "Why do I need reputation?">>
<<replace ".red_phone">>\
- "Without it you'll be in a stalemate. Bigger your name - more paths to choose."\
<</replace>>\
<</link>>
\
<<link "How to get more reputation?">>
<<replace ".red_phone">>\
- "Make some bad decisions. Everything that affects your wealth also affects your name. Bigger score - more rumours."\
<</replace>>\
<</link>>
\
<<link "How to became better, faster and stronger?">>
<<replace ".red_phone">>\
- "Just keep doing whatever you can - every job helps sharpen your skills. No need to overdo it; if you pay attention to your traits, you'll know when to stop."\
<</replace>>\
<</link>>
\
<<link "Who I haven't found yet?">>
<<replace ".red_phone">>\
<<if $gangs_base == true && $mafia_base == true && $cartel_base == true && $hackers_met > 0>>\
- "You've found everyone important."\
<<else>>\
- "You haven't found:"
<<if $gangs_base == false>>\
<<linkappend "Gangs">>\
- "slack around their district and you'll find out. Also, have you ever wondered why is there only one pawnshop?" \
<</linkappend>>
<</if>>\
<<if $mafia_base == false>>\
<<linkappend "Mafia">>\
- "their main source of income are stolen wheels. Capisce?" \
<</linkappend>>
<</if>>\
<<if $cartel_base == false>>\
<<linkappend "Cartel">>\
- "Cartel always operates with illegal cargo." \
<</linkappend>>
<</if>>\
<<if $bikers_met == false>>\
<<linkappend "Bikers">>\
- "they are not hiding." \
<</linkappend>>
<</if>>\
<<if $hackers_met == 0>>\
<<linkappend "Hackers">>\
- "someone will show you where they are. Not me."\
<</linkappend>>\
<</if>>\
<</if>>\
<</replace>>\
<</link>>
\
<<link "Is there any shortcuts?">>
<<replace ".red_phone">>- "No... Actually, yes. Look for a bright red hand symbol somewhere in the harbor. Only in time of need.">><</replace>>\
<</link>>
\
<<link "What operations haven't I set up yet?">>
<<replace ".red_phone">>\
<<if $p_warehouse > 0 && $p_lab == true && $night_club == true && $brothel == true && $moonshine_trailer == true>>\
- "You've got everything."
<<else>>\
- "You didn't got your hands on:"
<<if $p_warehouse == 0>>\
<<linkappend "Warehouse">>\
- "shouldn't be a problem." \
<</linkappend>>
<</if>>\
<<if $p_lab == false>>\
<<linkappend "Laboratory">>\
- "you won't be able to set it up inside the city." \
<</linkappend>>
<</if>>\
<<if $brothel == false>>\
<<linkappend "Brothel">>\
- "you'll get it eventually."\
<</linkappend>>
<</if>>\
<<if $night_club == false>>\
<<linkappend "Night club">>\
- "make a call."\
<</linkappend>>
<</if>>\
<<if $moonshine_trailer == false>>\
<<linkappend "Moonshining.">>\
- "one poor bastard will sell it someday. Wait for it, expect an ad in the web."\
<</linkappend>>\
<</if>>\
<</if>>\
<</replace>>\
<</link>><style>
body.center::before {
content: '';
background-image: url("img/background/center/mall.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<if $changing_room_pervert == true>>\
<<set _roll_event = random(0, 10)>>\
<<if _roll_event >= 9>>\
<<goto "Changing Room Event Mall">>\
<</if>>\
<</if>>\
<center><<wardrobe_widget>>\
<<if $changing_room_pervert == true>>\
You feel a bit vulnerable here. Better hurry.
<<else>>\
You highly doubt that you're gonna meet another pervert today.
<</if>>\
<<out_link>><<link "Stop changing" "Mall">>
<<nude_check>>\
<</link>><</out_link>>
<<out_link>><<link "Get back to the main street of City Center" "City Center">>
<<nude_check>>\
<<addmins 15>>\
<</link>><</out_link>>
</center><style>
body.downtown::before {
content: '';
background-image: radial-gradient(circle, rgba(23,21,23,0.2) 22%, rgba(167,69,147,0.6) 57%), url("img/background/downtown/sexshop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
filter:grayscale(80%);
background-size: cover;
}
</style>\
<<if $changing_room_pervert == true>>\
<<set _roll_event = random(0, 10)>>\
<<if _roll_event >= 9>>\
<<goto "Changing Room Event Sexshop">>\
<</if>>\
<</if>>\
<center><<wardrobe_widget>>\
<<if $changing_room_pervert == true>>\
You feel a bit vulnerable here. Better hurry.
<<else>>\
You highly doubt that you're gonna meet another pervert today.
<</if>>\
<<out_link>><<link "Stop browsing" "Sexshop">>
<<nude_check>>\
<</link>><</out_link>>
<<out_link>><<link "Get back to the main street of Downtown" "Downtown">>
<<addmins 15>>\
<<nude_check>>\
<</link>><</out_link>>
</center><<widget "lvlup_notification">>\
<<if $burglar_trait_progress >= 100 && !$p_traits.includes("burglar")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $burglar_trait_progress >= 200 && !$p_traits.includes("burglar_2")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $car_thief_trait_progress >= 50 && !$p_traits.includes("car_thief_1")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $car_thief_trait_progress >= 125 && !$p_traits.includes("car_thief_2")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $fitness_trait_progress >= 50 && !$p_traits.includes("fitness_1")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $fitness_trait_progress >= 150 && !$p_traits.includes("fitness_2")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $fitness_trait_progress >= 300 && !$p_traits.includes("fitness_3")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $striptease_trait_progress >= 50 && !$p_traits.includes("strip_1")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $striptease_trait_progress >= 150 && !$p_traits.includes("strip_2")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $striptease_trait_progress >= 300 && !$p_traits.includes("strip_3")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $observer_trait_progress >= 100 && !$p_traits.includes("observer")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $observer_trait_progress >= 250 && !$p_traits.includes("observer_2")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $pickpocketer_trait_progress >= 100 && !$p_traits.includes("pickpocketer")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $melee_trait_progress >= 125 && !$p_traits.includes("melee_1")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $melee_trait_progress >= 300 && !$p_traits.includes("melee_2")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $melee_trait_progress >= 500 && !$p_traits.includes("melee_3")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $melee_trait_progress >= 750 && !$p_traits.includes("melee_4")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $melee_trait_progress >= 1000 && !$p_traits.includes("melee_5")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $racer_trait_progress >= 100 && !$p_traits.includes("racer_1")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $racer_trait_progress >= 300 && !$p_traits.includes("racer_2")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<<if $racer_trait_progress >= 600 && !$p_traits.includes("racer_3")>>\
<<replace ".lvlup">>\
<span class="lvlup">Take a break, let it click.</span>
<</replace>>\
<</if>>\
<</widget>>\
<<widget "pickpocketing_success">>\
<<if !$p_traits.includes("pickpocketer")>>\
<<set _random_amount = random(10, 20)>>\
<<set $pickpocketer_trait_progress += _random_amount>>\
<<set $pickpocketer_trait_progress = Math.trunc($pickpocketer_trait_progress)>>\
<<set $exp_percentage = ($pickpocketer_trait_progress / 100) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've raised your skills in pickpocketing! $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "pickpocketing_fail">>\
<<if !$p_traits.includes("pickpocketer")>>\
<<set _random_amount = random(5, 10)>>\
<<set $pickpocketer_trait_progress += _random_amount>>\
<<set $pickpocketer_trait_progress = Math.trunc($pickpocketer_trait_progress)>>\
<<set $exp_percentage = ($pickpocketer_trait_progress / 100) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've raised your skills in pickpocketing! Even though you failed... $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "burglar_success">>\
<<if !$p_traits.includes("burglar")>>\
<<set _random_amount = random(10, 25)>>\
<<set $burglar_trait_progress += _random_amount>>\
<<set $burglar_trait_progress = Math.trunc($burglar_trait_progress)>>\
<<set $exp_percentage = ($burglar_trait_progress / 100) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've raised your skills in burglary! $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("burglar_2")>>\
<<set _random_amount = random(10, 25)>>\
<<set $burglar_trait_progress += _random_amount>>\
<<set $burglar_trait_progress = Math.trunc($burglar_trait_progress)>>\
<<set $exp_percentage = ($burglar_trait_progress / 200) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've raised your skills in burglary! $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "burglar_fail">>\
<<if !$p_traits.includes("burglar")>>\
<<set _random_amount = random(5, 12)>>\
<<set $burglar_trait_progress += _random_amount>>\
<<set $burglar_trait_progress = Math.trunc($burglar_trait_progress)>>\
<<set $exp_percentage = ($burglar_trait_progress / 100) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've improved your burglary skills - even if this one didn’t go as planned. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("burglar_2")>>\
<<set _random_amount = random(5, 12)>>\
<<set $burglar_trait_progress += _random_amount>>\
<<set $burglar_trait_progress = Math.trunc($burglar_trait_progress)>>\
<<set $exp_percentage = ($burglar_trait_progress / 200) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've improved your burglary skills - even if this one didn’t go as planned. $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "car_thief_success">>\
<<if !$p_traits.includes("car_thief_1")>>\
<<set _random_amount = random(10, 16)>>\
<<set $car_thief_trait_progress += _random_amount>>\
<<set $car_thief_trait_progress = Math.trunc($car_thief_trait_progress)>>\
<<set $exp_percentage = ($car_thief_trait_progress / 50) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've improved your car thievery skills! $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("car_thief_2")>>\
<<set _random_amount = random(10, 16)>>\
<<set $car_thief_trait_progress += _random_amount>>\
<<set $car_thief_trait_progress = Math.trunc($car_thief_trait_progress)>>\
<<set $exp_percentage = ($car_thief_trait_progress / 125) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've improved your car thievery skills! $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "car_thief_fail">>\
<<if !$p_traits.includes("car_thief_1")>>\
<<set _random_amount = random(4, 9)>>\
<<set $car_thief_trait_progress += _random_amount>>\
<<set $car_thief_trait_progress = Math.trunc($car_thief_trait_progress)>>\
<<set $exp_percentage = ($car_thief_trait_progress / 50) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've improved your car thievery skills despite this failure. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("car_thief_2")>>\
<<set _random_amount = random(4, 9)>>\
<<set $car_thief_trait_progress += _random_amount>>\
<<set $car_thief_trait_progress = Math.trunc($car_thief_trait_progress)>>\
<<set $exp_percentage = ($car_thief_trait_progress / 125) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've improved your car thievery skills despite this failure. $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "fitness_progress">>\
<<if !$p_traits.includes("fitness_1")>>\
<<set $exp_percentage = ($fitness_trait_progress / 50) * 100>>\
<<notify 4s>>You've improved your physique today! $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("fitness_2")>>\
<<set $exp_percentage = ($fitness_trait_progress / 150) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've improved your physique today! $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("fitness_3")>>\
<<set $exp_percentage = ($fitness_trait_progress / 300) * 100>>\
<<notify 4s>>You've improved your physique today! $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "striptease_progress">>\
<<if !$p_traits.includes("strip_1")>>\
<<set _random_amount = random(12, 24)>>\
<<set $striptease_trait_progress += _random_amount>>\
<<set $striptease_trait_progress = Math.trunc($striptease_trait_progress)>>\
<<set $exp_percentage = ($striptease_trait_progress / 50) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've improved your dancing skills today! $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<<if !$p_traits.includes("strip_2")>>\
<<set _random_amount = random(12, 24)>>\
<<set $striptease_trait_progress += _random_amount>>\
<<set $striptease_trait_progress = Math.trunc($striptease_trait_progress)>>\
<<set $exp_percentage = ($striptease_trait_progress / 150) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've improved your dancing skills today! $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<<if !$p_traits.includes("strip_3")>>\
<<set _random_amount = random(12, 24)>>\
<<set $striptease_trait_progress += _random_amount>>\
<<set $striptease_trait_progress = Math.trunc($striptease_trait_progress)>>\
<<set $exp_percentage = ($striptease_trait_progress / 300) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've improved your dancing skills today! $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "observer_progress">>\
<<if !$p_traits.includes("observer")>>\
<<set _random_amount = random(5, 10)>>\
<<set $observer_trait_progress += _random_amount>>\
<<set $observer_trait_progress = Math.trunc($observer_trait_progress)>>\
<<set $exp_percentage = ($observer_trait_progress / 100) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've become more keen. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("observer_2")>>\
<<set _random_amount = random(6, 18)>>\
<<set $observer_trait_progress += _random_amount>>\
<<set $observer_trait_progress = Math.trunc($observer_trait_progress)>>\
<<set $exp_percentage = ($observer_trait_progress / 250) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You've become more keen. $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "melee_success">>\
<<if !$p_traits.includes("melee_1")>>\
<<set _random_amount = random(20, 40)>>\
<<set $melee_trait_progress += _random_amount>>\
<<set $melee_trait_progress = Math.trunc($melee_trait_progress)>>\
<<set $exp_percentage = ($melee_trait_progress / 125) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You got a thing or two about fighting. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("melee_2")>>\
<<set _random_amount = random(23, 40)>>\
<<set $melee_trait_progress += _random_amount>>\
<<set $melee_trait_progress = Math.trunc($melee_trait_progress)>>\
<<set $exp_percentage = ($melee_trait_progress / 300) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You got a thing or two about fighting. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("melee_3")>>\
<<set _random_amount = random(26, 40)>>\
<<set $melee_trait_progress += _random_amount>>\
<<set $melee_trait_progress = Math.trunc($melee_trait_progress)>>\
<<set $exp_percentage = ($melee_trait_progress / 500) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You got a thing or two about fighting. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("melee_4")>>\
<<set _random_amount = random(30, 40)>>\
<<set $melee_trait_progress += _random_amount>>\
<<set $melee_trait_progress = Math.trunc($melee_trait_progress)>>\
<<set $exp_percentage = ($melee_trait_progress / 750) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You got a thing or two about fighting. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("melee_5")>>\
<<set _random_amount = random(30, 50)>>\
<<set $melee_trait_progress += _random_amount>>\
<<set $melee_trait_progress = Math.trunc($melee_trait_progress)>>\
<<set $exp_percentage = ($melee_trait_progress / 1000) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You got a thing or two about fighting. $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "melee_fail">>\
<<if !$p_traits.includes("melee_1")>>\
<<set _random_amount = random(10, 20)>>\
<<set $melee_trait_progress += _random_amount>>\
<<set $melee_trait_progress = Math.trunc($melee_trait_progress)>>\
<<set $exp_percentage = ($melee_trait_progress / 125) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You got a thing or two about fighting, your bruises are evidence of that. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("melee_2")>>\
<<set _random_amount = random(12, 21)>>\
<<set $melee_trait_progress += _random_amount>>\
<<set $melee_trait_progress = Math.trunc($melee_trait_progress)>>\
<<set $exp_percentage = ($melee_trait_progress / 300) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You got a thing or two about fighting, your bruises are evidence of that. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("melee_3")>>\
<<set _random_amount = random(14, 24)>>\
<<set $melee_trait_progress += _random_amount>>\
<<set $melee_trait_progress = Math.trunc($melee_trait_progress)>>\
<<set $exp_percentage = ($melee_trait_progress / 500) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You got a thing or two about fighting, your bruises are evidence of that. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("melee_4")>>\
<<set _random_amount = random(16, 25)>>\
<<set $melee_trait_progress += _random_amount>>\
<<set $melee_trait_progress = Math.trunc($melee_trait_progress)>>\
<<set $exp_percentage = ($melee_trait_progress / 750) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You got a thing or two about fighting, your bruises are evidence of that. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("melee_5")>>\
<<set _random_amount = random(17, 26)>>\
<<set $melee_trait_progress += _random_amount>>\
<<set $melee_trait_progress = Math.trunc($melee_trait_progress)>>\
<<set $exp_percentage = ($melee_trait_progress / 1000) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You got a thing or two about fighting, your bruises are evidence of that. $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "racer_success">>\
<<if !$p_traits.includes("racer_1")>>\
<<set _random_amount = random(20, 40)>>\
<<set $racer_trait_progress += _random_amount>>\
<<set $racer_trait_progress = Math.trunc($racer_trait_progress)>>\
<<set $exp_percentage = ($racer_trait_progress / 100) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You felt this thing called a freedom. On the road, of course. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("racer_2")>>\
<<set _random_amount = random(24, 40)>>\
<<set $racer_trait_progress += _random_amount>>\
<<set $racer_trait_progress = Math.trunc($racer_trait_progress)>>\
<<set $exp_percentage = ($racer_trait_progress / 300) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You felt this thing called a freedom. On the road, of course. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("racer_3")>>\
<<set _random_amount = random(28, 42)>>\
<<set $racer_trait_progress += _random_amount>>\
<<set $racer_trait_progress = Math.trunc($racer_trait_progress)>>\
<<set $exp_percentage = ($racer_trait_progress / 600) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You felt this thing called a freedom. On the road, of course. $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "racer_fail">>\
<<if !$p_traits.includes("racer_1")>>\
<<set _random_amount = random(15, 25)>>\
<<set $racer_trait_progress += _random_amount>>\
<<set $racer_trait_progress = Math.trunc($racer_trait_progress)>>\
<<set $exp_percentage = ($racer_trait_progress / 100) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You could learn a thing or two about riding on such speed. Well... $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("racer_2")>>\
<<set _random_amount = random(15, 30)>>\
<<set $racer_trait_progress += _random_amount>>\
<<set $racer_trait_progress = Math.trunc($racer_trait_progress)>>\
<<set $exp_percentage = ($racer_trait_progress / 300) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You could learn a thing or two about riding on such speed. Well... $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("racer_3")>>\
<<set _random_amount = random(20, 30)>>\
<<set $racer_trait_progress += _random_amount>>\
<<set $racer_trait_progress = Math.trunc($racer_trait_progress)>>\
<<set $exp_percentage = ($racer_trait_progress / 600) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You could learn a thing or two about riding on such speed. Well... $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "gloryhole_progress">>\
<<if !$p_traits.includes("gh_whore")>>\
<<set _random_amount = random(8, 14)>>\
<<set $gh_whore_trait_progress += _random_amount>>\
<<set $gh_whore_trait_progress = Math.trunc($gh_whore_trait_progress)>>\
<<set $exp_percentage = ($gh_whore_trait_progress / 100) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You're learning some techniques. $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "seller_progress">>\
<<if !$p_traits.includes("seller")>>\
<<set _random_amount = random(7, 14)>>\
<<set $seller_trait_progress += _random_amount>>\
<<set $seller_trait_progress = Math.trunc($seller_trait_progress)>>\
<<set $exp_percentage = ($seller_trait_progress / 100) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You're learning some gaslighting methods and nlp techniques. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("seller_2")>>\
<<set _random_amount = random(7, 16)>>\
<<set $seller_trait_progress += _random_amount>>\
<<set $seller_trait_progress = Math.trunc($seller_trait_progress)>>\
<<set $exp_percentage = ($seller_trait_progress / 250) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>You're learning some gaslighting methods and nlp techniques. $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\
<<widget "anal_whore_progress">>\
<<if !!$p_traits.includes("anal_whore")>>\
<<set _random_amount = random(6, 12)>>\
<<set $anal_whore_trait_progress += _random_amount>>\
<<set $anal_whore_trait_progress = Math.trunc($anal_whore_trait_progress)>>\
<<set $exp_percentage = ($anal_whore_trait_progress / 100) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>It hurts. But you're getting used to that. $exp_percentage%/100% for a new trait.<</notify>>\
<<elseif !$p_traits.includes("anal_whore_2")>>\
<<set _random_amount = random(8, 14)>>\
<<set $anal_whore_trait_progress += _random_amount>>\
<<set $anal_whore_trait_progress = Math.trunc($anal_whore_trait_progress)>>\
<<set $exp_percentage = ($anal_whore_trait_progress / 250) * 100>>\
<<set $exp_percentage = Math.trunc($exp_percentage)>>\
<<notify 4s>>It hurts. But you're getting used to that. $exp_percentage%/100% for a new trait.<</notify>>\
<</if>>\
<</widget>>\<style>
body::before {
content: '';
background-image: url("img/UI/menu_background.webp");
inset: 0;
position: fixed;
filter:grayscale(100%);
mask-image: radial-gradient(circle, rgba(29,29,29,0.3) 70%, rgba(10,8,2,0.6) 81%);
background-size: cover;
}
</style>\
<center>\
Thanks to:
<a href="https://github.com/ChapelR/custom-macros-for-sugarcube-2">ChapelR</a> for their macros collection. Used macros: Message, Notify, <a href="https://twinelab.net/simple-inventory/#/">Simple Inventory</a> and Meter Macro.
<a href="https://github.com/Headsarm/twine-sugarcube-blackjack">Headsarm</a> for their blackjack.
<a href="https://www.patreon.com/HiEv">HiEv</a> for their <a href="https://hiev-heavy-ind.com/Sample_Code/Sample_Code.html#Main%20Menu">Keyboard Navigation</a> code.
Attribution for images provided under the Creative Commons framework:
Icons from https://www.freepik.com/ by: Aranagraphics and the ones listed by Freepik themselves.
Icons from https://www.flaticon.com/ by: Jesus Chavarria; Smartline; Adury5711; Georgy; Ylivdesign; max.icons; heisenberg_jr; Creative Stall Premium; kornkun; Us and Up; iconset.co; Three musketeers; LAB Design Studio; Darius Dan; agus raharjo; iconpro86; and a lot of icons by Freepik but downloaded on Flaticon.
A few images from https://pngtree.com/ and https://www.pngwing.com/.
Images from https://unsplash.com/ by: Adam Marikar; Adolfo Felix; Aleksandr Popov; Alex Ramon; Alice Pasqual; Andress Jasso; Anotia Wang; Antoine-J; Antonio Molinari; Arun Sharma; Bartlomiej Balicki; Bernard Hermant; Brock Wegner; Buchen Wang; Calvin Ma; Carson Masterson; Chris Anderson; Chris Bair; Christelle Bourgeois; Chuttersnap; Danil Aksenov; David Guliciuc; Egor Vikhrev; Emily Wang; Emma Steinhobel; Erik Andersson; Eric Mclean; Frames For Your Heart; Gurpreet Singh; Haley Owens; Hmsse Khan; Humphrey Muleba; John Fornander; Jon Tyson; Kam Idris; Kevin Schmid; Kvnga; Lotus Design'n'print; Luke Stackpoole; Mak; Mark Champs; Michael Soledad; Mike Benna; Nastuh Abootalebi; Nicolas Hoizey; Nicolas Thomas; Oliur; Ousa Chea; Patrick Tomasso; Pexels; Pim Myten; Radowan Nakif; R Architecture; Ruchindra Gunasekara; Samuel Ryde; Sanjoy Saha; Sasha Stories; Slidebean; Spacejoy; Tarik Haiga; Tim Hufner; Tyler Casey; Wesley Johnson; Wesley Tingey; Yeongkyeong; Yuriy Fomin; Honey Yanibel; Pascal Meier; Tom Def; Inga Gezalian; Andraz Lazic;
Fonts used: Chantelli Antiqua by Bernd Montag; Kremlin by Vic Fieger; Old Horror Films by ToughCrest; Pixel Countdown by Pixel Sagas; Schoolbell by Font Diner; Newspaper Cutout White On Black by onlygfxcom;
Most video media consists of promo materials and therefore retains all source watermarks. The ones without watermarks were downloaded from either pornhub, sex.com or pornpics.com.
''If you recognize your work in this project and want it removed, contact me via email.'' Your work will be removed ASAP. <span class="small_font">Please, don't sue me</span>
My email: shadydealsveryshady@gmail.com.
<a href="https://www.patreon.com/c/ShadyDeals">Patreon.</a>
<<message "Changelog">>
V0.1.5(hotfix)
Fixes:
1. Broken notify during pool event;
2. Right hand forgot his name during the arming event;
3. PC's partner got lost during a very classic position when he wanted to switch;
4. Getting caught during a warehouse burglary would transport PC to Downtown, locking all special interactions with the Distributor and the special condition for a heist. Damn;
5. Romance fraud at the character creation was indeed a fraud - it didn’t give the PC a charm point;
6. Broken notification about raising one of the naughtiest skills;
7. Number NaNs thanks to PC's finest establishment in the Harbor.
Changes:
1. Added cell phones to thieves' loot table.
V0.1.4(hotfix)
Fixes:
1. No options during vehicle theft;
2. Brightness settings were not applied to Mafia's mansion.
V0.1.3(hotfix)
Fixes:
1. The flawless "Cash on the Wheels" was broken and wasn’t giving you all rewards;
2. Some formatting on the Distributor's page.
Changes:
1. Lowered the required amount of charm to seduce the Distributor from 13 to 10. I've gone overbroad with this initially tbh.
V0.1.2(hotfix)
Fixes:
1. Non-existent packing speed for shipments (auxiliary upgrades will reset on pre 0.1.2 version saves);
2. Ability to remove prostitutes from their positions;
V0.1.1(hotfix)
Fixes:
1. Opacity on the videos;
2. Coin washer message spam if there’s not enough dirty money to launder;
3. Moonshine production bug that prevented new shipments from appearing in the PC’s warehouse.
Changes:
1. Small placeholder-ish notification when interacting with an NPC using the "Hit the bar" button.
<</message>>
<<link "Close" $return>><</link>>
</center>\<center><div class="disclaimer"><span class="red_text">Disclaimer:</span> \
This game contains mature themes such as drug use, alcohol consumption, sexual content, moderate violence, and gambling. It is intended for adult audiences only. By continuing, you confirm that you are at least 18 years old, or the legal age of adulthood in your country, whichever is higher, and are fully aware of the content present in the game.
Please proceed only if you are comfortable with these themes. Discretion is advised.</div>
<<link "Ok." "StartPage">><</link>>
</center>\<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/sexshop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
filter:grayscale(80%);
background-size: cover;
}
</style>\
<<set _media = $changing_room_sex.random()>>\
<center>\
Obviously, he's not here to help you pick a better look, but still, you’ve decided to indulge his curiosity - and maybe even your own. It’s kinda weird to openly invite a pervert into such a tight space. Luckily, there was just enough room for both of you. <<linkappend "What could possibly go wrong?">>
<video @src="_media" autoplay loop muted controls width="600" height="350"></video>
This went quickly from 0 to 100. He seized the opportunity with rough intent - he begin pounding you just before you could rethink your choices. No foreplay, no numbers exchanged - just a quick release for him and a naughty idea on your part.
You wonder if the shop staff heard this your little escapade. Well, <<link "whatever." "Sexshop">><<addmins 20>><<nude_check>><</link>>
<</linkappend>>\
</center>\<style>
body.downtown::before {
content: '';
background-image: url("img/background/downtown/sexshop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
filter:grayscale(80%);
background-size: cover;
}
</style>\
<<set $changing_room_pervert = false>>\
While you were rummaging through your things, you didn't catch the faint rustle behind you. But when you turned around, you nearly jumped - a man was devouring you with his gaze. The moment he noticed you looking, he locked eyes with you.
<<charm_link>><<link "Smirk and invite him into the room" "Changing Quickie Sexshop">>
<<addmins 5>>\
<<sex_rep_check>>\
<<stam `-1`>>\
<<depravity `1`>>\
<</link>><</charm_link>>
<<if $p_inv.has("Handheld Taser")>>\
<<action_link>><<link "Use your taser and run away" "Downtown">>
<<drop $p_inv "Handheld Taser" 1>>\
<<addmins 15>>\
<<nude_check>>\
<</link>><</action_link>>
<</if>>\
<<if $p_traits.includes("fitness_1")>>\
<<action_link>><<link "Push him away and exit this room" "Sexshop">>
<<addmins 5>>\
<<nude_check>>\
<<set $reputation += 50>>\
<</link>><</action_link>> - you are strong enough to show him that you're no joke.
<<else>>\
<span class="not_available">You don't feel yourself strong enough to just push him away.</span>
<</if>>\
<<action_link>><<link "Scream" "Sexshop">>
<<set $reputation -= 100>>\
<<addmins 5>>\
<<nude_check>>\
<<notify 3s>>The sexshop staff led this guy away somewhere.<</notify>>\
<</link>><</action_link>> - It'll scare him away for sure, but your reputation will take a hit.<style>
body.center::before {
content: '';
background-image: url("img/background/center/mall.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<set $changing_room_pervert = false>>\
While you were rummaging through your things, you didn't catch the faint rustle behind you. But when you turned around, you nearly jumped - a man was devouring you with his gaze. The moment he noticed you looking, he locked eyes with you.
<<charm_link>><<link "Smirk and invite him into the room" "Changing Quickie Mall">>
<<addmins 5>>\
<<sex_rep_check>>\
<<stam `-1`>>\
<<depravity `1`>>\
<</link>><</charm_link>>
<<if $p_inv.has("Handheld Taser")>>
<<action_link>><<link "Use your taser and run away" "City Center">>\
<<drop $p_inv "Handheld Taser" 1>>\
<<addmins 15>>\
<<nude_check>>\
<</link>><</action_link>>
<</if>>\
<<if $p_traits.includes("fitness_1")>>\
<<action_link>><<link "Push him away and exit this room" "Mall">>
<<addmins 5>>\
<<nude_check>>\
<<set $reputation += 50>>\
<</link>><</action_link>> - you are strong enough to show him that you're no joke.
<<else>>\
<span class="not_available">You don't feel yourself strong enough to just push him away.</span>
<</if>>\
<<action_link>><<link "Scream" "Mall">>
<<set $reputation -= 100>>\
<<addmins 5>>\
<<nude_check>>\
<<notify 3s>>The mall staff led this guy away somewhere.<</notify>>\
<</link>><</action_link>> - It'll scare him away for sure, but your reputation will take a hit.<style>
body.center::before {
content: '';
background-image: url("img/background/center/mall.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<set _media = $changing_room_sex.random()>>\
<center>\
Obviously, he's not here to help you pick a better look, but still, you’ve decided to indulge his curiosity - and maybe even your own. It’s kinda weird to openly invite a pervert into such a tight space. Luckily, there was just enough room for both of you. <<linkappend "What could possibly go wrong?">>
<video @src="_media" autoplay loop muted controls width="600" height="350"></video>
This went quickly from 0 to 100. He seized the opportunity with rough intent - he begin pounding you just before you could rethink your choices. No foreplay, no numbers exchanged - just a quick release for him and a naughty idea on your part.
You wonder if the shop staff heard this your little escapade. Well, <<link "whatever." "Mall">><<nude_check>><<addmins 20>><</link>>
<</linkappend>>\
</center>\<<if $nc_pop < 15>>\
<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-lowpop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<elseif $nc_pop >= 15 && $nc_pop < 60>>\
<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-midpop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<else>>\
<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-highpop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<</if>>\
<<set _media = $nc_sex.random()>>\
<center>\
You guided the guy straight to the secluded VIP lounge...
<video @src="_media" autoplay loop muted controls width="600" height="350"></video>
...and then fucked him. He'll gonna remember this evening for some time. Who knew that dealing with angry customers could be fun sometimes? Well, at least when you're in your position. But anyway it's better to not let people get used to that.
<<link "That was easy." "NightClub PC">>
<<addmins 30>>\
<</link>>
</center>\<<if $nc_pop < 15>>\
<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-lowpop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<elseif $nc_pop >= 15 && $nc_pop < 60>>\
<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-midpop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<<else>>\
<style>
body.center::before {
content: '';
background-image: url("img/background/center/nc-highpop.webp");
inset: 0;
position: fixed;
mask-image: linear-gradient(to top left, black 52%, transparent 56%);
background-size: cover;
}
</style>\
<</if>>\
<<set _random_event = random(1, 20)>>\
You slip into the lounge area of your club, settling into a plush chair with a perfect view of the bustling dance floor. The music pulses in the air, vibrating through your chest as neon lights flash in sync with the beats. Bartender gave you some drinks and some of your goons started to gather near you. It became quite obvious that you're in control here.
<<if _random_event > 16>>\
<<nc_drug_trade>>\
<<elseif _random_event > 12>>\
<<nc_weapon_trade>>\
<<elseif _random_event > 8>>\
<<nc_weapon_dealer>>\
<<elseif _random_event > 4>>\
<<nc_moonshiner>>\
<<elseif _random_event > 0>>\
<<nc_angry_customer>>\
<</if>>\<<widget "nc_drug_trade">>\
<<set _drugs_amount = (random(10, 16) * $cun)>>\
<<set _price = _drugs_amount * random(2, 5)>>\
Typical sus guy in a hoodie came to you closer. Hands in his pockets, hood up. No one knows how the cops let such obvious characters roam around the city center.
<span class="male_text">- "I know who you are, and I've got a few ideas about what you need. I’ve got a business offer for you: _drugs_amount pieces of drugs for _price​$, right now. It’s the best deal you’ll find on the street. And, well, bonus points for me coming to you personally?"</span>
<<if $money >= _price>>\
<<trade_link>><<link "Deal." "NightClub PC">>
<<money `-_price`>>\
<<pickup $p_inv "Drugs" _drugs_amount>>\
<<notify 3s>>He handled you a whole bag of drugs.<</notify>>\
<</link>><</trade_link>>
<<else>>\
<span class="not_available"> You don't have enough money. </span>
<</if>>\
<<action_link>><<link "Wave to the bouncers" "NightClub PC">>
<<addmins 5>>\
<<notify 3s>> No drug deals today.<</notify>>\
<</link>><</action_link>>
<</widget>>\
<<widget "nc_weapon_trade">>\
<<silently>>\
<<set _weapons_amount = random(3, 8)>>
<<set _weapons_type = random(1, 3)>>
<<if _weapons_type == 1>>
<<set _weapon = "Block 19">>
<<set _price = (_weapons_amount * random(800, 1600))>>
<<elseif _weapons_type == 2>>
<<set _weapon = "Saga-12">>
<<set _price = (_weapons_amount * random(2000, 3500))>>
<<elseif _weapons_type == 3>>
<<set _weapon = "I16">>
<<set _price = (_weapons_amount * random(3000, 4400))>>
<</if>>
<</silently>>\
Typical sus guy in a hoodie came to you closer. Hands in his pockets, hood up. No one knows how the cops let such obvious characters roam around the city center.
<span class="male_text">- "I know who you are, and I've got a few ideas about what you need. I’ve got a business offer for you: _weapons_amount of _weapon for a _price​$, right now. It’s the best deal you’ll find on the street. And, well, bonus points for me coming to you personally?"</span>
<<if $money >= _price>>\
<<trade_link>><<link "Deal." "NightClub PC">>
<<money `-_price`>>\
<<pickup $p_range _weapon _weapons_amount>>\
<<notify 3s>>He led you to his car and handled you a pack of boomsticks.<</notify>>\
<</link>><</trade_link>>
<<else>>\
<span class="not_available"> You don't have enough money. </span>
<</if>>\
<<action_link>><<link "Wave to the bouncers" "NightClub PC">>
<<addmins 5>>\
<<notify 3s>> No weapon deals today.<</notify>>\
<</link>><</action_link>>
<</widget>>\
<<widget "nc_weapon_dealer">>\
<<silently>>\
<<set _weapons_amount = random(4, 8)>>
<<set _weapons_type = random(1, 3)>>
<<if _weapons_type == 1>>
<<set _weapon = "Block 19">>
<<set _price = (random(100, 250) * $cun) * _weapons_amount>>
<<elseif _weapons_type == 2>>
<<set _weapon = "Saga-12">>
<<set _price = (random(250, 600) * $cun) * _weapons_amount>>
<<elseif _weapons_type == 3>>
<<set _weapon = "I16">>
<<set _price = (random(425, 900) * $cun) * _weapons_amount>>
<</if>>
<</silently>>\
A guy in a Hawaiian shirt casually walked up to your table, a cheeky grin on his face. You couldn’t help but raise an eyebrow - who comes to a nightclub like this, dressed for a vacation? And this city is nothing like a resort.
<span class="male_text">- "I’m not one to waste time. Word on the street is that you’ve got the best stuff, and I’m here to buy some... stuff. I'm interested in weapon. In _weapon exactly, in _weapons_amount pieces of it exactly, and i'm paying _price​$... exactly. Deal?"</span>
<<if $p_range.count(_weapon) >= _weapons_amount>>\
<<trade_link>><<link "Deal." "NightClub PC">>
<<money `_price`>>\
<<drop $p_range _weapon _weapons_amount>>\
<<notify 5s>>You called a few of your guys to help the buyer get his stuff. He was happy enough and proceeded on his vacation tour.<</notify>>\
<</link>><</trade_link>>
<</if>>\
<<action_link>><<link "Wave to the bouncers" "NightClub PC">>
<<addmins 5>>\
<<notify 3s>> No weapon deals today.<</notify>>\
<</link>><</action_link>>
<</widget>>\
<<widget "nc_moonshiner">>\
<<set _moonshine_amount = random(50, 180)>>\
<<set _price = (_moonshine_amount * random(40, 70))>>\
A guy in a flannel shirt swaggered up to your table, his boots making a heavy thud with each step. You can feel the scent of gasoline and fresh dirt even in there. That's an achievement for this guy.
<span class="male_text">- "Heard y’all run a tight ship here, and reckon this place gets through its fair share of liquor. Got a truckload of the finest moonshine, _moonshine_amount bottles for a _price​$. Might just be the best deal you'll get this side of town, darlin'."</span>
<<if $money >= _price>>\
<<trade_link>><<link "Deal." "NightClub PC">>
<<money `-_price`>>\
<<pickup $p_inv "Moonshine" _moonshine_amount>>\
<<notify 5s>>You whistled to some of your goons to take a load of bottles from redneck's truck.<</notify>>\
<</link>><</trade_link>>
<<else>>\
<span class="not_available"> You don't have enough money. </span>
<</if>>\
<<action_link>><<link "Wave to the bouncers" "NightClub PC">>
<<addmins 5>>\
<<notify 3s>> No moonshine deals today.<</notify>>\
<</link>><</action_link>>
<</widget>>\
<<widget "nc_angry_customer">>\
<<set _reason = $nc_angry_reasons.random()>>\
<<set _charm_needed = random(5, 10)>>\
<<set _cun_needed = random(7, 12)>>\
A partygoer stumbled up to your table, his face twisted in a scowl that looked more like a permanent frown than an expression, his breath smelled of vodka.
<span class="male_text">- "They told me you're the biggest around here, the biggest of the biggest. Well, guess what? I got a problem, can you imagine, _reason! You’re gonna deal with this or what?"</span>
<<if $charm >= _charm_needed>>\
It took him a few seconds to realize whom he was talking to. His expression changed drastically.
<span class="male_text">- "W-wait... You're kinda hot... They didn't tell me that a chick owns this place..."</span>
Okay, he still doesn't know anything.
<</if>>\
<<if $nc_angry_event_cd == 0>>\
You think dealing with him might impact the club's popularity.
<</if>>\
<<if $charm >= _charm_needed>>\
<<charm_link>><<link "Invite him to the VIP lounge; you'd like to hear his problems... in private." "NightClub Quickie">>
<<sex_rep_check>>\
<<if $nc_angry_event_cd == 0>>\
<<set $nc_angry_event_cd = 3>>\
<<nc_pop `1`>>\
<<notify 3s>>Well, that'll boost a popularity for your club for sure...<</notify>>\
<</if>>\
<</link>><</charm_link>>
<<else>>\
<span class="not_available">Maybe you could solve this problem with your looks, but this guy doesn’t seem to be interested. Sigh.</span>
<</if>>\
<<if $cun >= _cun_needed>>\
<<cun_link>><<link "Put him on his place" "NightClub PC">>
<<addmins 20>>\
<<if $nc_angry_event_cd == 0>>\
<<set $nc_angry_event_cd = 3>>\
<<nc_pop `1`>>\
<<notify 3s>>Well, that'll boost a popularity for your club for sure...<</notify>>\
<</if>>\
<</link>><</cun_link>>
<<else>>\
<span class="not_available">You could show him his place if you were a bit more cunning.</span>
<</if>>\
<<action_link>><<link "Wave to the bouncers" "NightClub PC">>
<<addmins 5>>\
<<if $nc_angry_event_cd == 0>>\
<<set $nc_angry_event_cd = 3>>\
<<nc_pop `-1`>>\
<<notify 3s>>Well, that'll boost a popularity for your club for sure...<</notify>>\
<</if>>\
<<notify 3s>> No deals with angry customers today.<</notify>>\
<</link>><</action_link>>
<</widget>>\<<set _cun_needed = random(5, 12)>>\
<<set _combat_needed = random(6, 10)>>\
<<set _rep = random(150, 250)>>\
A some street thug swaggered up, drippin’ attitude from head to toe, his grill flashin’. He sized you up with a smirk, arms spread wide like he just walked into his spot, not yours.
<span class="male_text">- "Man, I'on even know what they on ‘bout you. Talkin’ like you runnin’ things out here. Pfft. You ain't no gangsta, you ain't no real one. You ain't even from round here, so what you doin’ actin’ like the top dog? See, real ones? We put in work. We bleed for this. But you? You just sittin’ pretty in yo’ lil’ home, thinkin’ that make you somethin’. Nah. That ain't how it work in my streets."</span>
Who even allowed him to enter your house, you wonder. Probably someone's friend.
<<if $morale >= 80>>\
Some of your guys surrounded him, eyes on you, waiting for a signal.
<<action_link>><<link "Let your guys handle this." "Home">>
<<addmins 15>>\
<<pickup $p_inv "Golden Chain" 1>>\
<<notify 5s>>It's obvious who's the True here. Also, free golden chain.<</notify>>\
<</link>><</action_link>>
<<else>>\
<span class="not_available">Maybe if your gang’s morale were higher, you wouldn’t have ended up in this situation.</span>
<</if>>\
<<if $cun >= _cun_needed>>\
<<cun_link>><<link "Explain that you're down with the streets" "Home">>
<<set $reputation += _rep>>\
<<morale `5`>>\
<<addmins 15>>\
<<notify 3s>>It's obvious who's the True here.<</notify>>\
<</link>><</cun_link>>
<<else>>\
<span class="not_available">You could outwit him... but you're not cunning enough, sadly.</span>
<</if>>\
<<if $combat >= _combat_needed>>\
<<combat_link>><<link "Kick him out of your house personally." "Home">>
<<set $reputation += _rep>>\
<<morale `5`>>\
<<pickup $p_inv "Golden Chain" 1>>\
<<addmins 15>>\
<<notify 3s>>He'll learn his place. Also, free golden chain.<</notify>>\
<</link>><</combat_link>>
<<else>>\
<span class="not_available">You could kick him out, but you're not sure if you're strong enough.</span>
<</if>>\
<<out_link>><<link "You don't care. Just ignore him and do your things." "Home">>\
<<set $reputation -= _rep>>\
<<morale `-10`>>\
<<addmins 15>>\
<</link>><</out_link>><<set _theme = $argument_theme.random()>>\
<<set _cun_needed = random(5, 12)>>\
<<set _combat_needed = random(5, 10)>>\
<<set _rep = random(80, 200)>>\
Two thugs entered your home, eyeing each other like two dogs about to scrap over the last bone. One kept tugging at his chain, the other was working a toothpick like he planned to turn it into dust.
<span class="male_text">- "Boss, we got ourselves a real situation here. See, I’m sayin’ one thing, he’s sayin’ another, and now we’re both lookin’ stupid. Ain’t no way ‘round it - you're the only one who can call this right. We're arguing about _theme. So what’s it gonna be?"</span>
<<if $cun >= _cun_needed>>\
<<cun_link>><<link "Explain some truism to them" "Home">>
<<set $reputation += _rep>>\
<<morale `5`>>\
<<addmins 15>>\
<<notify 3s>>There's no place for dispute in your crew.<</notify>>\
<</link>><</cun_link>>
<<else>>\
<span class="not_available">You could outwit them... but you're not cunning enough, sadly.</span>
<</if>>\
<<if $combat >= _combat_needed>>\
<<combat_link>><<link "Make them understand that they're both idiots." "Home">>
<<set $reputation += _rep>>\
<<morale `5`>>\
<<addmins 15>>\
<<notify 3s>>There's no place for dispute in your crew.<</notify>>\
<</link>><</combat_link>>
<<else>>\
<span class="not_available">You could hammer some sense into their heads if you were stronger.</span>
<</if>>\
<<out_link>><<link "You don't care." "Home">>\
<<set $reputation -= _rep>>\
<<morale `-5`>>\
<<addmins 15>>\
<</link>><</out_link>><<widget "game_version_check">>\
<<silently>>
<<if !$game_version>>
<<set $packing_speed = 120>>\
<<run $warehouse_upgrades.delete("auxiliary_1")>>
<<run $warehouse_upgrades.delete("auxiliary_2")>>
<<run $warehouse_upgrades.delete("auxiliary_3")>>
<<set $game_version = 12>>\
<</if>>
<<if $game_version == 12>>
<<set $game_version = 13>>
<</if>>
<<if $game_version == 13>>
<<set $game_version = 14>>
<<restore_vehicle_theft_params>>
<</if>>
<<if $game_version == 14>>
<<pickup $thiefs_loot "Old phone" 1>>\
<<set $game_version = 15>>
<</if>>
<</silently>>\
<</widget>>\<<if $gigs_cd == 0>>\
<<setup_gigs>>\
<</if>>\
<center>\
<div class="gigs-grid">\
<div class="gig1"><<setup_gig_1>></div>\
<div class="gig2"><<setup_gig_2>></div>\
<div class="gig3"><<setup_gig_3>></div>\
<div class="gig4"><<setup_gig_4>></div>\
<div class="gig5"><<setup_gig_5>></div>\
<div class="gig6"><<setup_gig_6>></div>\
</div>\
</center>\<<widget "setup_gigs">>\
<<silently>>\
<<restore_gigs_params>>
<<set_gig_rep_scale>>\
<<set $gig_1 = $gigs_fluff.pluck()>>\
<<set $gig_2 = $gigs_nofluff.pluck()>>\
<<set $gig_3 = $gigs_fluff.pluck()>>\
<<set $gig_4 = $gigs_fluff.pluck()>>\
<<set $gig_5 = $gigs_nofluff.pluck()>>\
<<set $gig_6 = $gigs_fluff.pluck()>>\
<<set $gigs_cd = 3>>\
<<initialize_gig_2>>\
<<initialize_gig_5>>\
<</silently>>\
<</widget>>\
<<widget "restore_gigs_params">>
<<set $gigs_fluff = ["roasted_nails", "wanted_alien", "question", "help",]>>
<<set $gigs_nofluff = ["find_item_gig", "find_weapon", "car_steal", "fight", "frame",]>>
<<set $gig_item_completion = false>>
<<set $gig_weapon_completion = false>>
<<set $gig_car_steal_completion = false>>
<<set $gig_fight_completion = false>>
<<set $gig_frame_completion = false>>
<</widget>>
<<widget "set_gig_rep_scale">>\
<<if $reputation < 1000>>
<<set $gig_rep_scale = 1>>
<<set $gig_rep_scale_second = 1>>
<<elseif $reputation >= 1000 && $reputation < 2500>>
<<set $gig_rep_scale = 2>>
<<set $gig_rep_scale_second = 1>>
<<elseif $reputation >= 2500 && $reputation < 5000>>
<<set $gig_rep_scale = 3>>
<<set $gig_rep_scale_second = 1>>
<<elseif $reputation >= 5000 && $reputation < 10000>>
<<set $gig_rep_scale = 4>>
<<set $gig_rep_scale_second = 1>>
<<elseif $reputation >= 10000 && $reputation < 20000>>
<<set $gig_rep_scale = 5>>
<<set $gig_rep_scale_second = 2>>
<<elseif $reputation >= 20000>>\
<<set $gig_rep_scale = 6>>
<<set $gig_rep_scale_second = 3>>
<</if>>\
<</widget>>\
/* Non fluff gigs */
<<widget "initialize_gig_2">>\
<<if $gig_2 == "find_item_gig">>\
<<find_item_init>>\
<<elseif $gig_2 == "find_weapon">>\
<<find_weapon_init>>\
<<elseif $gig_2 == "car_steal">>\
<<car_steal_init>>\
<<elseif $gig_2 == "fight">>\
<<fight_init>>\
<<elseif $gig_2 == "frame">>\
<<frame_init>>\
<</if>>\
<</widget>>\
<<widget "initialize_gig_5">>\
<<if $gig_5 == "find_item_gig">>\
<<find_item_init>>\
<<elseif $gig_5 == "find_weapon">>\
<<find_weapon_init>>\
<<elseif $gig_5 == "car_steal">>\
<<car_steal_init>>\
<<elseif $gig_5 == "fight">>\
<<fight_init>>\
<<elseif $gig_5 == "frame">>\
<<frame_init>>\
<</if>>\
<</widget>>\
<<widget "setup_gig_2">>\
<<if $gig_2 == "find_item_gig">>\
<<find_item_gig>>\
<<elseif $gig_2 == "find_weapon">>\
<<find_weapon_gig>>\
<<elseif $gig_2 == "car_steal">>\
<<car_steal_gig>>\
<<elseif $gig_2 == "fight">>\
<<fight_gig>>\
<<elseif $gig_2 == "frame">>\
<<frame_gig>>\
<</if>>\
<</widget>>\
<<widget "setup_gig_5">>\
<<if $gig_5 == "find_item_gig">>\
<<find_item_gig>>\
<<elseif $gig_5 == "find_weapon">>\
<<find_weapon_gig>>\
<<elseif $gig_5 == "car_steal">>\
<<car_steal_gig>>\
<<elseif $gig_5 == "fight">>\
<<fight_gig>>\
<<elseif $gig_5 == "frame">>\
<<frame_gig>>\
<</if>>\
<</widget>>\
<<widget "find_item_init">>\
<<set $gig_needed_item = either("Golden Chain", "Golden Ring", "Silver Ring", "Smartphone", "Chems A", "Chems B", "Electrical Components")>>\
<<set $gig_item_amount = random(5, 20)>>\
<<set $gig_item_reward = ((random(150, 300) * $gig_item_amount) * $gig_rep_scale) * $gig_rep_scale_second>>\
<<if $gig_needed_item == "Golden Chain" || $gig_needed_item == "Golden Ring" || $gig_needed_item == "Silver Ring" || $gig_needed_item == "Smartphone">>
<<set $gig_item_type = "item">>
<<else>>
<<set $gig_item_type = "material">>
<</if>>
<</widget>>\
<<widget "gig_item_completion">>\
<<if $gig_item_type == "item">>\
<<if $p_inv.count($gig_needed_item, $gig_item_amount) && $gig_item_completion == false>>\
<<link "Send it over via ratmail">>\
<<drop $p_inv $gig_needed_item $gig_item_amount>>\
<<set $gig_item_completion = true>>\
<<money `$gig_item_reward`>>\
<<notify 3s>>You found your reward under your door.<</notify>>\
<<run Engine.show()>>\
<</link>>
<</if>>\
<<else>>\
<<if $p_craft.count($gig_needed_item, $gig_item_amount) && $gig_item_completion == false>>\
<<link "Send it over via ratmail">>\
<<drop $p_craft $gig_needed_item $gig_item_amount>>\
<<set $gig_item_completion = true>>\
<<money `$gig_item_reward`>>\
<<notify 3s>>You found your reward under your door.<</notify>>\
<<run Engine.show()>>\
<</link>>
<</if>>\
<</if>>\
<</widget>>\
<<widget "find_weapon_init">>\
<<set $gig_needed_weapon = either("Block 19", "Saga-12", "I16",)>>\
<<set $gig_weapon_amount = random(1, 6)>>\
<<set $gig_weapon_reward = ((random(500, 1000) * $gig_weapon_amount) * $gig_rep_scale) * $gig_rep_scale_second>>\
<</widget>>\
<<widget "gig_weapon_completion">>\
<<if $p_range.count($gig_needed_weapon, $gig_weapon_amount) && $gig_weapon_completion == false>>\
<<link "Send it over via ratmail">>\
<<drop $p_range $gig_needed_item $gig_item_amount>>\
<<set $gig_weapon_completion = true>>\
<<money `$gig_weapon_reward`>>\
<<notify 3s>>You found your reward under your door.<</notify>>\
<<run Engine.show()>>\
<</link>>
<</if>>\
<</widget>>\
<<widget "car_steal_init">>\
<<set $gig_car_steal_loc = either("harbor", "suburbs", "downtown", "center")>>
<<set $gig_car_steal_reward = (random(600, 1000) * $gig_rep_scale) * $gig_rep_scale_second>>
<<set $gig_car_steal_active = true>>
<</widget>>\
<<widget "fight_init">>\
<<set $gig_fight_loc = either("harbor", "suburbs", "downtown", "center")>>
<<set $gig_fight_reward = (random(500, 900) * $gig_rep_scale) * $gig_rep_scale_second>>
<<set $gig_fight_difficulty = random(1, 3)>>
<<set $gig_fight_active = true>>
<</widget>>\
<<widget "frame_init">>\
<<set $gig_frame_loc = either("harbor", "suburbs", "downtown", "center")>>
<<set $gig_frame_character = either("shy", "bold")>>
<<if $gig_frame_character == "shy">>
<<set $gig_frame_desc = $gig_frame_character_bold.random()>>
<<else>>
<<set $gig_frame_desc = $gig_frame_character_shy.random()>>
<</if>>
<<set $gig_frame_reward = (random(500, 1000) * $gig_rep_scale) * $gig_rep_scale_second>>\
<<set $gig_frame_active = true>>
<</widget>>\
<<widget "setup_gig_1">>\
<<if $gig_1 == "roasted_nails">>\
<<roasted_nails>>\
<<elseif $gig_1 == "wanted_alien">>\
<<wanted_alien>>\
<<elseif $gig_1 == "question">>\
<<question>>\
<<elseif $gig_1 == "help">>\
<<help>>\
<</if>>\
<</widget>>\
<<widget "setup_gig_3">>\
<<if $gig_3 == "roasted_nails">>\
<<roasted_nails>>\
<<elseif $gig_3 == "wanted_alien">>\
<<wanted_alien>>\
<<elseif $gig_3 == "question">>\
<<question>>\
<<elseif $gig_3 == "help">>\
<<help>>\
<</if>>\
<</widget>>\
<<widget "setup_gig_4">>\
<<if $gig_4 == "roasted_nails">>\
<<roasted_nails>>\
<<elseif $gig_4 == "wanted_alien">>\
<<wanted_alien>>\
<<elseif $gig_4 == "question">>\
<<question>>\
<<elseif $gig_4 == "help">>\
<<help>>\
<</if>>\
<</widget>>\
<<widget "setup_gig_6">>\
<<if $gig_6 == "roasted_nails">>\
<<roasted_nails>>\
<<elseif $gig_6 == "wanted_alien">>\
<<wanted_alien>>\
<<elseif $gig_6 == "question">>\
<<question>>\
<<elseif $gig_6 == "help">>\
<<help>>\
<</if>>\
<</widget>>\/* Fluff gigs */
<<widget "roasted_nails">>\
<div class="gig_pic" style='background-image: url("img/background/events/prologue_2.webp"); background-size: cover; height: 100%; width: 100%;'>
<span class="gig_text" style='background-color: black; font-size: 1.3rem;'>I WILL ROAST NAILS FOR YOU</span>
<span class="gig_text" style='background-color: black; font-size: 1rem;'>Call: 666-999-333</span>
</div>
<</widget>>\
<<widget "wanted_alien">>\
<div class="gig_pic" style='background-image: url("img/background/events/prologue_2.webp"); background-size: cover; height: 100%; width: 100%;'>
<span class="gig_text" style='background-color: black; font-size: 1.3rem;'>LOOKING FOR:</span>
</div>
<</widget>>\
<<widget "question">>\
<div class="gig_pic" style='background-image: url("img/background/events/prologue_2.webp"); background-size: cover; height: 100%; width: 100%;'>
<span class="gig_text" style='background-color: black; font-size: 1.8rem;'>?</span>
<span class="gig_text" style='background-color: black; font-size: 1rem;'><<link "? ? ? ? ? ? ?">><<notify 2s>> ? <</notify>><</link>></span>
</div>
<</widget>>\
<<widget "help">>\
<div class="gig_pic" style='background-image: url("img/background/events/prologue_2.webp"); background-size: cover; height: 100%; width: 100%;'>
<span class="gig_text" style='background-color: black; font-size: 1.3rem; color: red;'>Looking for help?</span>
<span class="gig_text" style='background-color: black; font-size: 1rem;'>WHY? WHY? WHY? WHY?</span>
<span class="gig_text" style='background-color: black; font-size: 1rem;'>WHY? WHY? WHY? WHY?</span>
</div>
<</widget>>\
/* Non-fluff gigs */
<<widget "find_item_gig">>\
<div class="gig_pic" style='background-image: url("img/background/events/prologue_2.webp"); background-size: cover; height: 100%; width: 100%;'>
<span class="gig_text" style='background-color: black; font-size: 1.4rem; color: red;'>I need $gig_item_amount $gig_needed_item.</span>
<span class="gig_text" style='background-color: black; font-size: 1rem;'>Reward: $gig_item_reward​$</span>
<span class="gig_text" style='background-color: black; font-size: 1rem;'><<gig_item_completion>></span>
</div>
<</widget>>\
<<widget "find_weapon_gig">>\
<div class="gig_pic" style='background-image: url("img/background/events/prologue_2.webp"); background-size: cover; height: 100%; width: 100%;'>
<span class="gig_text" style='background-color: black; font-size: 1.4rem; color: red;'>I need GUNS. Exactly $gig_weapon_amount $gig_needed_weapon.</span>
<span class="gig_text" style='background-color: black; font-size: 1rem;'>Reward: $gig_weapon_reward​$</span>
<span class="gig_text" style='background-color: black; font-size: 1rem;'><<gig_weapon_completion>></span>
</div>
<</widget>>\
<<widget "car_steal_gig">>\
<div class="gig_pic" style='background-image: url("img/background/events/prologue_2.webp"); background-size: cover; height: 100%; width: 100%;'>
<span class="gig_text" style='background-color: black; font-size: 1.4rem;'>Find me my wheels. I "lost" it. Last seen place: $gig_car_steal_loc.</span>
<span class="gig_text" style='background-color: black; font-size: 1rem;'>Description attached.</span>
<span class="gig_text" style='background-color: black; font-size: 1rem;'>Reward: $gig_car_steal_reward​$</span>
</div>
<</widget>>\
<<widget "fight_gig">>\
<div class="gig_pic" style='background-image: url("img/background/events/prologue_2.webp"); background-size: cover; height: 100%; width: 100%;'>
<span class="gig_text" style='background-color: black; font-size: 1.2rem;'>Looking for mercs.</span>
<span class="gig_text" style='background-color: black; font-size: 0.9rem;'>Beat the shit out of one prick. You can find a guy somewhere in the $gig_fight_loc. Call me after you finish.</span>
<span class="gig_text" style='background-color: black; font-size: 1rem;'>Reward: $gig_fight_reward​$</span>
</div>
<</widget>>\
<<widget "frame_gig">>\
<div class="gig_pic" style='background-image: url("img/background/events/prologue_2.webp"); background-size: cover; height: 100%; width: 100%;'>
<span class="gig_text" style='background-color: black; font-size: 1.2rem;'>I need someone who can frame this guy. </span>
<span class="gig_text" style='background-color: black; font-size: 0.9rem;'>Plant some drugs or aphrodisiac and call me. I've seen him in the $gig_frame_loc, and he's $gig_frame_desc, keep that in mind.</span>
<span class="gig_text" style='background-color: black; font-size: 1rem;'>Reward: $gig_frame_reward​$</span>
</div>
<</widget>>\