Jump to content


TNT_Nolan's Content

There have been 13 items by TNT_Nolan (Search limited from 29-March 23)


By content type

See this member's

Sort by                Order  

#267368 How can I encrypt a string with a MD5 hash?

Posted by TNT_Nolan on 01 June 2017 - 02:33 PM in Ask a Pro

Trying to make a little password system, how can I encrypt it with a MD5?



#263972 Turtle Pilot

Posted by TNT_Nolan on 24 January 2017 - 02:55 PM in Turtle Programs

^ Might do that.



#253153 Acora Server 2.1 [MC: 1.8.9][CC: 1.78]

Posted by TNT_Nolan on 06 June 2016 - 03:37 PM in Servers

No update?



#252979 Acora Server 2.1 [MC: 1.8.9][CC: 1.78]

Posted by TNT_Nolan on 04 June 2016 - 12:27 PM in Servers

But no forge



#252977 Acora Server 2.1 [MC: 1.8.9][CC: 1.78]

Posted by TNT_Nolan on 04 June 2016 - 12:15 PM in Servers

The reason why it crashes is because you have a _MACOSX file. This happens when you compress a file on a mac. Get rid of that file and it works perfectly. :D



#252976 Acora Server 2.1 [MC: 1.8.9][CC: 1.78]

Posted by TNT_Nolan on 04 June 2016 - 12:09 PM in Servers

Theres not even forge on it.

Add all the thermal stuff and mekanism btw.



#252898 Acora Server 2.1 [MC: 1.8.9][CC: 1.78]

Posted by TNT_Nolan on 03 June 2016 - 08:07 PM in Servers

Erm, your modpack is vanilla.



#252881 [V4.1 COMING!] LoganDark's Password Lock

Posted by TNT_Nolan on 03 June 2016 - 04:07 PM in Programs

People overthink stuff too much.

I can crack it in five seconds 4 steps.

Get floppy disk

Make a new program named started with the code

print("Look, its gone!")

Put it in there computer

Done

You cant beat the ol floppy disk



#252865 Turtle Pilot

Posted by TNT_Nolan on 03 June 2016 - 02:03 PM in Turtle Programs

Hello there!

Over the course of 2 hours I have made a remote control turtle app which can make a turtle fly wherever you want to!

What you will need:
Wireless Turtle
Advanced Computer
Wireless Modem
Fuel

Simply download the client on the Wireless Turtle found here.

pastebin get 07swGDXV turtlehost

Run turtlehost on the Wireless turtle.

You should get a blank screen, this means it is working.

Now, on your advanced computer place the Wireless Modem on top of the computer, as shown

Attached Image: Modem.png

Install the turtle control client here

pastebin get 22qxLei3 rcturtle

Run rcturtle and you will greeted with a interface.

Attached Image: Screen Shot 2016-06-03 at 9.54.42 AM.png

Press the buttons and watch your turtle fly!



#252852 Scoreboard.

Posted by TNT_Nolan on 03 June 2016 - 12:05 PM in APIs and Utilities

Nobody likes fake loading times, it might look cool at first but its really stupid. Get rid of them, otherwise I like it.



#252826 [V4.1 COMING!] LoganDark's Password Lock

Posted by TNT_Nolan on 02 June 2016 - 09:28 PM in Programs

Good idea, you could use a rainbow table though to break the encryption.



#252816 How to track when you run in to food

Posted by TNT_Nolan on 02 June 2016 - 05:31 PM in Ask a Pro

Do you have any idea of how I could do that?



#252814 How to track when you run in to food

Posted by TNT_Nolan on 02 June 2016 - 05:14 PM in Ask a Pro

How can I track when I run in to a piece of food or a can of soda?

// Made by Nolan Bukhart

init()

function init()
    day = 1
    food = 100


    maxX = 58
    maxY = 18
    minX = 2
    minY = 2

    blackDisplay(day,food)
    createGameBoard(maxX,maxY,minX,minY)
end




function createGameBoard(maxX,maxY,minX,minY)

    //Images

    playerimg = paintutils.loadImage("../Imgs/player")
    enemy1img = paintutils.loadImage("../Imgs/enemy1")
    enemy2img = paintutils.loadImage("../Imgs/enemy2")
    foodimg = paintutils.loadImage("../Imgs/food")
    sodaimg = paintutils.loadImage("../Imgs/soda")

    //Setup the Colors
    term.setBackgroundColor(colors.lime)
    term.clear()
    paintutils.drawBox(1,1,59,19,colors.gray)

    numberOfSoda = Random.Range(1,3)
    numberOfFood = Random.range(1,3)

    sodaPlaced = 0
    foodPlaced = 0

    //Spawn Soda

    while numberOfSoda => cansPlaced do
        X = Random.Range(minX,maxX)
        Y = Random.Range(minY,maxY)
        paintutils.drawImage(X,Y,sodaimg)
        cansPlaced = cansPlaced + 1
    end

    //Spawn Food

    while numberOfFood => foodPlaced do
        X = Random.Range(minX,maxX)
        Y = Random.Range(minY,maxY)
        paintutils.drawImage(X,Y,foodimg)
        foodPlaced = foodPlaced + 1
    end

    //Spawn the Player

    paintutils.drawImage(4,4,playerimg)


end

function blackDisplay(day, food)
    term.setBackgroundColor(colors.black)
    term.clear()
    term.setCursorPos(24,9)
    term.setTextColor(colors.white)
    print("Day "..day)
    term.setCursorPos(20,10)
    print("Food left, "..food)
end