Batchbestand: oorlog spel


Hallo!

Ik ben I♥BatchFiles!

Ik upload een nieuwe batch bestand project om de andere dag. Volgende batchbestandproject zullen op 5/26/16.

Het gebruik van deze code:

  1. Open Kladblok en plak de onderstaande code erin.
  2. Klik op bestand
  3. Klik op Opslaan als
  4. Sla het op als War.bat
  5. Tekstdocumenten wijzigen op alle bestanden
  6. Druk op Opslaan
  7. Nu vinden in Windows Explorer (die weinig mappictogram) en openen

Batch bestand War spel

 off :menu color 0f cls echo WAR echo Version 1.1 echo Created by Me echo 1. Start game echo 2. Exit choice /c:12 /n > nul if errorlevel 2 goto sure if errorlevel 1 goto start :start :oneplayer set /a health = 1000 set /a money = 1000 set /a otherhealth = 1000 set /a until = 2 set /a cherrybomb = 50 set /a cherrybombcost = 300 set /a missile = 100 set /a missilecost = 500 set /a nuke = 200 set /a nukecost = 700 set /a lightpotion = 100 set /a lightpotioncost = 200 set /a heavypotion = 500 set /a heavypotioncost = 700 set /a defaultcherries = 3 set /a defaultmissiles = 2 set /a defaultnukes = 4 set /a defaultlights = 5 set /a defaultheavies = 7 set land set /a times = 0 cls echo Choose your land: echo A. Atropolis - land of the jungle echo B. Aquadatic - land of the sea echo C. Drylands - land of the desert echo D. Greenleaves - land of the prairie choice /c:abcd /n > nul if errorlevel 1 ( set /a land = 1 ) if errorlevel 2 ( set /a land = 2 ) if errorlevel 3 ( set /a land = 3 ) if errorlevel 4 ( set /a land = 4 ) if %land%==1 set it=Atropolis if %land%==2 set it=Aquadatic if %land%==3 set it=Drylands if %land%==4 set it=Greenleaves :choose REM Choosing opponent's land set /a otherland=%random% %% 4+1 if %otherland%==%land% ( goto choose ) if %otherland%==1 set theirit=Atropolis if %otherland%==2 set theirit=Aquadatic if %otherland%==3 set theirit=Drylands if %otherland%==4 set theirit=Greenleaves REM Creating new variable to set as opponent's land :game if %health% LSS 1 goto lose cls echo %it% echo. echo You are fighting %theirit% echo. echo %theirit%'s health: %otherhealth% echo. echo. echo Your Health: %health% echo Your Money: %money% echo Nukes: %defaultnukes% echo Missiles: %defaultmissiles% echo Cherry Bombs: %defaultcherries% echo. echo Choose: echo 1. Drop a nuke (%defaultnukes%) echo 2. Launch a missile (%defaultmissiles%) echo 3. Drop a cherry bomb :P (%defaultcherries%) echo 4. Open shop echo 5. Drink a light health potion (%defaultlights%) echo 6. Drink a heavy health potion (%defaultheavies%) echo 7. Complete a quest choice /c:1234567 /n > nul if errorlevel 7 goto quest if errorlevel 6 goto heavy if errorlevel 5 goto light if errorlevel 4 goto shop if errorlevel 3 goto cherry if errorlevel 2 goto missile if errorlevel 1 goto nuke :nuke if %defaultnukes% GTR 0 ( set /a otherhealth = %otherhealth%-%nuke% set /a defaultnukes = %defaultnukes%-1 cls echo %it% dropped a nuke on %theirit%! echo %theirit% lost 200 health! ping localhost -n 5 >nul goto other )else ( cls echo You cannot drop any nukes since you have 0. ping localhost -n 5 >nul goto game ) :missile if %defaultmissiles% GTR 0 ( set /a otherhealth = %otherhealth%-%missile% set /a defaultmissiles=%defaultmissiles%-1 cls echo %it% launched a missile on %theirit%! echo %theirit% lost 100 health! ping localhost -n 5 >nul goto other )else ( cls echo You cannot launch any missiles since you have 0. ping localhost -n 5 >nul goto game ) :cherry if %defaultcherries% GTR 0 ( set /a otherhealth = %otherhealth%-%cherrybomb% set /a defaultcherries = %defaultcherries%-1 cls echo %it% dropped a cherry bomb on %theirit%! echo %theirit% lost 50 health! ping localhost -n 5 >nul goto other )else ( cls echo You cannot drop any cherry bombs since you have 0. ping localhost -n 5 >nul goto game ) :light if %defaultlights% GTR 0 ( set /a health = %health%+100 set /a defaultlight = %defaultlight%-1 cls echo You drink a light health potion echo Now it is %theirit%'s turn. ping localhost -n 5 >nul goto other )else ( cls echo You have no light health potions ping localhost -n 5 >nul ) :heavy if %defaultheavies% GTR 0 ( set /a health = %health%+%heavypotion% set /a defaultheavies = %defaultheavies%-1 cls echo You drink a heavy health potion echo Now it is %theirit%'s turn. ping localhost -n 5 >nul goto other )else ( cls echo You have no heavy health potions ping localhost -n 5 >nul ) :shop cls echo Welcome to the shop echo Money: %money% echo 1. Buy Nuke echo Cost: %nukecost% echo Damage: %nuke% echo. echo 2. Buy Missile echo Cost: %missilecost% echo Damage: %missile% echo. echo 3. Buy Cherry Bomb echo Cost: %cherrybombcost% echo Damage: %cherrybomb% echo. echo 4. Buy Light Health Potion echo Cost: %lightpotioncost% echo Heals: %lightpotion% echo. echo 5. Buy Heavy Health Potion echo Cost: %heavypotioncost% echo Heals: %heavypotion% echo. echo 6. Leave store choice /C:123456 /n > nul if errorlevel 6 goto game if errorlevel 5 goto buyheavy if errorlevel 4 goto buylight if errorlevel 3 goto buycherry if errorlevel 2 goto buymissile if errorlevel 1 goto buynuke :buynuke set /a money = %money%-%nukecost% if %money% LSS 0 ( set /a money = %money%+%nukecost% echo You don't have enough money ping localhost -n 5 >nul )else ( set /a defaultnukes = %defaultnukes%+1 echo You have bought one nuke ping localhost -n 5 >nul goto shop ) :buymissile set /a money = %money%-%missilecost% if %money% LSS 0 ( set /a money = %money%+%missilecost% echo You don't have enough money ping localhost -n 5 >nul )else ( set /a defaultmissiles = %defaultmissiles%+1 echo You have bought one missile ping localhost -n 5 >nul goto shop ) :buycherry set /a money = %money%-%cherrybombcost% if %money% LSS 0 ( set /a money = %money%+%cherrybombcost% echo You don't have enough money ping localhost -n 5 >nul )else ( set /a defaultcherries = %defaultcherries%+1 echo You have bought one cherry bomb ping localhost -n 5 >nul goto shop ) :buylight set /a money = %money%-%lightpotioncost% if %money% LSS 0 ( set /a money = %money%+%lightpotioncost% echo You don't have enough money ping localhost -n 5 >nul )else ( set /a defaultlights = %defaultlights%+1 echo You have bought one light potion ping localhost -n 5 >nul goto shop ) :buyheavy set /a money = %money%-%heavypotioncost% if %money% LSS 0 ( set /a money = %money%+%heavypotioncost% echo You don't have enough money ping localhost -n 5 >nul )else ( set /a defaultheavies = %defaultheavies%+1 echo You have bought one heavy potion ping localhost -n 5 >nul goto shop ) :other cls set /a until = until - 1 if %otherhealth% LSS 1 ( goto win ) echo Your opponent is choosing what to do ping localhost -n 5 >nul set /a theirchoose=%random% %% 3+1 if %theirchoose%==1 ( cls set /a health=%health%-200 echo News: %theirit% decides to nuke you! You lose 200 health. ) if %theirchoose%==2 ( cls echo News: %theirit% decides to launch a missile at you! You lose 100 health. set /a health=%health%-100 ) if %theirchoose%==3 ( cls echo News: %theirit% decides to put cherry bombs on your windows. Some how you lose 50 health. set /a health=%health%-50 ) if %until%==0 ( echo Also, %theirit% uses their specially designed potion that no one else has. They gain 200 health. set /a otherhealth=%otherhealth%+200 set /a until=2 ) set /a times = 0 pause goto game :sure cls echo Are you sure you want to quit? echo 1. Yes echo 2. No choice /c:12 /n > nul if errorlevel 2 goto menu if errorlevel 1 exit :win cls echo You win! pause goto menu :lose cls echo Sorry you lose :( pause goto menu :quest cls if %times% == 1 ( echo You have already completed a quest in this turn pause goto game ) set /a times = %times% + 1 echo Complete this quest to earn money echo Yeah this isnt really a quest, its more like a quiz but whatever echo. echo Press S to start choice /c:s /n > nul if errorlevel 1 goto pick :pick cls set /a question=%random% %% 6+1 if %question%==1 goto qo if %question%==2 goto qtw if %question%==3 goto qt if %question%==4 goto qfo if %question%==5 goto qf if %question%==6 goto qs :qo cls echo How much money do you have in this game? set /p answer=(Please do not put any spaces in your answer or it will shut down and no labels): if %answer%==%money% ( cls echo Correct; You earn +300 money ping localhost -n 5 >nul set /a money=%money%+300 goto game )else ( cls echo Incorrect ping localhost -n 5 >nul goto game ) :qtw cls echo What is the other team's name? set /p answer=(Please do not put any spaces in your answer or it will shut down): if %answer%==%theirit% ( cls echo Correct; You earn +700 money ping localhost -n 5 >nul set /a money=%money%+700 goto game )else ( cls echo Incorrect ping localhost -n 5 >nul goto game ) :qt cls echo How much does a cherry bomb cost? set /p answer=(Please do not put any spaces in your answer or it will shut down and no labels): if %answer%==%cherrybombcost% ( cls echo Correct; You earn +500 money ping localhost -n 5 >nul set /a money=%money%+500 goto game )else ( cls echo Incorrect ping localhost -n 5 >nul goto game ) :qfo cls echo What is 40 + 20? set /p answer=(Please do not put any spaces in your answer or it will shut down): if %answer%==60 ( cls echo Correct; You earn +300 money ping localhost -n 5 >nul set /a money=%money%+300 goto game )else ( cls echo Incorrect ping localhost -n 5 >nul goto game ) :qf cls echo What is the fourth option in the store? echo Choose: echo 1. Missile echo 2. Light Potion echo 3. Nuke choice /c:123 /n > nul if errorlevel 3 goto incorrect if errorlevel 2 goto correct if errorlevel 1 goto incorrect :incorrect cls echo Incorrect ping localhost -n 5 >nul goto game :correct cls echo Correct; You earn +600 money set /a money=%money%+600 ping localhost -n 5 >nul goto game :qs cls echo Where does your opponent decide to put cherry bombs on? (This is the hardest question) set /p answer=(Please do not put any spaces in your answer or it will shut down; just one word answer): if %answer%==windows ( cls echo Correct; You earn +900 money ping localhost -n 5 >nul set /a money=%money%+900 goto game )else ( cls echo Incorrect ping localhost -n 5 >nul goto game ) 

Gerelateerde Artikelen

Goedkope Warhammer spel

Goedkope Warhammer spel

als u Warhammer weet, dan u weten zult dat het erg duur dus heb ik besloten om mijn eigen goedkopere versie met behulp van bordspel stukken te maken kan krijgen.Stap 1: Verzamel stukken Zal u een schaakbord, dobbelstenen en een liniaal.Stap 2: troepe
Bouw een 3D Model van een Nederlandse windmolen (in 1:100 of 1:160 schaal) afgedrukt

Bouw een 3D Model van een Nederlandse windmolen (in 1:100 of 1:160 schaal) afgedrukt

Dit instructable wandelingen door de bouw van een 3D Printed kit die een soort windmolen modellen verspreid van Noord-Europa maar meestal gedacht aan met betrekking tot Nederland. Het idee werd geboren in een gesprek over het soort landschap dat zou
Bouwen van Mini War Gaming Bunker Hill - gratis

Bouwen van Mini War Gaming Bunker Hill - gratis

Dit instructable zal u tonen hoe om meerdere verschillende items voor uw favoriete tafelblad mini oorlog spel te maken.  De voorgestelde dat u door het hele proces voordat u probeert lezen en wees creatief.Stap 1: materialen Het eerste wat dat je gaa
Hoe te spelen kleine oorlogen, door H.G. Wells.

Hoe te spelen kleine oorlogen, door H.G. Wells.

Iedereen weet H.G. Wells, recht? De Sci-Fi auteur die had al die rare Google doodles een tijdjerug? Nou, afgezien van al dat einde-van-de-aarde spullen speelde ook hij met speelgoedsoldaatjes met zijn kinderen. Niet alleen weinig plastic mannen en ze
Oorlog gebaseerd spel in Batch-bestand

Oorlog gebaseerd spel in Batch-bestand

dit is een batchbestand waarmee ik heb vrij recent thats een simulatie van de koude oorlog. Het duurde twee dagen in beslag voor mij, omdat de helft van het script is gebaseerd op de andere helft. Vertel me als er eventuele fouten in het script en ik
3D Print een spel: The Beginner's Guide

3D Print een spel: The Beginner's Guide

Dus uw bureau vol met 3D gedrukte nieuwigheid Yodas is, uilen en T-Rex schedels dat het verzamelen van meer stof dan ze doen kijkt. Zijn tijd om enkele praktische en bruikbaarheid aan uw prints. Het is tijd die u gaan 3D printen van uw eigen top tafe
Potlood oorlog I: de oorlog van veel

Potlood oorlog I: de oorlog van veel

Welkom op potlood oorlog ik! Dit spel is gebaseerd off van een spel, waar kan ik me niet herinneren! Laten we beginnen!Stap 1: Stap 1: Nee, u kunt nog niet spelen.Eerst moet u begrijpen de eisen! Hebt u nodig:een liniaaleen vriendeen potlood en gumke
Inleiding tot de Seej - een 3d afgedrukt spel

Inleiding tot de Seej - een 3d afgedrukt spel

Wat is Seej?Seej is 3D-gedrukte, omvallen-the-enemy's-flag, spel dat is gebaseerd op een oude "" bordspel genaamd "Kruisbogen en katapulten". Gehouden met rechte van Jim "Zheng3" Rodda de website is Seej een Open Source tafel
Onorthodoxe airsoft tactiek om te helpen de oorlog winnen

Onorthodoxe airsoft tactiek om te helpen de oorlog winnen

dit instructable is alles over het vinden van manieren om de oorlog te winnen. Manieren die niemand zou verwachten. Improvisatie is als zodanig een must. Deze handleiding krijgt u suggesties over onorthodoxe manieren om u te geven voordelen, maar zal
Oorlog strategie kaartspel.

Oorlog strategie kaartspel.

Dit is de instructies en regels van een 2-4 speler zet gebaseerd oorlog strategie kaartspel ik verzonnen. Als u denkt dat het ziet er saai probeer het met een vriend eerst omdat het meestal best leuk eindigt. Dank u voor het bekijken en ik hoop dat h
De Complete Collabororative knex oorlog gids

De Complete Collabororative knex oorlog gids

een realistische oorlog gids, door knexers die wat ze doen weten, voor knexers die zuigen op knex en niet bij het leven.Stap 1: tactiek Ok, tactiek.Goed eerst en vooral die op afhankelijk zijn voort uw pistool, wat werkt voor een Tr18 zal waarschijnl
Grote Mac hand clapping spel

Grote Mac hand clapping spel

dit is een van die hand clapping spelen de meesten van ons zijn opgegroeid met in de jaren 90 maar dat de meeste jeugd vandaag weet niet dus heb ik besloten om te delen om het te brengen terug in :) Deze is bedoeld voor groepen van mensen in plaats v
Hoe te spelen van de oorlog (kaartspel)

Hoe te spelen van de oorlog (kaartspel)

Voor dit spel moet u een standaard deck van 52 kaarten zonder jokers. Dit spel is alleen bedoeld voor twee mensen om te spelen. Het is handig om een tafel te spelen op en sommige stoelen zitten, maar deze zijn niet vereist. Dit spel kan maximaal 30 m
Hoe te spelen van oorlog

Hoe te spelen van oorlog

Oorlog is een redelijk eenvoudig kaartspel en neemt een lange tijd om te spelen wees niet bang om te gooien in uw eigen ideeën aan te passen van het spel!Stap 1: Een dek van kaarten ophalenStap 2: Haal de jokers, schudden de kaarten en pakken uit het