Thank you for porting my game! It seems to be a faithful reproduction. I made the original version in ccz80++.
meichnpp
Creator of
Recent community posts
I made a new game "Magical Bocco 20541." It is a RPG for MSX2. The dialog is in English and Japanese.
Your goal is to explore the world and find various things.
You can play it on the web.
I hope you enjoy it.
Project page:
https://pigmhall.itch.io/mb2
Hello!
I made a new game "E-dog." It is an action game for MSX.
Your objective is to descend through the depths of the earth, picking up diamonds as you go.
You can play it on the web.
- Project page
https://pigmhall.itch.io/e-dog
I made a new game "Magical Boco." It is a shooting game for MSX.
You can play it on the web.
I hope you enjoy it.
I made a new game "Auto Mouse." It is an action game for MSX1.
Your objective is to ferment the cheese and lead the mouse to the cheese.
You can play it on the web.
I hope you enjoy it.
I made a new game "usagi densig." It is an action game for MSX2.
Your objective is to open the picture by drawing a line.
You can play it on the web.
- Project page
https://pigmhall.itch.io/usgd
- Screenshot
- Gameplay video
Hello! I made a new game "Space Popo." It is a shooting game for MSX2. You can play it on the web.
Play: https://pigmhall.itch.io/space-popo
I made a new game "Mint" for MSX1.
Project page: https://pigmhall.itch.io/mint
You can play it on the web. I hope you enjoy it!
I made a new game "Nekoard" for MSX1.
Project page: https://pigmhall.itch.io/nekoard
I hope you enjoy it!
I've just released NL Community. It is a sci-fi racing game for Windows.
It's a single type racing. The objective is to go around the course three times.
It has 12 courses.
![](https://img.itch.zone/aW1nLzc0MTI2MDcuanBn/original/1SxZ0B.jpg)
Project page: https://pigmhall.itch.io/nl-community
I’ve released Rabbit English Quiz. It is a quiz game for learning English.
It has a unique algorithm. Depending on how quickly you answer the question, the next question will change.
If you answer all the questions, various drawings will be displayed depending on the elapsed time.
It has an HTML5 version and an Android version.
Project page
It seems that external links cannot be embedded in itch.io. I archived my game files and WebMSX downloaded from GitHub. And I uploaded the archive file to itch.io.
The following is the file.
http://ni.10-59.com/zip/dptrip_web.zip
You can reuse it by writing your game settings in wmsx.js file.
By the way, CMJN has an interesting game screen. I like it.:)
Hi,
I've just released Bird Balls XL. It is an action game for Android and HTML5.
The level is complete when the birds pick up all the food.
Demo movie:
Project page:
https://pigmhall.itch.io/bird-balls-xl
Have fun!
I've just released Magical Grass. It is an action puzzle game for Android. Your goal is to pick up all the grass.
Demo movie:
Project page:
https://pigmhall.itch.io/magical-grass
Have fun!
Hi,
I've just released Final Duck. It is an action game for Windows.
Your object is to get to the exit. You can go out of reach by dashing.
Demo movie:
Download:
https://pigmhall.itch.io/final-duck
I've just released G-Fish. It is an action game for Windows.
Your object is to beat all enemies. You can choose from two kinds of fish.
Each fish attacks enemies with various items.
Demo movie:
Download:
https://pigmhall.itch.io/g-fish
Have fun!
I've just released Budgie's Adventure. It is an action game for Windows.
Your object is to bring the fruits to the nest. The door will open when you do them enough.
When you enter the open door, you will proceed to the next stage.
Demo movie
Project Page
https://pigmhall.itch.io/budgie
Have fun!
I've just released Penpen World. It is an action game for Windows.
This game has 3 modes. The object of each mode is different.
When you touch the enemies your power decreases.
Once you are out of power, the game is over.
Movie
https://pigmhall.itch.io/penpen-world
I've just released Normal Island for Windows.
Normal Island is an action game in which the girl plays on the small island.
Her purpose is to drop all the enemies to the sea.
Her push of four stakes will collapse the ground. If she touches enemies, her power will decrease.
When her power is set to zero, the game will be over.
Demo movie
Download:
https://pigmhall.itch.io/normal-island
Have fun!
Green Cat Chronicle is an action game for MSX.
Your object is to continue defeating the enemies with bubbles. Various items will help you.
As the game progresses for a while, the background and music will change. Let's see how far you can proceed.
MSX games can be played in the browser. You can play this game on my project page.
https://pigmhall.itch.io/green-cat-chronicle
I've just released 2 rabbits. It is a retro style action game.
Your object is to lead two rabbits and defeat the enemies. The pink rabbit follows the white rabbit. Only the pink rabbit can defeat the enemy.
As the game progresses for a while, the background and music will change.
Android version or HTML5 version is available.
Screenshot
Demo movie
Project page
https://pigmhall.itch.io/2rabbits
Hi,
I made an external code and sprite editor for Android. It has an interface suitable for use on smartphones.
It can output sprite sheets that can be imported to TIC-80.
-Download
https://play.google.com/store/apps/details?id=com.x0.ni.tick
I hope you like it.
Added the 3D functions. You can create 3D game with it now!
The following is an example code of using it.
//-- 3d example
sprite(1,"floor",1);
sprite(2,"ball",5); function init(){
// floor
c=setm(0,0,0,1,-1);
mrx[c]=270;
ms[c]=300;
maprepeat(c,80,80);
// balls
w=30
for(i=0;i<200;i++){
c=setmSphere(rnd()*w-w/2,0,rnd()*w-w/2,2,1,rand(3));
mry[c]=rand(360);
}
// camera
setcam(0,1,0,0,0,0);
bgcolor("#0000ff");
} function move(i){
switch(m[i]){
// bounce a ball
case 1:
if(abs(sx)<5)sx*=1.5;
if(abs(sz)<5)sz*=1.5;
sy+=syy;
syy-=.2;
if(sy<1){sy=1;syy=rnd()*3;}
break;}
} function update(){
// rotate a camera
cary=(cary+1)%360;
}
Result
Hi,
I have just released RetroIDE. It is a retro game development tool suitable for use on smartphones.
You can easily create games with the code editor and the sprite editor.
The programming language is Javascript and contains the library of various simple functions.
The created game can be output to an HTML file and published on the web.
More details