Absolutely amazing! I'm definitely digging the youtube video idea and it's way more convenient than the opening a bunch of note.txt. The only real problem with the map is the number of pesky creepers (a few important areas that really shouldn't get blown to bits) but that's the price of being a purely vanilla adventure map.
On a side note I got kinda tired of tabbing out all the time so for the interested I made a short autoit script to launch an invisible IE window and access the videos via the numpad from inside minecraft. The script is pretty generic and loads a list of videos from a config file for the off chance that the youtube method gets more popular. Source is below and I suppose I could bundle into a .exe if anyone actually wants it.
AdventurePlayer.au3
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.6.1
Author: drenith
Script Function:
Plays youtube video for adventure map
#ce ----------------------------------------------------------------------------
#include "IE.au3"
Opt("TrayOnEventMode",1)
Opt("TrayMenuMode",1)
TrayCreateItem("Help")
TrayItemSetOnEvent(-1,"ShowHelp")
TrayCreateItem("Exit")
TrayItemSetOnEvent(-1,"_Exit")
Global const $APPNAME = "MC Adventure Youtube Audio Player"
Global const $GREETING = "Videos are started using the numpad." & @CRLF & "For videos 0-9 use Numpad 0-9." & @CRLF & "For 10-19 use Ctrl + Numpad0-9." & @CRLF & "For 20-29 use Alt + Numpad0-9." & @CRLF & "On the off chance you forget the controls just select help from the tray icon to see the instructions again."
Global const $HELP_SCREEN = "Controls" & @CRLF & "-------------------------------" & @CRLF & "Numpad0 = Video 0" & @CRLF & "Numpad1 = Video 1" & @CRLF & "Numpad2 = Video 2" & @CRLF &"................." & @CRLF &"Ctrl + Numpad0 = Video 10" & @CRLF &"Ctrl + Numpad1 = Video 11" & @CRLF &"................." & @CRLF &"Alt + Numpad0 = Video 20" & @CRLF &"Alt + Numpad1 = Video 21" & @CRLF &"................." & @CRLF &"Alt + Numpad9 = Video 29"
;Ctrl = ^, Alt = !, Shift = +
Global $modifiers[3] = ["", "^", "!"]
Global $size = 30
Global $urls[$size]
Global $browser
Setup()
Func Setup()
_MsgBox($GREETING)
OnAutoItExitRegister("_Exit")
$browser = _IECreate("about:blank", 0, 0) ;3rd param = visible/invisible
GenerateHotkeys()
LoadUrls()
While 1
Sleep(1000)
WEnd
EndFunc
Func _Exit()
_IEQuit($browser)
Exit
EndFunc
Func LoadUrls()
$filepath = FileOpenDialog("Select a Video Config File", @WorkingDir, "Text files (*.txt)", 1)
$handle = FileOpen($filepath)
For $i=0 To $size
$url = FileReadLine($handle)
If @error == -1 Then ;EOF
ExitLoop
EndIf
$chunks = StringSplit($url, "|", 2)
If @error == 0 Then
$urls[$i] = $chunks[1]
EndIf
Next
Global $size = $i
ReDim $urls[$size]
FileClose($handle)
EndFunc
Func GenerateHotkeys()
For $i=0 To 2
For $k=0 To 9
HotkeySet($modifiers[$i] & "{Numpad" & $k & "}", "PlayVideo")
Next
Next
EndFunc
Func ArrayContains($array, $test)
For $i=1 To UBound($array)-1
If($array[$i] == $test) Then
Return $i
EndIf
Next
Return 0
EndFunc
Func Hotkey2Index($hotkey)
$prefix = StringMid($hotkey, 1, 1)
$modifier = ArrayContains($modifiers, $prefix) * 10
$digit = Int(StringMid($hotkey, StringLen($hotkey)-1, 1))
Return $modifier + $digit
EndFunc
Func ShowHelp()
_MsgBox($HELP_SCREEN)
EndFunc
Func PlayVideo()
$index = Hotkey2Index(@HotKeyPressed)
If $index < $size Then
_IENavigate($browser, $urls[$index])
EndIf
EndFunc
Func _MsgBox($msg)
MsgBox(0, $APPNAME, $msg)
EndFunc
I am uploading a new version. The early game was turning out to be much harder than I had wanted.
*New version is up. A lot more starting equipment, and some extra light sources to prevent so much mob spawning
I've been playing MC for several months every day. I got as far as the library and got damn tired if being blown up by creepers everytime I respawn. "Turned out hard?" Try nearly impossible and not playable for all but the most hardcore and experienced players. You should say this in your introduction so us average players don't waste our time. Took all the fun out of it.
I've been playing MC for several months every day. I got as far as the library and got damn tired if being blown up by creepers everytime I respawn. "Turned out hard?" Try nearly impossible and not playable for all but the most hardcore and experienced players. You should say this in your introduction so us average players don't waste our time. Took all the fun out of it.
I've seen dozens of playthroughs by new players who had no real problem. Sounds like you are just bad at minecraft.
Amazing Map! I played it on hard finished it in around 2 hours. I got stuck on the Maze part for 1 hour though. I love the voiceover thingy, Keep Up the Good Work! I hope the sequel comes out soon!
Amazing Map! I played it on hard finished it in around 2 hours. I got stuck on the Maze part for 1 hour though. I love the voiceover thingy, Keep Up the Good Work! I hope the sequel comes out soon!
Whoa! great map! iw'e been playing this map for 15 minutes an i love it allready!
also, can you add a folder containing all the text in from the videos, so players are able to get all the info needed, even in offline mode???
anyways! great map! continue with the great work :biggrin.gif:
I can't wait to play this. I'm saving this map until I get my new computer so I don't play on Tiny and ruin the fun. At least one more month until I can play!
It was the best adventure map and took me 2 hours
Very entertaining. Congratz
Yeah and i also beat the maze in about 2 minutes or so
On a side note I got kinda tired of tabbing out all the time so for the interested I made a short autoit script to launch an invisible IE window and access the videos via the numpad from inside minecraft. The script is pretty generic and loads a list of videos from a config file for the off chance that the youtube method gets more popular. Source is below and I suppose I could bundle into a .exe if anyone actually wants it.
AdventurePlayer.au3
If I like it enough I'll make a video on it!
Amazing map. I really love it. Wicked hard though. I'll make a let's play soon. I will post it at youtube.com/2mondo98
I've seen dozens of playthroughs by new players who had no real problem. Sounds like you are just bad at minecraft.
My Twitter: BlameTC
thanks and congrats on beating it on hard
My Twitter: BlameTC
also, can you add a folder containing all the text in from the videos, so players are able to get all the info needed, even in offline mode???
anyways! great map! continue with the great work :biggrin.gif:
Thanks, I am hard at work on the sequel now
My Twitter: BlameTC
hope you like it
My Twitter: BlameTC
There are no notes, why would anyone want to go back to notes when audio is so much better anyways
My Twitter: BlameTC
Thanks for the hard work.