08-01-2025, 11:11 AM
A game about some sort of Australian boomerang throwing mate trapped in a weird dungeon will be released in a few days! So get ready for eight levels and a boss fight (ye, it's a short game)!
(08-01-2025, 10:12 PM)johnno56 Wrote: [ -> ]Love the boomerang! Feels like home... The only things missing are the Didgeridoo and witchety grubs... lol
Oh, short game or not, I personally am looking forward to actually getting to level 2... For me, getting through level 1, is a huge deal... lol
#win32
set window "Witchety Grubs",500,200,false,2
set redraw off
'color definition
black = [0,0,0]
white = [255,255,255]
'assets
witchetty2 = loadimage("assets2/witchetty grubs2.png",6,2)
didgeridoo = loadimage("assets2/didgeridoo.png",3,3)
'initial value
j = 1
i = 0
'-------------
'main program
'-------------
while not keydown(KEY_ESCAPE,true)
set color white ; cls
'animate didgeridoo
j = (j % 4) + 1
draw image didgeridoo, 10, 10, j
'animate witchetty grubs
i = (i + 1) % 7
draw image witchetty2, 400,100, i
fwait 5
redraw
wend![[Image: darned_dungeon_1.jpg]](https://naalaa.com/tmp/darned_dungeon_1.jpg)
![[Image: darned_dungeon_2.jpg]](https://naalaa.com/tmp/darned_dungeon_2.jpg)
(08-05-2025, 11:45 AM)johnno56 Wrote: [ -> ]Well... I almost got to the end of level 6... As Maxwell Smart once said, "Missed it by 'that' much".
Very cool game!!!