Wednesday, April 13

Guide to make a war game in notepad

Last time I provided you steps to make a quiz game.This time I will tell you how to make a War game.

HERE WE GO=

Step1: Open notepad

Hey Open notepad in your P.C or tablet

Step2: Copy this text in notepad

@echo off
color 0c
title TOTAL WAR!!!
echo.
echo Welcome to Total War, created by Saksham.
echo.
pause
:players
cls
set player=
set replay=
echo.
set /p player=Select 1 or 2 player mode:
if '%player%'=='1' goto name
if '%player%'=='2' goto p1name
goto players
:name
cls
set name=
echo.
set /p name=Please type in your name (One word):
if'%name%'=="goto name
rem Easter Egg:
if '%name%'=='Vincent' goto win
:countryclsif '%cpucountryrand%'=='1' set enemy=Russia
if '%cpucountryrand%'=='2' set enemy=USA
if '%cpucountryrand%'=='3' set enemy=Canada
if '%cpucountryrand%'=='4' goto enemy
if '%cpucountryrand%'=='5' goto enemy
if '%enemy%'=='%country%' goto enemy
:begin
set user=1000
set cpu=1000
set nuke=1
set airstrike=2
set missiles=3
set cpunuke=1
set cpuairstrike=2
set cpumissiles=3
:gameplay
cls
set move=
set choice=
set cpucount=0
echo.
echo %name%, your turn.
echo                                                               %country%: %user% DEF
echo Options:
echo                                                               %enemy%: %cpu% DEF
echo 1. Fire NUKE x %nuke%
echo.
echo 2. Fire Airstrike x %airstrike%
echo.
echo 3. Fire Missiles x %missiles%
echo.
echo 4. Surrender
echo.
echo 5. Do nothing
echo.
set /p move=Select your option:
if '%move%'=='1' goto nuke
if '%move%'=='2' goto airstrike
if '%move%'=='3' goto missiles
if '%move%'=='4' goto surrender
if '%move%'=='5' goto cpu1
goto gameplay
:nuke
cls
if '%nuke%'=='0' goto nonuke
echo.
echo %name% has fired a NUKE headed towards the %enemy%!
echo.
ping localhost -n 4 >nul
echo Hit!
echo.
echo %enemy% has lost 400 DEF!
echo.
pause
set /a cpu=%cpu% - 400
set nuke=0
if '%cpu%'=='0' goto win
if '%cpu%'=='-100' goto win
if '%cpu%'=='-200' goto win
if '%cpu%'=='-300' goto win
goto cpu1
:nonuke
echo.
echo You can't use a nuke since you don't have any more left!
echo.
pause
goto gameplay
:airstrike
cls
if '%airstrike%'=='0' goto noairstrike
echo.
echo %name% has fired an airstrike on the %enemy%!
echo.
ping localhost -n 4 >nul
echo Hit!
echo.
echo %enemy% has lost 300 DEF!
echo.
pause
set /a cpu=%cpu% - 300
set /a airstrike=%airstrike% - 1
if '%cpu%'=='0' goto win
if '%cpu%'=='-100' goto win
if '%cpu%'=='-200' goto win
if '%cpu%'=='-300' goto win
goto cpu1
:noairstrike
echo.
echo You can't use an airstrike since you don't have any more left!
echo.
pause
goto gameplay
:missiles
cls
if '%missiles%'=='0' goto nomissiles
echo.
echo %name% has fired multiple missiles headed towards the %enemy%!
echo.
ping localhost -n 4 >nul
echo Hit!
echo.
echo %enemy% has lost 200 DEF!
echo.
pause
set /a cpu=%cpu% - 200
set /a missiles=%missiles% - 1
if '%cpu%'=='0' goto win
if '%cpu%'=='-100' goto win
if '%cpu%'=='-200' goto win
if '%cpu%'=='-300' goto win
goto cpu1
:nomissiles
echo.
echo You can't use missiles since you don't have any more left!
echo.
pause
goto gameplay
:surrender
cls
echo.
echo "We may have lost the war, but we still have our dignity..."
echo.
pause
:end
cls
echo.
echo "We may have lost the war, but we still have our dignity..."
echo.
set /p replay=Type anything to replay the game. Type 'x' to exit:
if '%replay%'=='x' goto suggest
if '%replay%'=='' goto end
goto players
:win
cls
echo.
echo You have won Total War!!!
echo.
pause
:win2
cls
echo.
echo You have won Total War!!!
echo.
set /p replay=Type anything to replay the game. Type 'x' to exit:
if '%replay%'=='x' goto suggest
if '%replay%'=='' goto win2
goto players
:cpu1
cls
set /a cpucount=%cpucount% + 1
if '%cpucount%'=='10' goto cpu2
echo.
echo My turn.
echo                                                               %country%: %user% DEF
echo Options:
echo                                                               %enemy%: %cpu% DEF
echo 1. Fire NUKE x %cpunuke%
echo.
echo 2. Fire Airstrike x %cpuairstrike%
echo.
echo 3. Fire Missiles x %cpumissiles%
echo.
echo 4. Surrender
echo.
echo 5. Do nothing
echo.
echo Select your option:/
ping localhost -n 1 >nul
ping localhost -n 1 >nul
ping localhost -n 1 >nul
ping localhost -n 1 >nul
cls
echo.
echo My turn.
echo                                                               %country%: %user% DEF
echo Options:
echo                                                               %enemy%: %cpu% DEF
echo 1. Fire NUKE x %cpunuke%
echo.
echo 2. Fire Airstrike x %cpuairstrike%
echo.
echo 3. Fire Missiles x %cpumissiles%
echo.
echo 4. Surrender
echo.
echo 5. Do nothing
echo.
echo Select your option:-
ping localhost -n 1 >nul
ping localhost -n 1 >nul
ping localhost -n 1 >nul
ping localhost -n 1 >nul
cls
echo.
echo My turn.
echo                                                               %country%: %user% DEF
echo Options:
echo                                                               %enemy%: %cpu% DEF
echo 1. Fire NUKE x %cpunuke%
echo.
echo 2. Fire Airstrike x %cpuairstrike%
echo.
echo 3. Fire Missiles x %cpumissiles%
echo.
echo 4. Surrender
echo.
echo 5. Do nothing
echo.
echo Select your option:\
ping localhost -n 1 >nul
ping localhost -n 1 >nul
ping localhost -n 1 >nul
ping localhost -n 1 >nul
goto cpu1
:cpu2
cls
set /a choice=%random% %%6
if '%choice%'=='0' goto cpu2
if '%choice%'=='4' goto cpu2
if '%choice%'=='6' goto cpu2
echo.
echo My turn.
echo                                                               %country%: %user% DEF
echo Options:
echo                                                               %enemy%: %cpu% DEF
echo 1. Fire NUKE x %cpunuke%
echo.
echo 2. Fire Airstrike x %cpuairstrike%
echo.
echo 3. Fire Missiles x %cpumissiles%
echo.
echo 4. Surrender
echo.
echo 5. Do nothing
echo.
echo Select your option:%choice%
ping localhost -n 4 >nul
if '%choice%'=='1' goto cpunuke
if '%choice%'=='2' goto cpuairstrike
if '%choice%'=='3' goto cpumissiles
if '%choice%'=='5' goto gameplay
:cpunuke
cls
if '%cpunuke%'=='0' goto nocpunuke
echo.
echo I have fired a NUKE headed towards the %country%!
echo.
ping localhost -n 4 >nul
echo Hit!
echo.
echo %country% has lost 400 DEF!
echo.
ping localhost -n 4 >nul
set /a user=%user% - 400
set cpunuke=0
if '%user%'=='0' goto cpuwin
if '%user%'=='-100' goto cpuwin
if '%user%'=='-200' goto cpuwin
if '%user%'=='-300' goto cpuwin
goto gameplay
:nocpunuke
echo.
echo I can't use a nuke since I don't have any more left!
echo.
ping localhost -n 4 >nul
set cpucount=0
goto cpu1
:cpuairstrike
cls
if '%cpuairstrike%'=='0' goto nocpuairstrike
echo.
echo I have fired an airstrike on the %country%!
echo.
ping localhost -n 4 >nul
echo Hit!
echo.
echo %country% has lost 300 DEF!
echo.
ping localhost -n 4 >nul
set /a user=%user% - 300
set /a cpuairstrike=%cpuairstrike% - 1
if '%user%'=='0' goto cpuwin
if '%user%'=='-100' goto cpuwin
if '%user%'=='-200' goto cpuwin
if '%user%'=='-300' goto cpuwin
goto gameplay
:nocpuairstrike
echo.
echo I can't use an airstrike since I don't have any more left!
echo.
ping localhost -n 4 >nul
set cpucount=0
goto cpu1
:cpumissiles
cls
if '%cpumissiles%'=='0' goto nocpumissiles
echo.
echo I have fired multiple missiles headed towards the %country%!
echo.
ping localhost -n 4 >nul
echo Hit!
echo.
echo %country% has lost 200 DEF!
echo.
ping localhost -n 4 >nul
set /a user=%user% - 200
set /a cpumissiles=%cpumissiles% - 1
if '%user%'=='0' goto cpuwin
if '%user%'=='-100' goto cpuwin
if '%user%'=='-200' goto cpuwin
if '%user%'=='-300' goto cpuwin
goto gameplay
:nocpumissiles
echo.
echo I can't use missiles since I don't have any more left!
echo.
ping localhost -n 4 >nul
set cpucount=0
goto cpu1
:cpuwin
cls
echo.
echo It was a long battle today. I have emerged victorious, even though you tried
echo very well.
echo.
pause
:cpuwin2
cls
echo.
echo It was a long battle today. I have emerged victorious, even though you tried
echo very well.
echo.
set /p replay=Type anything to replay the game. Type 'x' to exit:
if '%replay%'=='x' goto suggest
if '%replay%'=='' goto cpuwin2
goto players
:p1name
cls
set p1name=
echo.
set /p p1name=Player 1, please type in your name (One word):
if '%p1name%'=='' goto p1name
:p2name
cls
set p2name=
echo.
set /p p2name=Player 2, please type in your name (One word):
if '%p2name%'=='%p1name%' goto p2name
if '%p2name%'=='' goto p2name
rem Easter Egg:
if '%p1name%'=='Vincent' goto p1win
if '%p2name%'=='Vincent' goto p2win
:p1country
cls
set p1country=
echo.
echo Welcome %p1name%!
echo.
set /p p1country=Choose your country; USA, Russia, or Canada:
if '%p1country%'=='usa' goto p1country1
if '%p1country%'=='USA' goto p1country1
if '%p1country%'=='Usa' goto p1country1
if '%p1country%'=='Russia' goto p1country2
if '%p1country%'=='russia' goto p1country2
if '%p1country%'=='canada' goto p1country3
if '%p1country%'=='Canada' goto p1country3
goto p1country
:p1country1
set p1country=USA
goto p2country
:p1country2
set p1country=Russia
goto p2country
:p1country3
set p1country=Canada
:p2country
cls
set p2country=
echo.
echo Welcome %p2name%!
echo.
set /p p2country=Choose your country; USA, Russia, or Canada:
if '%p2country%'=='%p1country%' goto na
if '%p2country%'=='usa' goto p2country1
if '%p2country%'=='USA' goto p2country1
if '%p2country%'=='Usa' goto p2country1
if '%p2country%'=='Russia' goto p2country2
if '%p2country%'=='russia' goto p2country2
if '%p2country%'=='canada' goto p2country3
if '%p2country%'=='Canada' goto p2country3
goto p2country
:na
cls
echo.
echo You can't choose %p1country% because %p1name% has already chosen it.
pause >nul
goto p2country
:p2country1
set p2country=USA
goto begin2
:p2country2
set p2country=Russia
goto begin2
:p2country3
set p2country=Canada
:begin2
set p1health=1000
set p2health=1000
set p1nuke=1
set p1airstrike=2
set p1missiles=3
set p2nuke=1
set p2airstrike=2
set p2missiles=3
:p1gameplay
cls
set move=
set choice=
echo.
echo %p1name%, your turn.
echo                                                               %p1country%: %p1health% DEF
echo Options:
echo                                                               %p2country%: %p2health% DEF
echo 1. Fire NUKE x %p1nuke%
echo.
echo 2. Fire Airstrike x %p1airstrike%
echo.
echo 3. Fire Missiles x %p1missiles%
echo.
echo 4. Surrender
echo.
echo 5. Do nothing
echo.
set /p move=Select your option:
if '%move%'=='1' goto p1nuke
if '%move%'=='2' goto p1airstrike
if '%move%'=='3' goto p1missiles
if '%move%'=='4' goto p1surrender
if '%move%'=='5' goto p2gameplay
goto p1gameplay
:p1nuke
cls
if '%p1nuke%'=='0' goto nop1nuke
echo.
echo %p1name% has fired a NUKE headed towards %p2country%!
echo.
ping localhost -n 4 >nul
echo Hit!
echo.
echo %p2country% has lost 400 DEF!
echo.
pause
set /a p2health=%p2health% - 400
set p1nuke=0
if '%p2health%'=='0' goto p1win
if '%p2health%'=='-100' goto p1win
if '%p2health%'=='-200' goto p1win
if '%p2health%'=='-300' goto p1win
goto p2gameplay
:nop1nuke
echo.
echo You can't use a nuke since you don't have any more left!
echo.
pause
goto p1gameplay
:p1airstrike
cls
if '%p1airstrike%'=='0' goto nop1airstrike
echo.
echo %p1name% has fired an airstrike on %p2country%!
echo.
ping localhost -n 4 >nul
echo Hit!
echo.
echo %p2country% has lost 300 DEF!
echo.
pause
set /a p2health=%p2health% - 300
set /a p1airstrike=%p1airstrike% - 1
if '%p2health%'=='0' goto p1win
if '%p2health%'=='-100' goto p1win
if '%p2health%'=='-200' goto p1win
if '%p2health%'=='-300' goto p1win
goto p2gameplay
:nop1airstrike
echo.
echo You can't use an airstrike since you don't have any more left!
echo.
pause
goto p1gameplay
:p1missiles
cls
if '%p1missiles%'=='0' goto nop1missiles
echo.
echo %p1name% has fired multiple missiles headed towards %p2country%!
echo.
ping localhost -n 4 >nul
echo Hit!
echo.
echo %p2country% has lost 200 DEF!
echo.
pause
set /a p2health=%p2health% - 200
set /a p1missiles=%p1missiles% - 1
if '%p2health%'=='0' goto p1win
if '%p2health%'=='-100' goto p1win
if '%p2health%'=='-200' goto p1win
if '%p2health%'=='-300' goto p1win
goto p2gameplay
:nop1missiles
echo.
echo You can't use missiles since you don't have any more left!
echo.
pause
goto p1gameplay
:p1surrender
cls
echo.
echo %p2name% has won Total War!!!
echo.
pause
:p1surrender2
cls
echo.
echo %p2name% has won Total War!!!
echo.
set /p replay=Type anything to replay the game. Type 'x' to exit:
if '%replay%'=='x' goto suggest
if '%replay%'=='' goto p1surrender2
goto players
:p1win
cls
echo.
echo %p1name% has won Total War!!!
echo.
pause
:p1win2
cls
echo.
echo %p1name% has won Total War!!!
echo.
set /p replay=Type anything to replay the game. Type 'x' to exit:
if '%replay%'=='x' goto suggest
if '%replay%'=='' goto p1win2
goto players
:p2gameplay
cls
set move=
set choice=
echo.
echo %p2name%, your turn.
echo                                                               %p2country%: %p2health% DEF
echo Options:
echo                                                               %p1country%: %p1health% DEF
echo 1. Fire NUKE x %p2nuke%
echo.
echo 2. Fire Airstrike x %p2airstrike%
echo.
echo 3. Fire Missiles x %p2missiles%
echo.
echo 4. Surrender
echo.
echo 5. Do nothing
echo.
set /p move=Select your option:
if '%move%'=='1' goto p2nuke
if '%move%'=='2' goto p2airstrike
if '%move%'=='3' goto p2missiles
if '%move%'=='4' goto p2surrender
if '%move%'=='5' goto p1gameplay
goto p2gameplay
:p2nuke
cls
if '%p2nuke%'=='0' goto nop2nuke
echo.
echo %p2name% has fired a NUKE headed towards %p1country%!
echo.
ping localhost -n 4 >nul
echo Hit!
echo.
echo %p1country% has lost 400 DEF!
echo.
pause
set /a p1health=%p1health% - 400
set p2nuke=0
if '%p1health%'=='0' goto p2win
if '%p1health%'=='-100' goto p2win
if '%p1health%'=='-200' goto p2win
if '%p1health%'=='-300' goto p2win
goto p1gameplay
:nop2nuke
echo.
echo You can't use a nuke since you don't have any more left!
echo.
pause
goto p2gameplay
:p2airstrike
cls
if '%p2airstrike%'=='0' goto nop2airstrike
echo.
echo %p2name% has fired an airstrike on %p1country%!
echo.
ping localhost -n 4 >nul
echo Hit!
echo.
echo %p1country% has lost 300 DEF!
echo.
pause
set /a p1health=%p1health% - 300
set /a p2airstrike=%p2airstrike% - 1
if '%p1health%'=='0' goto p2win
if '%p1health%'=='-100' goto p2win
if '%p1health%'=='-200' goto p2win
if '%p1health%'=='-300' goto p2win
goto p1gameplay
:nop2airstrike
echo.
echo You can't use an airstrike since you don't have any more left!
echo.
pause
goto p2gameplay
:p2missiles
cls
if '%p2missiles%'=='0' goto nop2missiles
echo.
echo %p2name% has fired multiple missiles headed towards %p1country%!
echo.
ping localhost -n 4 >nul
echo Hit!
echo.
echo %p1country% has lost 200 DEF!
echo.
pause
set /a p1health=%p1health% - 200
set /a p2missiles=%p2missiles% - 1
if '%p1health%'=='0' goto p2win
if '%p1health%'=='-100' goto p2win
if '%p1health%'=='-200' goto p2win
if '%p1health%'=='-300' goto p2win
goto p1gameplay
:nop2missiles
echo.
echo You can't use missiles since you don't have any more left!
echo.
pause
goto p2gameplay
:p2surrender
cls
echo.
echo %p1name% has won Total War!!!
echo.
pause
:p2surrender2
cls
echo.
echo %p1name% has won Total War!!!
echo.
set /p replay=Type anything to replay the game. Type 'x' to exit:
if '%replay%'=='x' goto suggest
if '%replay%'=='' goto p2surrender2goto players
:p2win
cls
echo.
echo %p2name% has won Total War!!!
echo.
pause
:p2win2
cls
echo.
echo %p2name% has won Total War!!!
echo.
set /p replay=Type anything to replay the game. Type 'x' to exit:
if '%replay%'=='x' goto suggest
if '%replay%'=='' goto p2win2
goto players
:suggest
cls
echo.
echo Before you leave, can you suggest a country I can add to the file?
echo.
set /p suggestion=Suggest a country here:
if '%suggestion%'=='' goto suggest
echo %suggestion% >> suggestions.txt
set country=
set enemy=
echo.
echo Welcome %name%!
echo.
set /p country=Choose your country; USA, Russia, or Canada:
if '%country%'=='usa' goto enemy1
if '%country%'=='USA' goto enemy1
if '%country%'=='Usa' goto enemy1
if '%country%'=='Russia' goto enemy2
if '%country%'=='russia' goto enemy2
if '%country%'=='canada' goto enemy3
if '%country%'=='Canada' goto enemy3
goto country
:enemy1
set country=USA
goto enemy
:enemy2
set country=Russia
goto enemy
:enemy3
set country=Canada
:enemy
set /a cpucountryrand=%random% %%5 +1
if '%cpucountryrand%'=='0' goto enemy

