Jump to content

Markercartoons

Member
  • Posts

    42
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Markercartoons reacted to Jurrunio in Cpu overheating with new heatsink + thermal paste   
    Could try tightening the screws harder to increase pressure on the CPU, but it's also possible that paste inside the CPU has dried up.
  2. Like
    Markercartoons reacted to Slottr in Cpu overheating with new heatsink + thermal paste   
    That looks like a shitload of paste, just do a pea sized dot in the middle and place the cooler on.
  3. Informative
    Markercartoons reacted to Dutch-stoner in First time coding, need help in notepad.   
    http://www.wikihow.com/Delay-a-Batch-File
  4. Informative
    Markercartoons reacted to Dutch-stoner in First time coding, need help in notepad.   
    @echo off
    cls
    echo Yo Yo Yo my G.
    :loop
    :menu
    cls
    color 0a
    color 1a
    cls
    echo 1.)Start
    echo 2.)Exit
    set /p number=
     
    if %number% == 1 goto Game
    if %number% == 2 Exit
     
     
    if not defined number (
    cls
    goto loop
    )
     
    :Game
    cls
    echo Hey dog whats yo name man?
    set /p name=
    cls
    echo Yo %name% you wanna start the game? (y/n)
    set /p hey=
     
    if %hey% == y goto thegame
    if %hey% == n menu
    if %hey% == N menu
    if %hey% == Y goto thegame
     
    :thegame
    cls
    echo The is level 1 out of 2.
    echo.
    echo Who's yo' favourite rapper?
    echo.
    echo 1.)Tupac
    echo 2.)Biggie
    echo 3.)Tech n9ne
    echo 4.)Logic
    set /p level=
     
    if %hey% == y goto the game
    if %hey% == n menu
    if %hey% == N menu
    if %hey% == Y goto the game
    :the game
    cls
    echo This is level 2 out of 2.
    echo.
    echo Do you like old or newer rap better?
    echo.
    echo 1.)Older rap is da best homie.
    echo 1.)Newer rap is da crap man.
    set /p level=
    if %hey% == y goto youwin
    if %hey% == n menu
    if %hey% == N menu
    if %hey% == Y goto youwin
    :youwin
    cls
    echo Wow that was hard how did you win???
    echo Bye!
    pause>nul
    goto menu
  5. Informative
    Markercartoons reacted to Dutch-stoner in First time coding, need help in notepad.   
    Colours are in you case, hexadecimal. (0 to 9 + A to F) There are loads of color pickers, which give you a hex code colour. (max 6 characters long, for example 000000 or FFFFFF) Each 2 of those hex numbers, represent a colour. (red blue and green, might not be that order) Hope you can learn some of this, and that google can help you more.
  6. Informative
    Markercartoons reacted to Dutch-stoner in First time coding, need help in notepad.   
    if %hey% == y goto youwin
    if %hey% == n menu
    if %hey% == N menu
    if %hey% == Y goto youwin
    :the game
    echo This is level 2 out of 2.
     
    You should have changed thos to "the game", however I doubt that a space will work... But I never programmed in this language, so I dunno.
  7. Informative
    Markercartoons reacted to Dutch-stoner in First time coding, need help in notepad.   
    I don't know this language. However...
     
    :youwin // Start of a code block/function.
    cls // Clears screen of all previous messages.
    echo wow that was hard how did you win??? // Prompts you a message. (tells you something)
    echo by // Prompts you a message. (tells you something)
    goto menu // Makes you automaticaly go to the main menu.
×