Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

TIC-80

Fantasy computer for making, playing and sharing tiny games. · By Nesbox

Can I make NSFW games on Tic80? And some other questions

A topic by alexsilent created Sep 05, 2019 Views: 931 Replies: 5
Viewing posts 1 to 2
(9 edits)

Tic 80 is awesome, but...
1) Can I make NSFW (nude 18+) games with Tic80?
2) Can I add my NSFW (nude 18+) game right here https://tic.computer/play?cat=0&sort=1 ?
3) Is there a way to make more memory for sprites?
       Or can I change sprite pixels in runtime mode by script to use other atlas (sprite collection)?
4) Is there a way to make other resolution, like in Pico-8? (64*64 Screen Mode in Pico-8)
5) Is there a way to remove restriction for code symbols? 64000 is not so much for art library memory.

(1 edit) (+1)

Okay! I just forget about full nude, and drew some underwear.
I hope there's not have any restriction for that style on Tic80's site.

But I steel don't have any idea how to change sprite atlas in runtime in Tic80 to get more graphics in project.
Like mget & mset, but for sprites.

@alexsilent This is Hello World by Nesbox

@malevolent I download your cartridge? Please.

(+1)

It looks excellent!

(+1)

Here's some sample code:

function sget(sprID,x,y)
if x<0 or x>7 or y<0 or y>7 then return 0 end
return peek4(0x8000+((sprID&511)<<6)+(y<<3)+x)
end
function sset(sprID,x,y,color)
if x<0 or x>7 or y<0 or y>7 then return end
poke4(0x8000+((sprID&511)<<6)+(y<<3)+x,color)
end