@echo off title The city is yours v1.1 color 40 ::Stats set blocks=1 set gangsters=1 set money=1000 set notoriety=0 set luck=0 set war=0 set burg=0 set takeover=0 set bodyguards=0 set hiredhit=0 set rivalblocks=1 set rivalgangsters=1 set rivalmoney=1000 set rivalnotoriety=0 set xtc=0 set heroin=0 set cocaine=0 set week=1 set votes=0 set campaign=0 set extortcount=0 set robcount=0 set recruitcount=0 set attackcount=0 set attackedcount=0 set burglarycount=0 :Start cls color 40 echo====================================================== echo The City Is Yours v1.1 echo Made by: Ramon van Troost echo====================================================== echo [][][] [][] [][][] [] [][] ####### echo [][][] [][][] [][][][] [] [][] ######## echo [][][][][][][][][][][][][]][][] [] [][][] ###\] echo [][][][][][][][][][][][][[][][] [] [][][] ### echo. echo _____________________________________________________ echo==========_/[][]\___================================== echo=========[__[___]___]================================= echo===========O=====O==================================== echo _____________________________________________________ echo. echo What is your name? set /p name= echo. echo What is your gang name? set /p gangname= ========================================================== echo. echo Name your rival set /p rivalname= pause goto Monday :Monday cls color 70 echo=============================================== echo Your HQ echo=============================================== echo. echo _ echo _____[ ]_______________ echo / [_] /] echo /______________________/ ] echo [_______________________] ] echo [ __ ] ] echo [ [ ] ] ] echo [ [__] _____ ___ ] ] echo [ [[] []] [ ] ] ] echo ________[ [ ] [ ] ] ]__________ echo [ [ - ] [___] ] / echo [______[_____]__________]/ echo _____________________________________________ echo. echo Get to work echo. pause goto Monday2 :Monday2 cls color 40 if %blocks% leq 0 goto dead if %gangsters% leq 0 goto dead if %money% leq 0 goto bankrupt if %rivalblocks% leq 0 goto win if %rivalgangsters% leq 0 goto win if %rivalmoney% leq 0 goto win echo=============================================== echo The Workweek week %week% echo=============================================== echo Monday echo=============================================== echo %name% - %rivalname% echo Blocks %blocks% - %rivalblocks% echo Crew %gangsters% - %rivalgangsters% echo Money %money% - %rivalmoney% echo Notoriety %notoriety% - %rivalnotoriety% echo=============================================== echo Drugs echo=============================================== echo XTC %xtc%kg Heroin %heroin%kg Cocaine %cocaine%kg echo=============================================== echo Tasks echo=============================================== echo Press 1 to extort businessowners echo Press 2 to recruit gangsters echo Press 3 to rob businesses echo Press 4 to deal drugs set /p option= if %option% == 1 goto extort if %option% == 2 goto recruit if %option% == 3 goto rob if %option% == 4 goto drugs :extort cls echo =================================================== echo Your crew hit the streets to expand it's territory. echo =================================================== pause set /a blocks="%blocks%+%Random% %%3+1% set /a extortcount="%extortcount%+1 set /a votes="%votes%+%Random% %%18+2% set /a money="%money%+%Random% %%150+30% set /a notoriety="%notoriety%+%Random% %%4+1% set /a rivalblocks="%rivalblocks%+%Random% %%3+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%4+1% set /a rivalmoney="%rivalmoney%+%Random% %%170+30% echo =============================================== echo. echo Your territory was expanded to %blocks% blocks. echo. echo %rivalname%'s territory was expanded to %rivalblocks% blocks. echo. echo =============================================== pause goto Tuesday :recruit cls echo ======================================== echo Your crew went out to hire more henchmen echo ======================================== pause set /a gangsters="%gangsters%+%Random% %%2+1% set /a recruitcount="%recruitcount%+1 set /a votes="%votes%+%Random% %%10+1% set /a notoriety="%notoriety%+%Random% %%1+0% set /a money="%money%-%Random% %%100-40% set /a rivalmoney="%rivalmoney%+%Random% %%450+40% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%8+1% echo ============================================== echo. echo Your crew was expanded to %gangsters% members. echo. echo %rivalname% sent his crew out to a violent robbery. echo. echo ============================================== pause goto Tuesday :rob cls echo ======================================== echo You sent your crew out to rob some stores echo ======================================== pause set /a rivalnotoriety="%rivalnotoriety%+%Random% %%8+0% set /a money="%money%+%Random% %%300+40% set /a votes="%votes%-%Random% %%8-1% set /a robcount="%robcount%+1 set /a notoriety="%notoriety%+%Random% %%8+1% set /a rivalmoney="%rivalmoney%+%Random% %%500+40% echo ============================================== echo. echo Your moneystack grows to $%money%! echo. echo %rivalname% sent his crew out to a violent robbery. echo. echo ============================================== pause goto Tuesday :drugs cls echo ======================================== echo You sent your crew out to the drugmarket echo ======================================== pause if %xtc% gtr 0 goto yesxtc if %xtc% leq 0 goto noxtc :noxtc echo You have no xtc. goto drugs2 :yesxtc echo Do you want to sell 1 xtc? echo Press 1 to sell xtc for $250 echo Press 2 to skip deal set /p option= if %option% == 1 goto sellxtc1 if %option% == 2 goto Tuesday :sellxtc1 echo You sold 1 xtc for $250. set /a money="%money%+250 set /a xtc="%xtc%-1 set /a rivalgangsters="%rivalgangsters%+%Random% %%2+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%-%Random% %%100-40% echo ============================================== echo %rivalname% expanded his crew to %rivalgangsters% members. echo ============================================== pause goto Tuesday :drugs2 if %heroin% gtr 0 goto yesheroin if %heroin% leq 0 goto noheroin :noheroin echo You have no heroin. goto drugs3 :yesheroin echo Do you want to sell 1 heroin? echo Press 1 to sell heroin for $650 echo Press 2 to skip deal set /p option= if %option% == 1 goto sellheroin1 if %option% == 2 goto Tuesday :sellheroin1 echo You sold 1 heroin for $650. set /a money="%money%+650 set /a heroin="%heroin%-1 set /a rivalblocks="%rivalblocks%+%Random% %%3+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%+%Random% %%130+40% echo ============================================== echo %rivalname% expanded his territory to %rivalblocks% blocks. echo ============================================== pause goto Tuesday :drugs3 if %cocaine% gtr 0 goto yescocaine if %cocaine% leq 0 goto nococaine :yescocaine echo Do you want to sell 1 cocaine? echo Press 1 to sell cocaine for $1100 echo Press 2 to skip deal set /p option= if %option% == 1 goto sellcocaine1 if %option% == 2 goto Tuesday :sellcocaine1 echo You sold 1 cocaine for $1100. set /a money="%money%+1100 set /a cocaine="%cocaine%-1 set /a rivalnotoriety="%rivalnotoriety%+%Random% %%8+0% set /a notoriety="%notoriety%+%Random% %%3+1% set /a rivalmoney="%rivalmoney%+%Random% %%700+40% echo ============================================== echo %rivalname% sent his crew out to a violent robbery. echo ============================================== pause goto Tuesday :nococaine echo You have no cocaine. pause goto buydrugs :buydrugs echo Press 1 to buy XTC for $200 echo Press 2 to buy Heroin for $500 echo Press 3 to buy Cocaine for $800 set /p option= if %option% == 1 goto buyxtc1 if %option% == 2 goto buyheroin1 if %option% == 3 goto buycocaine1 :buyxtc1 echo You bought XTC for $200. set /a money="%money%-200 set /a xtc="%xtc%+1 set /a rivalnotoriety="%rivalnotoriety%+%Random% %%8+0% set /a notoriety="%notoriety%+%Random% %%3+1% set /a rivalmoney="%rivalmoney%+%Random% %%800-40% echo ============================================== echo %rivalname% sent his crew out to a violent robbery. echo ============================================== pause goto Tuesday :buyheroin1 echo You bought heroin for $500. set /a money="%money%-500 set /a heroin="%heroin%+1 set /a rivalgangsters="%rivalgangsters%+%Random% %%2+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%-%Random% %%100-40% echo ============================================== echo %rivalname% expanded his crew to %rivalgangsters% members. echo ============================================== pause goto Tuesday :buycocaine1 echo You bought cocaine for $800. set /a money="%money%-800 set /a cocaine="%cocaine%+1 set /a rivalblocks="%rivalblocks%+%Random% %%3+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%3+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%+%Random% %%150+30% echo ============================================== echo %rivalname% expanded his territory to %rivalblocks% blocks. echo ============================================== pause goto Tuesday :Tuesday cls if %blocks% leq 0 goto dead if %gangsters% leq 0 goto dead if %money% leq 0 goto bankrupt if %rivalblocks% leq 0 goto win if %rivalgangsters% leq 0 goto win if %rivalmoney% leq 0 goto win echo=============================================== echo The Workweek week %week% echo=============================================== echo Tuesday echo=============================================== echo %name% - %rivalname% echo Blocks %blocks% - %rivalblocks% echo Crew %gangsters% - %rivalgangsters% echo Money %money% - %rivalmoney% echo Notoriety %notoriety% - %rivalnotoriety% echo=============================================== echo Drugs echo=============================================== echo XTC %xtc%kg Heroin %heroin%kg Cocaine %cocaine%kg echo=============================================== echo Tasks echo=============================================== echo Press 1 to extort businessowners echo Press 2 to recruit gangsters echo Press 3 to rob businesses echo Press 4 to deal drugs set /p option= if %option% == 1 goto extort2 if %option% == 2 goto recruit2 if %option% == 3 goto rob2 if %option% == 4 goto drugs2 :extort2 cls echo =================================================== echo Your crew hit the streets to expand it's territory. echo =================================================== pause set /a blocks="%blocks%+%Random% %%3+1% set /a money="%money%+%Random% %%150+30% set /a votes="%votes%+%Random% %%18+1% set /a extortcount="%extortcount%+1 set /a notoriety="%notoriety%+%Random% %%4+1% set /a rivalblocks="%rivalblocks%+%Random% %%3+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%4+1% set /a rivalmoney="%rivalmoney%+%Random% %%250+30% echo =============================================== echo. echo Your territory was expanded to %blocks% blocks. echo. echo %rivalname%'s territory was expanded to %rivalblocks% blocks. echo. echo =============================================== pause goto Wednesday :recruit2 cls echo ======================================== echo Your crew went out to hire more henchmen echo ======================================== pause set /a gangsters="%gangsters%+%Random% %%2+1% set /a notoriety="%notoriety%+%Random% %%1+0% set /a votes="%votes%+%Random% %%8+1% set /a recruitcount="%recruitcount%+1 set /a money="%money%-%Random% %%100-40% set /a rivalmoney="%rivalmoney%-%Random% %%130-40% set /a rivalgangsters="%rivalgangsters%+%Random% %%3+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%8+1% echo ============================================== echo. echo Your crew was expanded to %gangsters% members. echo. echo %rivalname%'s crew was expanded to %rivalgangsters% members. echo. echo ============================================== pause goto Wednesday :rob2 cls echo ======================================== echo You sent your crew out to rob some stores echo ======================================== pause set /a rivalgangsters="%rivalgangsters%+%Random% %%2+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a votes="%votes%-%Random% %%8-1% set /a robcount="%robcount%+1 set /a money="%money%+%Random% %%300+40% set /a notoriety="%notoriety%+%Random% %%8+1% set /a rivalmoney="%rivalmoney%-%Random% %%100-40% echo ============================================== echo. echo Your moneystack grew to $%money%! echo. echo %rivalname% expanded his crew to %rivalgangsters% members echo. echo ============================================== pause goto Wednesday :drugs2 cls echo ======================================== echo You sent your crew out to the drugmarket echo ======================================== pause if %xtc% gtr 0 goto yesxtc2 if %xtc% leq 0 goto noxtc2 :noxtc2 echo You have no xtc. goto drugs22 :yesxtc2 echo Do you want to sell 1 xtc? echo Press 1 to sell xtc for $150 echo Press 2 to skip deal set /p option= if %option% == 1 goto sellxtc12 if %option% == 2 goto Wednesday :sellxtc12 echo You sold 1 xtc for $150. set /a money="%money%+150 set /a xtc="%xtc%-1 set /a rivalgangsters="%rivalgangsters%+%Random% %%2+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%-%Random% %%100-40% echo ============================================== echo %rivalname% expanded his crew to %rivalgangsters% members. echo ============================================== pause goto Wednesday :drugs22 if %heroin% gtr 0 goto yesheroin2 if %heroin% leq 0 goto noheroin2 :noheroin2 echo You have no heroin. goto drugs32 :yesheroin2 echo Do you want to sell 1 heroin? echo Press 1 to sell heroin for $870 echo Press 2 to skip deal set /p option= if %option% == 1 goto sellheroin2 if %option% == 2 goto Wednesday :sellheroin2 echo You sold 1 heroin for $870. set /a money="%money%+870 set /a heroin="%heroin%-1 set /a rivalnotoriety="%rivalnotoriety%+%Random% %%8+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%+%Random% %%580-40% echo ============================================== echo %rivalname% sent his crew out to a violent robbery. echo ============================================== pause goto Wednesday :drugs32 if %cocaine% gtr 0 goto yescocaine2 if %cocaine% leq 0 goto nococaine2 :yescocaine2 echo Do you want to sell 1 cocaine? echo Press 1 to sell cocaine for $1000 echo Press 2 to skip deal set /p option= if %option% == 1 goto sellcocaine2 if %option% == 2 goto Wednesday :sellcocaine2 echo You sold 1 cocaine for $1000. set /a money="%money%+1000 set /a cocaine="%cocaine%-1 set /a rivalgangsters="%rivalgangsters%+%Random% %%2+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%-%Random% %%100-40% echo ============================================== echo %rivalname% expanded his crew to %rivalgangsters% members. echo ============================================== pause goto Wednesday :nococaine2 echo You have no cocaine. pause goto buydrugs2 :buydrugs2 echo Press 1 to buy XTC for $110 echo Press 2 to buy Heroin for $400 echo Press 3 to buy Cocaine for $900 set /p option= if %option% == 1 goto buyxtc2 if %option% == 2 goto buyheroin2 if %option% == 3 goto buycocaine2 :buyxtc2 echo You bought XTC for $110. set /a money="%money%-110 set /a xtc="%xtc%+1 set /a rivalgangsters="%rivalgangsters%+%Random% %%2+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%-%Random% %%100-40% echo ============================================== echo %rivalname% expanded his crew to %rivalgangsters% members. echo ============================================== pause goto Wednesday :buyheroin2 echo You bought heroin for $400. set /a money="%money%-400 set /a heroin="%heroin%+1 set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%+%Random% %%500+40% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%8+1% echo ============================================== echo %rivalname% sent his crew out to a violent robbery. echo ============================================== pause goto Wednesday :buycocaine2 echo You bought cocaine for $900. set /a money="%money%-900 set /a cocaine="%cocaine%+1 set /a rivalblocks="%rivalblocks%+%Random% %%3+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%3+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%+%Random% %%150+30% echo ============================================== echo %rivalname% expanded his territory to %rivalblocks% blocks. echo ============================================== pause goto Wednesday :Wednesday cls if %blocks% leq 0 goto dead if %gangsters% leq 0 goto dead if %money% leq 0 goto bankrupt if %rivalblocks% leq 0 goto win if %rivalgangsters% leq 0 goto win if %rivalmoney% leq 0 goto win echo=============================================== echo The Workweek week %week% echo=============================================== echo Wednesday echo=============================================== echo %name% - %rivalname% echo Blocks %blocks% - %rivalblocks% echo Crew %gangsters% - %rivalgangsters% echo Money %money% - %rivalmoney% echo Notoriety %notoriety% - %rivalnotoriety% echo=============================================== echo Drugs echo=============================================== echo XTC %xtc%kg Heroin %heroin%kg Cocaine %cocaine%kg echo=============================================== echo Tasks echo=============================================== echo Press 1 to extort businessowners echo Press 2 to recruit gangsters echo Press 3 to rob businesses echo Press 4 to deal drugs set /p option= if %option% == 1 goto extort3 if %option% == 2 goto recruit3 if %option% == 3 goto rob3 if %option% == 4 goto drugs3 :extort3 cls echo =================================================== echo Your crew hit the streets to expand it's territory. echo =================================================== pause set /a blocks="%blocks%+%Random% %%3+1% set /a money="%money%+%Random% %%150+30% set /a extortcount="%extortcount%+1 set /a votes="%votes%+%Random% %%18+1% set /a notoriety="%notoriety%+%Random% %%4+1% set /a rivalmoney="%rivalmoney%+%Random% %%300+40% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%8+1% echo =============================================== echo. echo Your territory was expanded to %blocks% blocks. echo. echo %rivalname% sent his crew out to a violent robbery. echo. echo =============================================== pause goto Thursday :recruit3 cls echo ======================================== echo Your crew went out to hire more henchmen echo ======================================== pause set /a gangsters="%gangsters%+%Random% %%2+1% set /a notoriety="%notoriety%+%Random% %%1+0% set /a recruitcount="%recruitcount%+1 set /a votes="%votes%+%Random% %%8+1% set /a money="%money%-%Random% %%100-40% set /a rivalmoney="%rivalmoney%+%Random% %%130+40% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%3+1% set /a rivalblocks="%rivalblocks%+%Random% %%3+1% echo ============================================== echo. echo Your crew was expanded to %gangsters% members. echo. echo %rivalname%'s territory was expanded to %rivalblocks% blocks. echo. echo ============================================== pause goto Thursday :rob3 cls echo ======================================== echo You sent your crew out to rob some stores echo ======================================== pause set /a rivalblocks="%rivalblocks%+%Random% %%3+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a robcount="%robcount%+1 set /a votes="%votes%-%Random% %%8-1% set /a money="%money%+%Random% %%300+40% set /a notoriety="%notoriety%+%Random% %%8+1% set /a rivalmoney="%rivalmoney%+%Random% %%130+40% echo ============================================== echo. echo Your moneystack grew to $%money%! echo. echo %rivalname% expanded his territory to %rivalblocks% blocks. echo. echo ============================================== pause goto Thursday :drugs3 cls echo ======================================== echo You sent your crew out to the drugmarket echo ======================================== pause if %xtc% gtr 0 goto yesxtc3 if %xtc% leq 0 goto noxtc3 :noxtc3 echo You have no xtc. goto drugs33 :yesxtc3 echo Do you want to sell 1 xtc? echo Press 1 to sell xtc for $350 echo Press 2 to skip deal set /p option= if %option% == 1 goto sellxtc13 if %option% == 2 goto Thursday :sellxtc13 echo You sold 1 xtc for $350. set /a money="%money%+350 set /a xtc="%xtc%-1 set /a rivalgangsters="%rivalgangsters%+%Random% %%2+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%-%Random% %%100-40% echo ============================================== echo %rivalname% expanded his crew to %rivalgangsters% members. echo ============================================== pause goto Thursday :drugs33 if %heroin% gtr 0 goto yesheroin3 if %heroin% leq 0 goto noheroin3 :noheroin3 echo You have no heroin. goto drugs33 :yesheroin3 echo Do you want to sell 1 heroin? echo Press 1 to sell heroin for $470 echo Press 2 to skip deal set /p option= if %option% == 1 goto sellheroin3 if %option% == 2 goto Thursday :sellheroin3 echo You sold 1 heroin for $470. set /a money="%money%+470 set /a heroin="%heroin%-1 set /a rivalgangsters="%rivalgangsters%+%Random% %%2+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%-%Random% %%100-40% echo ============================================== echo %rivalname% expanded his crew to %rivalgangsters% members. echo ============================================== pause goto Thursday :drugs33 if %cocaine% gtr 0 goto yescocaine3 if %cocaine% leq 0 goto nococaine3 :yescocaine3 echo Do you want to sell 1 cocaine? echo Press 1 to sell cocaine for $700 echo Press 2 to skip deal set /p option= if %option% == 1 goto sellcocaine3 if %option% == 2 goto Thursday :sellcocaine3 echo You sold 1 cocaine for $700. set /a money="%money%+700 set /a cocaine="%cocaine%-1 set /a rivalgangsters="%rivalgangsters%+%Random% %%2+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%-%Random% %%100-40% echo ============================================== echo %rivalname% expanded his crew to %rivalgangsters% members. echo ============================================== pause goto Thursday :nococaine3 echo You have no cocaine. pause goto buydrugs3 :buydrugs3 echo Press 1 to buy XTC for $300 echo Press 2 to buy Heroin for $250 echo Press 3 to buy Cocaine for $700 set /p option= if %option% == 1 goto buyxtc3 if %option% == 2 goto buyheroin3 if %option% == 3 goto buycocaine3 :buyxtc3 echo You bought XTC for $300. set /a money="%money%-300 set /a xtc="%xtc%+1 set /a rivalgangsters="%rivalgangsters%+%Random% %%2+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%-%Random% %%100-40% echo ============================================== echo %rivalname% expanded his crew to %rivalgangsters% members. echo ============================================== pause goto Thursday :buyheroin3 echo You bought heroin for $250. set /a money="%money%-250 set /a heroin="%heroin%+1 set /a rivalgangsters="%rivalgangsters%+%Random% %%2+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%-%Random% %%100-40% echo ============================================== echo %rivalname% expanded his crew to %rivalgangsters% members. echo ============================================== pause goto Thursday :buycocaine3 echo You bought cocaine for $700. set /a money="%money%-700 set /a cocaine="%cocaine%+1 set /a rivalblocks="%rivalblocks%+%Random% %%3+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%3+0% set /a notoriety="%notoriety%+%Random% %%5+1% set /a rivalmoney="%rivalmoney%+%Random% %%150+30% echo ============================================== echo %rivalname% expanded his territory to %rivalblocks% blocks. echo ============================================== pause goto Thursday :Thursday cls if %blocks% leq 0 goto dead if %gangsters% leq 0 goto dead if %money% leq 0 goto bankrupt if %rivalblocks% leq 0 goto win if %rivalgangsters% leq 0 goto win if %rivalmoney% leq 0 goto win echo=============================================== echo The Workweek week %week% echo=============================================== echo Thursday echo=============================================== echo %name% - %rivalname% echo Blocks %blocks% - %rivalblocks% echo Crew %gangsters% - %rivalgangsters% echo Money %money% - %rivalmoney% echo Notoriety %notoriety% - %rivalnotoriety% echo=============================================== echo Drugs echo=============================================== echo XTC %xtc%kg Heroin %heroin%kg Cocaine %cocaine%kg echo=============================================== echo Tasks echo=============================================== echo Press 1 to extort businessowners echo Press 2 to recruit gangsters echo Press 3 to rob businesses echo Press 4 to watch the Map set /p option= if %option% == 1 goto extort4 if %option% == 2 goto recruit4 if %option% == 3 goto rob4 if %option% == 4 goto Map :extort4 cls echo =================================================== echo Your crew hit the streets to expand it's territory. echo =================================================== pause set /a blocks="%blocks%+%Random% %%3+1% set /a money="%money%+%Random% %%150+30% set /a extortcount="%extortcount%+1 set /a notoriety="%notoriety%+%Random% %%4+1% set /a votes="%votes%+%Random% %%18+1% set /a rivalblocks="%rivalblocks%+%Random% %%3+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%4+1% set /a rivalmoney="%rivalmoney%+%Random% %%150+30% echo =============================================== echo. echo Your territory was expanded to %blocks% blocks. echo. echo %rivalname%'s territory was expanded to %rivalblocks% blocks. echo. echo =============================================== pause goto Friday :recruit4 cls echo ======================================== echo Your crew went out to hire more henchmen echo ======================================== pause set /a gangsters="%gangsters%+%Random% %%2+1% set /a notoriety="%notoriety%+%Random% %%1+0% set /a recruitcount="%recruitcount%+1 set /a votes="%votes%+%Random% %%8+1% set /a money="%money%-%Random% %%100-40% set /a rivalmoney="%rivalmoney%-%Random% %%140-40% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a rivalgangsters="%rivalgangsters%+%Random% %%2+1% echo ============================================== echo. echo Your crew was expanded to %gangsters% members. echo. echo %rivalname%'s crew was expanded to %rivalgangsters% men. echo. echo ============================================== pause goto Friday :rob4 cls echo ======================================== echo You sent your crew out to rob some stores echo ======================================== pause set /a rivalgangsters="%rivalgangsters%+%Random% %%2+1% set /a rivalnotoriety="%rivalnotoriety%+%Random% %%1+0% set /a robcount="%robcount%+1 set /a money="%money%+%Random% %%300+40% set /a votes="%votes%-%Random% %%8-1% set /a notoriety="%notoriety%+%Random% %%8+1% set /a rivalmoney="%rivalmoney%-%Random% %%100-40% echo ============================================== echo. echo Your moneystack grew to $%money%! echo. echo %rivalname% expanded his crew to %rivalgangsters% members echo. echo ============================================== pause goto Friday :Map cls echo The City echo=========================================================================== echo Map echo=========================================================================== echo As you expand your turf the map gets more visible echo=========================================================================== echo [*]Your Turf / 5 blocks [ ] Building Block Press 2 for %rivalname%'s map echo=========================================================================== if %blocks% geq 154 echo [*][*][*] [*][*][*] [ ][ ][ ] if %blocks% geq 130 echo [*][ ][*] [*][ ][*] [9][ ][ ] if %blocks% geq 114 echo [*][*][*] [*][*][*] [ ][ ][ ] if %blocks% geq 96 echo Northern if %blocks% geq 92 echo Road if %blocks% geq 88 echo [*][*][*] [*][*][*] [ ][ ][ ] if %blocks% geq 64 echo [*][ ][*] [*][ ][*] [ ][ ][ ] if %blocks% geq 44 echo [*][*][*] [*][*][*] [ ][7][ ] if %blocks% geq 28 echo Southern if %blocks% geq 24 echo Road if %blocks% geq 20 echo [*][*][*] [ ][ ][ ] [ ][ ][ ] if %blocks% geq 8 echo [*][ ][4] [ ][ ][ ] [ ][ ][ ] if %blocks% geq 4 echo [*][ ][ ] [ ][ ][ ] [ ][ ][ ] set /p option= if %option% == 2 goto Map2 if %blocks% geq 44 goto burglary2 if %blocks% geq 8 goto burglary :burglary echo Press 4 to send 2 men to do a burglary on block 4 echo Press 1 to skip set /p option= if %option% == 4 goto block4 if %option% == 1 goto Friday :burglary2 echo Press 4 to send 2 men to do a burglary on block 4 echo Press 7 to send 2 men to do a burglary on block 7 echo Press 1 to skip set /p option= if %option% == 7 goto block7 if %option% == 4 goto block4 if %option% == 1 goto Friday :block4 cls echo================================================= echo BURGLARY echo================================================= echo. echo You send 2 of your henchmen to do a burglary on block 4. echo. set /a burglarycount="%burglarycount%+1 set /a burg="%burg%+%Random% %%3+0% pause if %burg% equ 2 goto burgsucces if %burg% equ 6 goto burgsucces if %burg% equ 9 goto burgsucces if %burg% equ 12 goto burgsucces if %burg% equ 15 goto burgsucces if %burg% equ 18 goto burgsucces if %burg% equ 21 goto burgsucces if %burg% equ 25 goto burgsucces if %burg% equ 28 goto burgsucces set /a gangsters="%gangsters%-2 echo The police was called and your 2 men were arrested! pause goto Friday :burgsucces echo Your henchmen stole jewels worth of $600! set /a money="%money%+600 pause goto Friday :block7 cls echo================================================= echo BURGLARY echo================================================= echo. echo You send 2 of your henchmen to do a burglary on block 7. echo. set /a burglarycount="%burglarycount%+1 set /a burg="%burg%+%Random% %%3+0% pause if %burg% equ 2 goto burgsucces2 if %burg% equ 6 goto burgsucces2 if %burg% equ 9 goto burgsucces2 if %burg% equ 12 goto burgsucces2 if %burg% equ 15 goto burgsucces2 if %burg% equ 18 goto burgsucces2 if %burg% equ 21 goto burgsucces2 if %burg% equ 25 goto burgsucces2 if %burg% equ 28 goto burgsucces2 if %burg% equ 31 goto burgsucces2 if %burg% equ 33 goto burgsucces2 set /a gangsters="%gangsters%-2 echo The police was called and your 2 men were arrested! pause goto Friday :burgsucces2 echo Your henchmen stole art worth of $1000! set /a money="%money%+1000 pause goto Friday :Map2 cls echo The City echo=========================================================================== echo %rivalname%'s Map echo=========================================================================== echo [x]Rival Turf / 5 blocks [ ] Building Block Press 3 for the next day echo=========================================================================== if %blocks% geq 4 echo [ ][ ][ ] [ ][ ][ ] [ ][ ][x] if %blocks% geq 8 echo [ ][ ][ ] [ ][ ][ ] [ ][ ][x] if %blocks% geq 20 echo [ ][ ][ ] [ ][ ][ ] [x][x][x] if %blocks% geq 24 echo Northern if %blocks% geq 28 echo Road if %blocks% geq 44 echo [ ][ ][ ] [x][x][x] [x][x][x] if %blocks% geq 64 echo [ ][ ][ ] [x][ ][x] [x][ ][x] if %blocks% geq 88 echo [ ][ ][ ] [x][x][x] [x][x][x] if %blocks% geq 92 echo Southern if %blocks% geq 96 echo Road if %blocks% geq 114 echo [ ][ ][ ] [x][x][x] [x][x][x] if %blocks% geq 130 echo [ ][ ][ ] [x][ ][x] [x][ ][x] if %blocks% geq 154 echo [ ][ ][ ] [x][x][x] [x][x][x] set /p option= if %option% == 1 goto Map if %option% == 3 goto Friday :Friday cls if %blocks% leq 0 goto dead if %gangsters% leq 0 goto dead if %money% leq 0 goto bankrupt if %rivalblocks% leq 0 goto win if %rivalgangsters% leq 0 goto win if %rivalmoney% leq 0 goto win echo=============================================== echo The Workweek week %week% echo=============================================== echo Friday echo=============================================== echo %name% - %rivalname% echo Blocks %blocks% - %rivalblocks% echo Crew %gangsters% - %rivalgangsters% echo Money %money% - %rivalmoney% echo Notoriety %notoriety% - %rivalnotoriety% echo=============================================== echo Drugs echo=============================================== echo XTC %xtc%kg Heroin %heroin%kg Cocaine %cocaine%kg echo=============================================== echo Specialist Tasks echo=============================================== echo Press 1 to hire a hitman for $4000 echo Press 2 to bribe the police for $500 echo Press 3 to proceed to the next day echo Press 4 to run for mayor. Cost $2000 echo Press 5 to donate $1000 to charity echo Press 6 to hire bodyguards for $1500 set /p option= if %option% == 1 goto hitman if %option% == 2 goto bribe if %option% == 3 goto Saturday if %option% == 4 goto Elect if %option% == 5 goto Charity if %option% == 5 goto Bodyguards :Bodyguards cls echo ======================================== echo BODYGUARDS echo ======================================== echo. if %bodyguards% equ 1 goto alreadyguarded if %money% leq 1500 goto guardzfail echo You hired bodyguards to protect your headquarters. set /a money="%money%-1500 set /a bodyguards="%bodyguards%+1 pause goto Saturday :guardzfail echo You need more funds to hire bodyguards. echo. pause goto Friday :alreadyguarded echo Your headquarters is already guarded. echo. pause goto Friday :Charity cls if %money% leq 1000 goto charfail echo ======================================== echo CHARITY echo ======================================== echo. echo To gain popularity in the city you donated $1000 to charity! set /a money="%money%-1000 set /a votes="%votes%+460 pause goto Saturday :charfail cls echo ======================================== echo CHARITY echo ======================================== echo. echo You don't have enough funds to donate to charity. pause goto Friday :Elect cls if %campaign% equ 1 goto noelect2 if %money% leq 2000 goto noelect echo ======================================== echo CAMPAIGN echo ======================================== echo. echo You are starting a campaign to become mayor of the city. echo Try to become as popular as possible. set /a money="%money%-2000 set /a campaign="%campaign%+1 pause goto Saturday :noelect2 echo ======================================== echo CAMPAIGN echo ======================================== echo. echo You are already running a campaign. pause goto Friday :noelect echo ======================================== echo CAMPAIGN echo ======================================== echo. echo You need more funds to run a campaign. pause goto Friday :bribe if %money% leq 500 goto nofunds2 cls echo ======================================== echo BRIBING echo ======================================== echo. if %money% gtr 500 echo Would you like to bribe the police? Press 2 to skip, press 1 to bribe. set /p option= if %option% == 1 goto bribe2 if %option% == 2 goto Saturday :hitman if %money% leq 4000 goto nofunds if %money% gtr 4000 echo Would you like to hire a hitman to try to wack %rivalname%? Press 2 to skip, press 1 to hire. set /p option= if %option% == 1 goto hire if %option% == 2 goto Saturday :hire cls echo=============================================== echo Sending your hitman echo=============================================== echo. echo You've arranged a hit to take out %rivalname%. echo. set /a money="%money%-4000 set /a luck="%luck%+%Random% %%10+1% pause if %luck% leq 9 goto fail if %luck% gtr 9 goto success :bribe2 echo You've bribed the police to keep your men out of jail. set /a money="%money%-500 set /a rivalnotoriety="%rivalnotoriety%+10 set /a notoriety=0 pause goto Saturday :success echo The hit on %rivalname% succeeded! That bum's swimming with the fishes. pause goto win :fail echo The hitman failed to kill %rivalname% and died in the proces. pause goto Saturday :nofunds cls echo=============================================== echo The hitman echo=============================================== echo. echo You don't have enough funds to hire a hitman. pause goto Friday :nofunds2 echo ======================================== echo BRIBING echo ======================================== echo. echo You don't have enough funds to bribe the police. echo If your notoriety grows, your men will be arrested. Press 1 to skip. set /p option= if %option% == 1 goto Saturday :Saturday cls if %blocks% leq 0 goto dead if %gangsters% leq 0 goto dead if %money% leq 0 goto bankrupt if %rivalblocks% leq 0 goto win if %rivalgangsters% leq 0 goto win if %rivalmoney% leq 0 goto win echo=============================================== echo The Workweek week %week% echo=============================================== echo Saturday echo=============================================== echo %name% - %rivalname% echo Blocks %blocks% - %rivalblocks% echo Crew %gangsters% - %rivalgangsters% echo Money %money% - %rivalmoney% echo Notoriety %notoriety% - %rivalnotoriety% echo=============================================== echo Drugs echo=============================================== echo XTC %xtc%kg Heroin %heroin%kg Cocaine %cocaine%kg echo=============================================== echo WAR: options to attack %rivalname% echo=============================================== set /a war="%war%+%Random% %%2+1% if %war% equ 3 goto attacked if %war% equ 7 goto attacked if %war% equ 10 goto attacked if %war% equ 14 goto attacked if %war% equ 18 goto attacked if %war% equ 22 goto attacked if %war% equ 27 goto attacked if %war% equ 33 goto attacked if %war% equ 38 goto attacked if %war% equ 42 goto attacked if %war% equ 45 goto attacked if %war% equ 50 goto attacked if %war% equ 54 goto attacked if %war% equ 57 goto attacked if %war% equ 61 goto attacked if %war% equ 65 goto attacked if %war% equ 68 goto attacked if %war% equ 71 goto attacked if %war% equ 75 goto attacked if %war% equ 78 goto attacked if %war% equ 82 goto attacked if %war% equ 86 goto attacked if %war% equ 90 goto attacked if %war% equ 93 goto attacked if %war% equ 96 goto attacked if %war% equ 100 goto attacked if %war% equ 103 goto attacked if %war% equ 107 goto attacked if %war% equ 111 goto attacked if %war% equ 115 goto attacked if %war% equ 119 goto attacked if %war% equ 125 goto attacked if %war% equ 130 goto attacked echo Press 1 to order an armed attack. Cost: $100. echo Press 2 to order a drive-by shooting. Cost: $300. echo Press 3 to ambush %rivalname%'s crew. Cost: $600. echo Press 4 to bomb %rivalname%'s turf. Cost: $800. echo Press 5 to not attack. set /p option= if %option% == 1 goto attack1 if %option% == 2 goto attack2 if %option% == 3 goto attack3 if %option% == 4 goto attack4 if %option% == 5 goto Sunday :attacked cls echo================================================= echo WAR! echo================================================= echo %rivalname% sent his crew out to attack you. echo================================================= echo %rivalname% has a crew of %rivalgangsters% henchmen. echo %rivalname%'s funds is $%rivalmoney%. echo %name% has a crew of %gangsters% henchmen. echo. if %rivalgangsters% leq 5 goto defend1 if %rivalgangsters% leq 10 goto defend2 if %rivalgangsters% leq 20 goto defend3 if %rivalgangsters% leq 30 goto defend4 :defend1 if %rivalmoney% leq 100 echo %rivalname% doesn't have enough funds to attack you. pause if %rivalmoney% leq 100 goto Saturday echo================================================== echo Combat echo================================================== echo Gunshots are heard on your territory. set /a rivalmoney="%rivalmoney%-100 set /a attackedcount="%attackedcount%+1 set /a rivalnotoriety="%rivalnotoriety%+5 set /a rivalgangsters="%rivalgangsters%-%Random% %%1-0% set /a gangsters="%gangsters%-%Random% %%2-0% echo %rivalname%'s crew has %rivalgangsters% men left. echo %name%'s crew has %gangsters% men left. pause goto Saturday :defend2 if %rivalmoney% leq 300 echo %rivalname% doesn't have enough funds to attack you. pause if %rivalmoney% leq 300 goto Saturday echo================================================== echo Combat echo================================================== echo A car speeds around the corner and it's passengers open fire! set /a rivalmoney="%rivalmoney%-300 set /a attackedcount="%attackedcount%+1 set /a rivalnotoriety="%rivalnotoriety%+7 set /a rivalgangsters="%rivalgangsters%-%Random% %%1-0% set /a gangsters="%gangsters%-%Random% %%3-1% echo %rivalname%'s crew has %rivalgangsters% men left. echo %name%'s crew has %gangsters% men left. pause goto Saturday :defend3 if %rivalmoney% leq 600 echo %rivalname% doesn't have enough funds to attack you. pause if %rivalmoney% leq 600 goto Saturday echo================================================== echo Combat echo================================================== echo A squad of %rivalname%'s crew ambushes your men and open fire! set /a rivalmoney="%rivalmoney%-600 set /a attackedcount="%attackedcount%+1 set /a rivalnotoriety="%rivalnotoriety%+12 set /a rivalgangsters="%rivalgangsters%-%Random% %%2-0% set /a gangsters="%gangsters%-%Random% %%5-1% echo %rivalname%'s crew has %rivalgangsters% men left. echo %name%'s crew has %gangsters% men left. pause goto Saturday :defend4 if %rivalmoney% leq 800 echo %rivalname% doesn't have enough funds to attack you. pause if %rivalmoney% leq 800 goto Saturday echo================================================== echo Combat echo================================================== echo A squad of %rivalname%'s crew bombs your territory! set /a rivalmoney="%rivalmoney%-800 set /a attackedcount="%attackedcount%+1 set /a rivalnotoriety="%rivalnotoriety%+15 set /a rivalgangsters="%rivalgangsters%-%Random% %%2-0% set /a gangsters="%gangsters%-%Random% %%6-1% set /a blocks="%blocks%-%Random% %%4-1% echo %rivalname%'s crew has %rivalgangsters% men left. echo %name%'s crew has %gangsters% men left. echo %name%'s crew has %blocks% building blocks left. pause goto Saturday :attack1 cls echo================================================= echo WAR! echo================================================= echo You've instructed your men to attack %rivalname% crew. echo================================================= echo %rivalname% has a crew of %rivalgangsters% henchmen. echo. echo %name% has a crew of %gangsters% henchmen. echo %name% has a funds of $%money%. echo. if %gangsters% leq 2 goto attack1fail if %money% leq 100 goto attack1fail2 pause echo Your men go guns blazing on %rivalname%'s turf! echo. set /a money="%money%-100 set /a attackcount="%attackcount%+1 set /a notoriety="%notoriety%+5 set /a votes="%votes%-%Random% %%5-0% set /a rivalgangsters="%rivalgangsters%-%Random% %%2-0% set /a gangsters="%gangsters%-%Random% %%1-0% echo %rivalname%'s crew has %rivalgangsters% men left. echo %name%'s crew has %gangsters% men left. pause goto Sunday :attack1fail echo You need more men to carry out this attack! pause goto Saturday :attack1fail2 echo You need more funds to carry out this attack! pause goto Saturday :attack2 cls echo================================================= echo WAR! echo================================================= echo You've instructed your men to attack %rivalname% crew. echo================================================= echo %rivalname% has a crew of %rivalgangsters% henchmen. echo. echo %name% has a crew of %gangsters% henchmen. echo %name% has a funds of $%money%. echo. if %gangsters% leq 8 goto attack2fail if %money% leq 300 goto attack2fail2 pause echo A fast car pulls up and your men fire from the windows! echo. set /a money="%money%-300 set /a attackcount="%attackcount%+1 set /a notoriety="%notoriety%+8 set /a votes="%votes%-%Random% %%6-0% set /a rivalgangsters="%rivalgangsters%-%Random% %%4-0% echo %rivalname%'s crew has %rivalgangsters% men left. echo %name%'s crew has %gangsters% men left. pause goto Sunday :attack2fail echo You need more men to carry out this attack! pause goto Saturday :attack2fail2 echo You need more funds to carry out this attack! pause goto Saturday :attack3 cls echo================================================= echo WAR! echo================================================= echo You've instructed your men to attack %rivalname% crew. echo================================================= echo %rivalname% has a crew of %rivalgangsters% henchmen. echo %rivalname% has a turf of %rivalblocks% building blocks. echo. echo %name% has a crew of %gangsters% henchmen. echo %name% has a funds of $%money%. echo. if %gangsters% leq 15 goto attack3fail if %money% leq 600 goto attack3fail2 pause echo A squad of your crew ambushes %rivalname%'s men in the streets! echo. set /a money="%money%-600 set /a attackcount="%attackcount%+1 set /a notoriety="%notoriety%+12 set /a votes="%votes%-%Random% %%8-0% set /a rivalgangsters="%rivalgangsters%-%Random% %%6-1% echo %rivalname%'s crew has %rivalgangsters% men left. echo %name%'s crew has %gangsters% men left. pause goto Sunday :attack3fail echo You need more men to carry out this attack! pause goto Saturday :attack3fail2 echo You need more funds to carry out this attack! pause goto Saturday :attack4 cls echo================================================= echo WAR! echo================================================= echo You've instructed your men to attack %rivalname% crew. echo================================================= echo %rivalname% has a crew of %rivalgangsters% henchmen. echo %rivalname% has a turf of %rivalblocks% building blocks. echo. echo %name% has a crew of %gangsters% henchmen. echo %name% has a funds of $%money%. echo. if %gangsters% leq 25 goto attack4fail if %money% leq 800 goto attack4fail2 pause echo Your enforcers furiously bomb %rivalname%'s buildings! echo. set /a money="%money%-800 set /a attackcount="%attackcount%+1 set /a notoriety="%notoriety%+15 set /a votes="%votes%-%Random% %%12-0% set /a rivalgangsters="%rivalgangsters%-%Random% %%8-0% set /a rivalblocks="%rivalblocks%-%Random% %%4-1% echo %rivalname%'s crew has %rivalgangsters% men left. echo %rivalname%'s crew has %rivalblocks% buildings left. echo %name%'s crew has %gangsters% men left. pause goto Sunday :attack4fail echo You need more men to carry out this attack! pause goto Saturday :attack4fail2 echo You need more funds to carry out this attack! pause goto Saturday :Sunday cls color F0 if %blocks% leq 0 goto dead if %gangsters% leq 0 goto dead if %money% leq 0 goto bankrupt if %rivalblocks% leq 0 goto win if %rivalgangsters% leq 0 goto win if %rivalmoney% leq 0 goto win echo=============================================== echo The Newspaper week %week% echo=============================================== echo Sunday echo=============================================== echo ## ## ###### ## ## ## ###### echo ### ## ## ## ## ## ## # echo ## ### ###### ## ## ## ## echo ## ## ## ######## # ## echo ## ## ###### ## ## ###### echo=============================================== if %notoriety% equ 8 echo NEW PLAYER IN TOWN! if %notoriety% equ 8 echo %name% is known for being ruthless in business, if %notoriety% equ 8 echo but fair according to sources. if %notoriety% equ 8 echo. if %notoriety% equ 9 echo EXTORTION RING RUMOURS if %notoriety% equ 9 echo A hardware store owner who is not willing to reveal if %notoriety% equ 9 echo his identity says people are scared. if %notoriety% equ 9 echo. if %gangsters% equ 6 echo EMPLOYEMENT RISES if %gangsters% equ 6 echo Due to the global pandemic many lost their jobs, if %gangsters% equ 6 echo but there's hope for the people of our city. if %gangsters% equ 6 echo. if %blocks% equ 6 echo STOREOWNERS FEEL UNSAFE if %blocks% equ 6 echo Because of the recent riots and looting storeowners if %blocks% equ 6 echo feel they have to take safety measures. if %blocks% equ 6 echo. if %rivalblocks% equ 7 echo %rivalname% HELPS PEOPLE WITH FINANCIAL TROUBLES if %rivalblocks% equ 7 echo "It feels good to be able to see people so if %rivalblocks% equ 7 echo thankful after getting a loan." if %rivalblocks% equ 7 echo. if %rivalgangsters% equ 5 echo %rivalname% SET OUT TO EMPLOY CITIZENS if %rivalgangsters% equ 5 echo If you are looking for work, look no further! if %rivalgangsters% equ 5 echo Visit me at my office. if %rivalgangsters% equ 5 echo. if %blocks% equ 4 echo ELECTION THIS YEAR if %blocks% equ 4 echo In order to move forward again our city needs if %blocks% equ 4 echo a new mayor! Participate! if %blocks% equ 4 echo. if %blocks% equ 8 echo BURGLARS ACTIVE if %blocks% equ 8 echo According to the numbers burglary season has if %blocks% equ 8 echo started. Be on the lookout. if %blocks% equ 8 echo. if %blocks% equ 12 echo 62 YEAR OLD POLITICIAN WITH HREAT PROMISES if %blocks% equ 12 echo Jimmy Phillips wants to build new houses and if %blocks% equ 12 echo projects in our suburbs. if %blocks% equ 12 echo. if %blocks% equ 15 echo PHILLIPS'S OLD REMARKS HAUNT HIM if %blocks% equ 15 echo The run for mayor will be a exciting one. One of the if %blocks% equ 15 echo participants made some nasty remarks in the past. if %blocks% equ 15 echo. if %gangsters% equ 4 echo DANGEROUS CLAIMS if %gangsters% equ 4 echo Sketchy newsoutlets claim the global pandemic if %gangsters% equ 4 echo is a fraud and causes panic. if %gangsters% equ 4 echo. if %gangsters% equ 6 echo JIMMY PHILLIPS SET TO RUN FOR MAYOR if %gangsters% equ 6 echo The outspoken politician from Irish decent wants if %gangsters% equ 6 echo the people's votes in week 20! if %gangsters% equ 6 echo. if %gangsters% equ 9 echo JIMMY PHILLIPS WANTS THE LAW TO WIN if %gangsters% equ 9 echo Running to become mayor of our city makes Phillips if %gangsters% equ 9 echo do alot of great promises. if %gangsters% equ 9 echo. if %gangsters% equ 13 echo DONATION TO CHARITY FROM PHILLIPS if %gangsters% equ 13 echo The flamboyant politician donates $1000 for the if %gangsters% equ 13 echo homeless foodsupply! They're very thankful. if %gangsters% equ 13 echo. if %gangsters% equ 18 echo JIMMY PHILLIPS CONFIDENT IN CAMPAIGN if %gangsters% equ 18 echo He said to wipe out anyone who dares to challenge if %gangsters% equ 18 echo him to become mayor of our city! if %gangsters% equ 18 echo. if %campaign% equ 1 echo %name% RUNS FOR MAYOR! if %campaign% equ 1 echo Citizens of our crippled city are in need of if %campaign% equ 1 echo someone new to make things better. if %campaign% equ 1 echo. if %attackedcount% equ 3 echo VIOLENCE SWEEPS THE CITY! if %attackedcount% equ 3 echo Horrific shootings have shocked us all. if %attackedcount% equ 3 echo Rumours are %rivalname% is out on a gangwar. if %attackedcount% equ 3 echo. if %attackedcount% equ 5 echo CHIEF OF POLICE DETERMINED TO STOP GANGS! if %attackedcount% equ 5 echo Sammy Giulliani has sworn to put gangsters behind if %attackedcount% equ 5 echo bars. No matter what's needed. if %attackedcount% equ 5 echo. if %attackedcount% equ 6 echo ANOTHER TERRIBLE SHOOTOUT! if %attackedcount% equ 6 echo Reportedly several men got killed in the incident. if %attackedcount% equ 6 echo %name% denies all allegations. if %attackedcount% equ 6 echo. if %attackedcount% equ 7 echo %rivalname% DECLARES WAR ON %GANGNAME%! if %attackedcount% equ 7 echo Last week it came to the point of another shooting. if %attackedcount% equ 7 echo Head of police is determined to put a halt to this. if %attackedcount% equ 7 echo. if %attackcount% equ 2 echo MORE GUN VIOLENCE if %attackcount% equ 2 echo The incident happened at Northern Road Ave. Many if %attackcount% equ 2 echo injured and killed. The start of a gangwar? if %attackcount% equ 2 echo. if %attackcount% equ 3 echo %gangname% BEHIND ATTACKS? if %attackcount% equ 3 echo Some vicious incidents of gunviolence have occured. if %attackcount% equ 3 echo Our city is wondering who's behind this. if %attackcount% equ 3 echo. if %robcount% equ 2 echo ROBBERY AT HARDWARESTORE if %robcount% equ 2 echo Peter Stoltz was robbed at gunpoint last week. if %robcount% equ 2 echo It's unclear who's behind the incident. if %robcount% equ 2 echo. if %robcount% equ 3 echo VICIOUS CREW "%gangname%" ENTERS TOWN if %robcount% equ 3 echo Word on the street is a ruthless crime family now if %robcount% equ 3 echo spreads its tentacles through our town. if %robcount% equ 3 echo. if %robcount% equ 7 echo CREW "%gangname%" IS NOT JOKING if %robcount% equ 7 echo There's little evidence to support the claims but crime if %robcount% equ 7 echo family %gangname% is said to be behind many robberies. if %robcount% equ 7 echo. if %robcount% equ 5 echo FASHIONSTORE OUTLET BRUTALY ROBBED if %robcount% equ 5 echo Sandra Owens is almost bankrupt as she was robbed last if %robcount% equ 5 echo week by a group of thugs. She's desperate for help. if %robcount% equ 5 echo. if %robcount% equ 9 echo ROBBERY AT DRUGSTORE if %robcount% equ 9 echo Brenda Smith says she was in fear of her life. if %robcount% equ 9 echo %rivalname% was said to be involved in the incident. if %robcount% equ 9 echo. if %robcount% equ 11 echo SUPERMARKET TARGETED BY CRIMINALS if %robcount% equ 11 echo A supermarket in west part of town was robbed. if %robcount% equ 11 echo The suspects remain unidentified. if %robcount% equ 11 echo. if %robcount% equ 13 echo IRISHMAN SAID HE WILL MAKE CRIME GO DOWN if %robcount% equ 13 echo Our city is plagued with crime. One man knows the answer. if %robcount% equ 13 echo 62 year old Jimmy Phillips said he knows what's needed. if %robcount% equ 13 echo. if %recruitcount% equ 3 echo %name% IS LOOKING FOR WORKERS if %recruitcount% equ 3 echo To counter the financial crisis jobs are opening up. if %recruitcount% equ 3 echo Headquarters is located in southwest part of town. if %recruitcount% equ 3 echo. if %recruitcount% equ 6 echo BUSINESS IS LOOKING FOR YOU if %recruitcount% equ 6 echo Light at the end of a dark tunnel, employment is on if %recruitcount% equ 6 echo the rise! Sign up for vacancies now! if %recruitcount% equ 6 echo. if %attackedcount% equ 7 echo BIG EXPLOSION LAST WEEK if %attackedcount% equ 7 echo A large explosion occured at tenement block injuring if %attackedcount% equ 7 echo and killing several people. if %attackedcount% equ 7 echo. if %attackedcount% equ 9 echo BUILDING UP IN FLAMES if %attackedcount% equ 9 echo Another building went up in flames last week. if %attackedcount% equ 9 echo People are terrified to speak out. if %attackedcount% equ 9 echo. if %attackcount% equ 8 echo WORKERS FEAR FOR THEIR LIVES if %attackcount% equ 8 echo A culture of fear spreads it's claws over our if %attackcount% equ 8 echo workingclass men and women due to recent violence. if %attackcount% equ 8 echo. if %notoriety% equ 101 echo CRIMINAL ARRESTED AFTER ROBBERY if %notoriety% equ 101 echo A 35 year old criminal was arrested after being if %notoriety% equ 101 echo identified as one of the suspects of a robbery. if %notoriety% equ 101 echo. if %notoriety% equ 102 echo CRIMINAL ARRESTED WITH TIES TO MOB if %notoriety% equ 102 echo The police arrested a 41 year old female for if %notoriety% equ 102 echo extortion, racketeering and being tied to the mob. if %notoriety% equ 102 echo. if %notoriety% equ 104 echo CRIMINAL ARRESTED WITH TIES TO MOB if %notoriety% equ 104 echo The police arrested a 36 year old male for if %notoriety% equ 104 echo extortion, racketeering and being tied to the mob. if %notoriety% equ 104 echo. if %notoriety% equ 106 echo CRIMINAL CONNECTED TO SHOOTING ARRESTED! if %notoriety% equ 106 echo Not much is known but the police arrested a man if %notoriety% equ 106 echo for being tied to a fatal shooting a few weeks ago. if %notoriety% equ 106 echo. if %notoriety% equ 107 echo CRIMINAL CONNECTED TO SHOOTING ARRESTED! if %notoriety% equ 107 echo Not much is known but the police arrested a man if %notoriety% equ 107 echo for being tied to a fatal shooting a few weeks ago. if %notoriety% equ 107 echo. if %notoriety% equ 108 echo CRIMINAL CONNECTED TO SHOOTING ARRESTED! if %notoriety% equ 108 echo Not much is known but the police arrested a man if %notoriety% equ 108 echo for being tied to a fatal shooting a few weeks ago. if %notoriety% equ 108 echo. if %burglarycount% equ 1 echo OLDER COUPLE PROTECTS JEWELS if %burglarycount% equ 1 echo An older couple scared off two burglars who if %burglarycount% equ 1 echo were seen in their home. if %burglarycount% equ 1 echo. if %burglarycount% equ 2 echo KEEP YOUR DOORS LOCKED if %burglarycount% equ 2 echo Due to the financial crisis burglars are more if %burglarycount% equ 2 echo active than usual. if %burglarycount% equ 2 echo. if %burglarycount% equ 3 echo MAN COMES HOME IN A MESS if %burglarycount% equ 3 echo A 37 year old citizen came home from a day of if %burglarycount% equ 3 echo hard work and found out burglars had entered. if %burglarycount% equ 3 echo. if %burglarycount% equ 4 echo WOMAN FINDS HER BEDROOM TRASHED if %burglarycount% equ 4 echo An older lady found her bedroom trashed as if %burglarycount% equ 4 echo she has become the latest victim of burglars. if %burglarycount% equ 4 echo. if %votes% equ 100 echo. if %votes% equ 100 echo %name% BECOMES POPULAR FIGURE if %votes% equ 100 echo %name% is becoming a popular figure in the eye of the if %votes% equ 100 echo public according to a local poll. if %votes% equ 100 echo. if %votes% equ 101 echo %name% BECOMES POPULAR FIGURE if %votes% equ 101 echo %name% is becoming a popular figure in the eye of the if %votes% equ 101 echo public according to a local poll. if %votes% equ 101 echo. if %votes% equ 102 echo %name% BECOMES POPULAR FIGURE if %votes% equ 102 echo %name% is becoming a popular figure in the eye of the if %votes% equ 102 echo public according to a local poll. if %votes% equ 102 echo. if %votes% equ 104 echo %name% BECOMES POPULAR FIGURE if %votes% equ 104 echo %name% is becoming a popular figure in the eye of the if %votes% equ 104 echo public according to a local poll. if %votes% equ 104 echo. if %votes% equ 106 echo %name% BECOMES POPULAR FIGURE if %votes% equ 106 echo %name% is becoming a popular figure in the eye of the if %votes% equ 106 echo public according to a local poll. if %votes% equ 106 echo. if %votes% equ 108 echo %name% BECOMES POPULAR FIGURE if %votes% equ 108 echo %name% is becoming a popular figure in the eye of the if %votes% equ 108 echo public according to a local poll. if %votes% equ 108 echo. if %votes% equ 110 echo %name% BECOMES POPULAR FIGURE if %votes% equ 110 echo %name% is becoming a popular figure in the eye of the if %votes% equ 110 echo public according to a local poll. if %votes% equ 110 echo. if %votes% equ 112 echo %name% BECOMES POPULAR FIGURE if %votes% equ 112 echo %name% is becoming a popular figure in the eye of the if %votes% equ 112 echo public according to a local poll. if %votes% equ 112 echo. if %votes% equ 570 echo %name% IS THERE FOR THE PEOPLE! if %votes% equ 570 echo %name% is well known in the living room of most citizens. if %votes% equ 570 echo Could be interesting with the upcoming election. if %votes% equ 570 echo. if %votes% equ 572 echo %name% IS THERE FOR THE PEOPLE! if %votes% equ 572 echo %name% is well known in the living room of most citizens. if %votes% equ 572 echo Could be interesting with the upcoming election. if %votes% equ 572 echo. if %votes% equ 576 echo %name% IS THERE FOR THE PEOPLE! if %votes% equ 576 echo %name% is well known in the living room of most citizens. if %votes% equ 576 echo Could be interesting with the upcoming election. if %votes% equ 576 echo. if %votes% equ 580 echo %name% IS THERE FOR THE PEOPLE! if %votes% equ 580 echo %name% is well known in the living room of most citizens. if %votes% equ 580 echo Could be interesting with the upcoming election. if %votes% equ 580 echo. if %votes% equ 593 echo %name% IS THERE FOR THE PEOPLE! if %votes% equ 593 echo %name% is well known in the living room of most citizens. if %votes% equ 593 echo Could be interesting with the upcoming election. if %votes% equ 593 echo. if %votes% geq 1000 echo %name% DONATED TO CHARITY if %votes% geq 1000 echo Many people were happy with the donation to the if %votes% geq 1000 echo homeless and the poor. %name% was praised. if %votes% geq 1000 echo. echo=============================================== echo=============================================== echo Stats echo=============================================== echo Extortions: %extortcount% Robberies: %robcount% Recruitment: %recruitcount% echo Attacks: %attackcount% Attacked: %attackedcount% Popularity: %votes% echo Burglaries: %burglarycount% echo=============================================== set /a week="%week%+1 set /a takeover="%takeover%+%Random% %%2+1% pause if %week% equ 20 goto theelections set /a hiredhit="%hiredhit%+%Random% %%3+1% if %hiredhit% equ 30 goto guards1 if %hiredhit% equ 60 goto guards1 if %hiredhit% equ 90 goto guards1 if %hiredhit% equ 105 goto guards1 if %hiredhit% equ 120 goto guards1 if %hiredhit% equ 23 goto guards1 if %hiredhit% equ 40 goto guards1 if %notoriety% geq 100 goto prison if %rivalnotoriety% geq 100 goto prison2 if %takeover% equ 12 goto loseblocks if %takeover% equ 20 goto loseblocks if %takeover% equ 28 goto loseblocks if %takeover% equ 36 goto loseblocks if %takeover% equ 45 goto loseblocks if %takeover% equ 54 goto loseblocks if %takeover% equ 59 goto loseblocks if %takeover% equ 64 goto loseblocks if %takeover% equ 69 goto loseblocks if %takeover% equ 74 goto loseblocks if %takeover% equ 79 goto loseblocks if %takeover% equ 84 goto loseblocks if %takeover% equ 89 goto loseblocks goto Monday :guards1 cls color 40 echo=============================================== echo Attempted hit echo=============================================== echo. echo %rivalname% sent out a hitman to wack you! echo. set /a rivalmoney="%rivalmoney%-500 pause echo. if %bodyguards% equ 1 goto guards2 echo. echo The hit succeeds! You were shot dead! echo. pause goto dead :guards2 echo Your bodyguards prevented the attempt! echo. pause goto Monday :loseblocks cls color 40 if %campaign% equ 1 goto theoutcome echo=============================================== echo Territory echo=============================================== echo. echo %rivalname% took over some of your building blocks! echo. echo You had %blocks% blocks under your control. echo. set /a blocks="%blocks%-5 set /a rivalblocks="%rivalblocks%+5 set /a votes="%votes%-25 echo You now have %blocks% blocks under control. echo. pause goto Monday :theelections cls color 40 if %campaign% equ 1 goto theoutcome echo=============================================== echo The Elections echo=============================================== echo. echo It's week 20, the day of the elections has arrived! echo. echo With an overwhelming majority of the votes our citizens echo have used their voice to determine their future. echo. echo The winner of the election of this year is none other echo than Jimmy Phillips! echo. pause goto Monday :theoutcome cls if %votes% geq 2501 goto theoutcome2 echo=============================================== echo The Elections echo=============================================== echo. echo It's week 20, the day of the elections has arrived! echo. echo You ran a campaign to become mayor of the city. echo. echo With an overwhelming majority of the votes our citizens echo have used their voice to determine their future. echo. echo The winner of the election of this year is none other echo than pause echo Jimmy Phillips! echo. echo Votes: Jimmy Phillips: 2500 - %name%: %votes% pause goto Monday :theoutcome2 echo=============================================== echo The Elections echo=============================================== echo. echo It's week 20, the day of the elections has arrived! echo. echo You ran a campaign to become mayor of the city. echo. echo With an overwhelming majority of the votes our citizens echo have used their voice to determine their future. echo. echo The winner of the election of this year is none other echo than pause echo %name%! echo. echo Votes: Jimmy Phillips: 2500 - %name%: %votes% pause goto win :prison cls color 40 echo================================================== echo POLICE STATION echo================================================== echo. echo Your crew is wanted by the police. echo. echo You lost 1 henchmen who was arrested for crimes. echo. set /a gangsters="%gangsters%-1 pause echo. goto prison2 :prison2 cls color 40 echo================================================== echo POLICE STATION echo================================================== echo. if %rivalnotoriety% leq 99 goto Monday echo %rivalname%'s crew is wanted by the police. echo. echo %rivalname% lost 1 henchmen who was arrested for crimes. echo. set /a rivalgangsters="%rivalgangsters%-1 pause if %rivalmoney% geq 1500 goto rivalbribe goto Monday :rivalbribe echo %rivalname% bribed the police to get rid of his notoriety. echo. set /a rivalnotoriety=0 set /a rivalmoney="%rivalmoney%-500 pause goto Monday :bankrupt cls color 40 echo============================================== echo DEFEAT! echo============================================== echo. echo You're out of business, you went bankrupt! echo And you know what happens to people who can't pay up? echo. echo============================================== echo. pause goto gamestats2 :dead cls color 40 echo============================================== echo DEFEAT! echo============================================== echo. echo You're dead! %rivalname% defeated you. echo You went swimming with cement shoes! echo. echo============================================== echo. pause goto gamestats2 :win cls color 40 echo============================================== echo VICTORY! echo============================================== echo. echo Congratulations! %rivalname% is out of business. echo You defeated your rival. The city is yours! echo. echo============================================== echo. pause goto gamestats :gamestats cls echo============================================== echo GAMESTATS echo============================================== echo. echo Name: %name% echo Gang Name: %gangname% echo Blocks: %blocks% echo Crew: %gangsters% henchmen echo Money: $%money% echo Popularity: %votes% echo Extortions: %extortcount% echo Robberies: %robcount% echo Burglaries: %burglarycount% echo Recruitment: %recruitcount% echo Attacks: %attackcount% echo Attacked: %attackedcount% times echo Won in week: %week% echo. echo Defeated: %rivalname% echo Blocks: %rivalblocks% echo Crew: %rivalgangsters% henchmen echo Money: %rivalmoney% echo. pause goto closingit :gamestats2 cls echo============================================== echo GAMESTATS echo============================================== echo. echo Name: %name% echo Gang Name: %gangname% echo Blocks: %blocks% echo Crew: %gangsters% henchmen echo Money: $%money% echo Popularity: %votes% echo Extortions: %extortcount% echo Robberies: %robcount% echo Burglaries: %burglarycount% echo Recruitment: %recruitcount% echo Attacks: %attackcount% echo Attacked: %attackedcount% times echo Defeated in week: %week% echo Defeated by: %rivalname% echo. pause goto closingit