Log In  
Follow
Shikasketchbook

i'm a visual artist making pixel art

shikasketchbook

and a little bit electronic/chiptune music

stellanovatransnita

Trying to learn Pico8 now...

PicoShop Pro
by electricgryphon

Cart #zimemedagu-0 | 2023-12-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3


Hi everyone, attached here is a current game I'm working on.
Its just a simple concept game with a theme of focus ie avoiding invasive thoughts while meditating. Just move left and right. But also can shoot if player getting board of avoiding the meteors

2 questions:
1- I put a timer and how to print the last time when the game stopped?
In this case, the stopwatch kept running after the game ended.

2- I'm trying to use a 16x16 main sprite player, I'm not sure the code how to display the player icon to display the 16x16pixels, it only displays the 8x8 pixels

Thank you so much in advance

3
2 comments



Cart #midirepozo-0 | 2023-12-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
9


I purchased Pico8 before the pandemic but started to deepdive in May2023. I'm bad at math and coding, but have experience in Illustrations and Graphic Design. The way I approach learning Pico8 is by editing others' code and numbers and see how it goes. In this case is Christian(Lazy Dev). I followed all the old tutorials and faced many obstacles in terms of debugging and still learning and started to understand abit the Lua language. Sometimes I got lost between making games to exploring the particle system that I used for motion graphics on my instagram. Currently even coding a 16x16 sprite player making me want to pull my hair off but slowly learning. I'm wandering If all the Pico8 game dev are fluent in Lua first before Pico8 it seems..Inspired by the 80s aesthetics or so it seems especially the cartoon Transformers G1 character design. to be continued...

[ Continue Reading.. ]

9
4 comments



Cart #datijasigu-0 | 2023-02-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4


Following Lazy Dev tutorial but coudn't get the last boss to shoot many bullets

4
2 comments



Cart #nayenogiko-0 | 2023-01-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1


12Jan23 today i learnt..
1st i edit Nerdy teacher Fruit picker and added 3 framesprite for the player
2nd i added sound when the fruit go inside basket
3rd i added laser to shoot the fruit from Lazy GameDev
4th added laser and animated sprite accompanied the main sprite from Lazy GameDev shmup tutorials
5th i lost all the fruits....
will continue experimenting

Want
-the fruit to comeback
-maybe edit background

thx

why i pressed Esc button after testing this on the website...

1
0 comments



hi there
i'm very new to Pico8 and just started editing games

How do i add sfx sounds whenever colliding with object? i'm editing fruit drop from Nerdy Teachers, and want to add soundfx when the fruit hit the basket,..

do i have to put the sfx(0) in the

update _init()

update _update()

update _draw()

?
thank you

edit: i manage to trigger soundfx after pasted the soundx(0) before del(fruits,fruit) in the function update
but it seems theres only 1 fruit drop....still figuring out..tq


basket_sprite=1
player_sprite=2

player_x=64
player_y=100

fruits={}
fruit_start=16
fruit_count=6
fruit_interval=16

gravity=1
level=1
points=0

function _init()
for i=1,level do
fruit={
sprite=flr(rnd(fruit_count)+fruit_start),
x=flr(rnd(120)+5),
y=i*(-fruit_interval)
}
add(fruits,fruit)
end

function _init()

[ Continue Reading.. ]

0 comments



1st attempt was Lazy Dev shmup. The tutorials are great. i have a pause for a bit.= for shmup.
2nd trial was Nerdy Teacher
3rd is this Lunar landing from the Pico8 zine, a lot of trial and error, i noticed if im tired coding at night
there were many2 mistakes and error sadly i copy pasted the codes and happy to see this Lunar landing baby formed.
and trying to upload on itchio as a trial and error and now getting used to it.
Finishing this simple game is a motivation for me. I was so impressed by the light particle system, super buttery smooth animation for Pico8 that wanting me to learn more abt it, credit: Zep, Lazy Dev,Nerdy teachers, Bridgs & others for their tutorials

1 bit at a time

p/s
my main pixel art app is Aseprite. After using Pico8 was wondering if it will be develop further like Aseprite in the future...just a thought..

S

4 comments



I downloaded Pico8 in 2021 and catching up again now...and started to see the potential and love the simple language from a non-programmer perspective. I'm more of an artist but recently found out about Lazy Devs youtube videos and patiently follow each shmup vid, I can see hope in creating my own shmup. I love shmup since the late 80s growing up visiting local arcade often. Now I have to really focus on making my own 1st shmup game..

Thank you too to Nerd teacher, Lazy Dev, and others for all your time and energy in making the software and tutorial vids

<3

0 comments