Step3: save this file

Save this file as "war.bat" or anything but its name end with ".bat"

So enjoy this game and be happy.Stay tuned with me.BYE-BYE


Sunday, April 3

Steps to make a quiz game in notepad.

Do you want to make a quiz game of your own.Yes you can.This will take only 5 minutes.Yes just Follow 5 steps and make your quiz game

HERE WE GO:-

 Step 1

Open notepad in your P.C or laptop.


 STEP 2= After opening Notepad. Paste this code in notepad.

@echo off
color a
:menu
echo Welcome to Saksham's Game
echo 1) Start
echo 2) Exit
set /p menu=
if %menu% == 1 goto start
if %menu% == 2 goto exit
cls

:start
echo Hello,
cls
pause
echo how are you feeling ?
set /p ok=
echo im feeling %ok% too mate
pause
cls

echo sorry I didnt tell you my name! I am Saksham
echo and you are ?
set /p name=
echo hello %Name%, I just want to say that you are now my friend
pause
echo how old are you?
set /p age=
echo you'r %age%
pause
echo I'm 14 year's old :D
pause
cls

:quiz
echo Welcome to the Quiz by : Saksham Luthra
pause
echo Question 1
echo What is capital of country- philippines?

echo 1) Manila
echo 2) Port Moresby
echo 3) Montgomery

