@zep
Hello everyone.
I have a question in vox 3.5.b you could press a check box and make your prop indestructible, in vox 3.6 this check box is gone. There are still indestructible voxels you can choose. But you are limited to only 2 colors. Is there is a way to make you entire prop indestructible in 3.6 same as in 3.5b?
Thank you!
Demo:
Added different doors appear depending on colors of your character.
More rooms added with different type of gameplay.
Character changes the look on inventory items use.
Added money, now you can't just get your pick-ups, earn monkey to buy it.
Made first room jumping easier. And changed jumping for different color modifiers.
This is my school project.
"Learn about one topic over the year and present it to my class"
It's loosely based on "Zelda"
My Character:
moves with arrow keys
Uses weapon with x
jumps with space bar or z
I am going to continue with this in an upcoming year.
Stay tuned :)
Updated,
Started working on rooms.
This character has states; for walking, idle, jumping, etc...
feel free to re-mix :)
I decided to start a library of scripts to help those transitioning from visual scripting to lua.
You should be able to copy and paste code into your new script object put object in the room and run it with "Crt+R"
If something doesn't work please let me know.
Feel free to ask questions.
Have fun
/Digital Monkey
Lua scrip to print.
place scrip object in the room.
function draw() boxfill(0,0,63,128,128,63,3) set_draw_slice(120, true) print("printing", 48, 11, 7) print("in voxatron 3.5b", 40, 20, 7) end |
This is basic player controllers
control the box with arrows, z and x
x = 64 y = 64 updown = 30 function _update() if (btn(0)) then x=x-1 end if (btn(1)) then x=x+1 end if (btn(2)) then y=y-1 end if (btn(3)) then y=y+1 end if (btn(4)) then updown=updown-1 end if (btn(5)) then updown=updown+1 end end function _draw() clv() boxfill(x,y,updown,x+10,y+10,updown+10,14) boxfill(0,0,63,128,128,63,3) set_draw_slice(50) print("control the box", 33, 10, 7) print("using arrows, z and x keys", 10, 100, updown-1) end |
Scrip to change rooms made with "function draw()"
on J and K button press
(It's a flip book to go back and forth between rooms)
I made this by looking at script from GARDENING by: PROGRAM_IX



@zep for some reason vox 3.5 and 3.5b when installed don't appear to have a ico file see image of
the voxatron 3.5b shortcut from my desktop.
Thank you :)

How would i go about, writing a script to change rooms on button press?
I tried to use an old "switch room" script object but it doesn't do what I want.
Switching multiple rooms on a button press, with the same button. Like arrow right to go forward and arrow left to go back.
Hope this make sense.
Thank you.
/D