set /p quiz=
if %quiz% == 1 goto yes
if %quiz% == 2 goto nop
if %quiz% == 3 goto nope
pause

:yes
echo Correct ! 
goto quiz2
cls
:quiz2
echo In which film Tom cruize has not done any role

echo 1) The firm
echo 2) Salt
echo 3) Mission Impossible 2

set /p quiz=
if %quiz% == 1 goto Nop
if %quiz% == 2 goto nice
if %quiz% == 3 goto nope
cls
:Nice
echo Correct !
goto quiz3

:quiz3
echo Who directed movie"Shawshank redumption".?
echo 1) Mark Steven Johnson
echo 2) Steve Austin
echo 3) Frank Darabont

set /p quiz=
if %quiz% == 1 goto nope
if %quiz% == 2 goto nope
if %quiz% == 3 goto end

:end
echo Correct you are very intelligent
timeout 15
exit


:nope
echo Wrong !




:exit
exit


Step 3=Save this file as Game.bat

After pasting this code,save this file as quiz.bat or anything but the file name should end with (.bat)

Step 4=Open this file 

After saving the file,open the file and start playing. Enjoy this game.Also remember to save this code in text format in your P.C or laptop.


Now enjoy this game and stay tuned with us.Visit this blog for interesting posts.BYE-BYE.




Sunday, March 27

Possible wrestlemania 2016 matches.

Hi everyone.The fans of W.W.E are eagerly waiting for Wrestlemania 32.Yup its 32nd Wrestlemania and it will contain lots of fun.It has 1 ladder match,the world heavyweight championship match,hell in a cell match and many more.



Lets see the list of matches in wrestlemania 32 :-

  • WWE World Heavyweight Championship: Triple H (c) vs. Roman Reigns
  • Divas Championship: Charlotte (c) vs. Becky Lynch vs. Sasha Banks
  • No Holds Barred Street Fight: Dean Ambrose vs. Brock Lesnar
  • Hell in a Cell: Shane McMahon vs. The Undertaker
  • 3rd Annual Andre the Giant Memorial Battle Royal
  • The Dudley Boyz vs. The Usos
  • Battle for Tag Team Supremacy: The New Day (c) vs. League of Nations
  • United States Championship: Kalisto (c) vs. Ryback
  • Intercontinental Title Ladder Match: Kevin Owens (c) vs. Zack Ryder vs. Dolph Ziggler vs. Sami Zayn vs. Stardust vs. The Miz vs. Sin Cara
  •  The vince wants that HELL IN A CELL MATCH should end the wrestlemania32 but "HHH" wants that WORLD HEAVYWEIGHT CHAMPIONSHIP match should end the Wrestlemani 32.You just enjoy it and stay tuned with us.

    BYE-BYE

    Tuesday, March 1

    Top 4 earning companies worldwide

    Have you ever thought which company earns the most?I will tell you in this post

    HERE WE GO=


    #4-Toyota motors

    Toyota motors is ranked 5th on the basis of their earning. It earns $7,300 per second and it earns $230,200,000,000 per year.

    #3-Royal dutch shell

    The 3rd rank on the basis of earning is Royal dutch shell petroleum. it earns $11,282 per second and $355,782,000,000 per year

    #2-Coca-cola





















    Yes it is coca-cola. One of my favorite brand.It earns $11,900 per second and earns $373,213,000,000 per year.

    #1-Walmart

    The company which earns the most worldwide is Walmart. It earns $12,200 per second and $378,799,000,000 per year.

    Yes Walmart is the company which earns the most.Till my next post stay tuned with me.

    Wednesday, February 24

    One more HELL IN A CELL match for undertaker but this time with Shane mcmahon.



    The Undertaker has WWE in his veins. He’s been a fixture in the company through thick and thin, destroying opponents and earning respect from the locker room for 25 years and counting. At wrestle mania though, he’ll stand inside Hell in a Cell across the ring from someone born into WWE royalty and eyeing control over its flagship program Raw: Shane McMahon, the grandson of WWE’s founding father and son of WWE’s current Chairman.Shane started his career in the WWE warehouse at age 15, fulfilling merchandise orders. In the 25 years that followed, Shane led several departments behind the scenes and rose to the position of Executive Vice President of Global Media, while also becoming a major player on WWE TV. But in 2010, he decided to leave WWE and create his own path, pursuing other business ventures in China, far from the shadow his father Mr. McMahon cast.
    On the Feb. 22 Raw, though, Shane unexpectedly returned to WWE to interrupt his sister Stephanie McMahon from becoming the first recipient of the Vincent J. McMahon Legacy of Excellence Award. After Mr. McMahon lauded Stephanie for having a “good-hearted soul,” Shane cut off her acceptance speech, irreverently dancing to the ring in a suit and a pair of Air Jordan 1s — a testament to his laid-back, yet corporate, demeanor.
    Shane rejected his father’s hug and handshake before saying Stephanie did not earn this new honor. Shane then told his father that he wanted control of Monday Night Raw to ensure the company’s future, which Mr. McMahon agreed to on one condition: Shane defeats The Undertaker at WrestleMania in a Hell in a Cell Match. If Shane loses, he must surrender a lock box of family secrets to his father.
    The Undertaker may be known as being one of the toughest Superstars to ever step inside the ring, but the same can be said for the much smaller Shane, who is 2-0 at WrestleMania. He battles like a jungle cat: He’ll knock you off your feet with his sharp punches and pounce through the air to take down prey. Unlike most billionaire’s sons, Shane has proven that he’ll go crashing through anything — be it glass or gravity — for a win.
    That death-defying is needed inside the dreaded Cell, the Devil’s Playground where Undertaker has tortured souls since the match’s inception in 1997.
    Will Shane prevail in WWE’s most dangerous match against its most feared competitor to take control of WWE? Watch Shane McMahon try to topple The Undertaker inside Hell in a Cell at Wrestle Mania on April 3

    Monday, February 22

    W.W.E Fastlane results

    Every W.W.E fan was waiting for Fastlane 2016. Yup it was amazing event. Lets start the countdown of results
    HERE WE GO

    UNITED STATES CHAMPIONSHIP - Alberto Del Rio vs Kalisto

     An interesting match between kalisto and alberto del rio.At last alberto del rio was defeated by kalisto.Now kalisto is the U.S Champion

     Sasha Banks & Becky Lynch vs Naomi & Tamina

    The women's tag team match was won by Sasha banks and Becky lynch 

    INTERCONTINENTAL CHAMPIONSHIP-Kevin Owens vs Dolph Ziggler

    A very interesting match between KO and Dolph ziggler. the superkick of dolph ziggler failed many times. At last KO defeated ziggler and became intercontinental champion

    Rayback,Bigshow,Kane vs Wyatt family

    The scariest Team of W.W.E was defeated by three big guys.The second most watched match was won by bigshow,rayback and demon kane.

    DIVAS CHAMPIONSHIP- charlotte vs brie bella

    Divas championship was won by charlotte

    A.J Styles vs Chris jericho

    The third match of aj styles vs jericho was held in fastlane. A.J Styles proved jericho that he is best and won that match.

    Curtis Axel vs R-truth

    Curtis axel defeated R-truth.We thought taht R-truth will win but Curtis axel won

    Roman Reigns vs Brock Lesnar vs Dean Ambrose

    The most interesting match was this.Roman reign defeated beast and dean ambrose.The friendship of roman reigns and dean ambrose broked up due to this match.now he will face TRIPLE H in  finals for WORLD HEAVYWEIGHT CHAMPIONSHIP.

     Just wait for our next post and stay tuned with us.Till the BYE BYE




    Monday, February 15

    Strangest things banned by countries

    There are many things banned by countries.Today I will showcase some of them
    HERE WE GO:-

    Blue jeans-North Korea 

    Blue jeans fine.But blue being a colour that is associated with the United States, North Korea decided to ban blue jeans.

    Jogging-Burundi

    During the prolonged period of turmoil that ened in the last decade, it was common practice for the citizens to go jogging together in groups, partly to have one another as protection from the militia. But in March 2014, Pierre Nkurunziza-the president of the country, banned jogging based on the argument that people use the activity as a cover to plan subversive activities.

    Chewing gum-Singapore


    It’s not exactly on chewing gum that Singapore has put a ban on, but on the sale of gum-which is more or less the same. The exception is made for those with a medical prescription for gum(apparently, there are such people). The ban came into effect in 1992-the details around this is unclear but apparently in that year someone managed to bring the public transportation system to a halt by using a chewing gum.


    Online video games after midnight

    The “shutdown law” of 2011 disallowed kids under 16 to play video games from midnight till 6 A.M. The ban was imposed in order to help curb a gaming addiction. However, following a parental request, the ban might be lifted by the authorities.

    Red Bull-FRANCE


    Until 2008, Red Bull was banned in France due to concerns over the chemical tarine contained in the drink.

    Kinder Surprise candy eggs-United States


    Kinder Surprises are many a child’s delight and parent’s distress-as they have to practically earmark a percentage of their monthly salary to buy it. No worries of such kind for parents in the U.S.A as the confectionery is banned there, the reason being the product is seen as a choking hazard. People who bring it from other countries have even been detained in airports for ‘possession’ of the substance.

    Till my next post stay tuned and bye-bye