#1✎ 1558randoIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthThird YearMy account is over 3 years oldWebsiteAvatar TabooI didn't change my avatar for 180 daysWebsiteHi guys, I am making a game with similar mechanics to TLoZ: ALttP. If you want to help, I have positions open for development. All help is welcome, by anyone (I will be supervising and helping with development. Everything should be discussed before it gets added.)
===–—PROGRESS—–===
I have changed how I will develop this (again). Here is a basic outline of the order:
1. Music [Partially done, I have all the dungeon music and MMLs that will become other stuff, will change stuff around as I continue]
2. World system [unfinished]
3. Item System [unfinished]
4. Add features [unfinished]
This shouldn't take a while, but we will take as long as we need to make it shiny!
===–—000—–===
Developers now:
Main Supervisor:
random_god (me, started the project)
Code Team:
First Programmer (Main Supervisor): random_god
Second Programmer: GreedyGoat8
Third Programmer: banana
AI programmer 1: Mr_Mo
UI Interfaces: CyberYoshi64
Graphics Team:
Supervisor: random_god
Sprite artist: SquiVolt
Story Team:
Supervisor: random_god
Plot Dev: thesquat_1115
Music Team:
Music sorter: random_god
Music created by RWIIUG0129
Stuff
Yay
Open jobs:
Ai Programmer 2
Plot Development
Graphic Artists
Playtesters I guess
Development stage: Make a world system for this
Posted
Edited
by rando
#2✎ 1558randoIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthThird YearMy account is over 3 years oldWebsiteAvatar TabooI didn't change my avatar for 180 daysWebsite
I have collision with cliff thingies!
Posted
#3✎ 75GreedyGoat8Intermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthAvatar BlockI didn't change my avatar for 30 days.WebsiteDisguisedHiddenWebsiteAh, so I see I'm not the only one... Cool! I hope development goes well for you and produces a great game!
Posted
Edited
by GreedyGoat8
#4✎ 1558randoIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthThird YearMy account is over 3 years oldWebsiteAvatar TabooI didn't change my avatar for 180 daysWebsite
Ah, so I see I'm not the only one... Cool! I hope development goes well for you and produces a great game!
What do you mean "not the only one?"
Posted
#5✎ 75GreedyGoat8Intermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthAvatar BlockI didn't change my avatar for 30 days.WebsiteDisguisedHiddenWebsiteMeaning I too, am working on a similar game.
Posted
#6✎ 1558randoIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthThird YearMy account is over 3 years oldWebsiteAvatar TabooI didn't change my avatar for 180 daysWebsiteNow have a working sign that was made using collision and text boxes!
I can still do that easily, I have text boxes, but I restarted the beginning so that sign doesn't exist anymore.
Posted
Edited
by rando
#7✎ 40PlancakeIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthVideo GamesI like to play video games!HobbiesReadingI like to read books!HobbiesJust make a save button instead of using ZL or ZR, it's not that hard, really.
XSCREEN 2' Enables Bottom Screen
DISPLAY 1' Switches to Bottom Screen for drawing graphics and sprites
GBOX 50,50,100,100,#RED' Draws a red box on the screen being used (Currently the Bottom Screen)
DISPLAY 0
WHILE 1
WAIT 1
TOUCH OUT TM,TX,TY
IF TX<101 AND TX>49 AND TY<101 AND TY>49 AND TM<2 THEN 'It may look weird, but putting nothing after THEN is absolutely fine
PRINT "Would you like to save?"
ENDIF
WEND
This will print "Would you like to save?" on the top screen when you touch the red box on the bottom screen with your stylus. You can just replace that code with whatever you want and it should work fine.
I can't test it right now, but let me know if it works or not and I'll see if I can fix it. Also, if you want more touch screen examples just ask me :)
Posted
#8✎ 1558randoIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthThird YearMy account is over 3 years oldWebsiteAvatar TabooI didn't change my avatar for 180 daysWebsite
Just make a save button instead of using ZL or ZR, it's not that hard, really.
XSCREEN 2' Enables Bottom Screen
DISPLAY 1' Switches to Bottom Screen for drawing graphics and sprites
GBOX 50,50,100,100,#RED' Draws a red box on the screen being used (Currently the Bottom Screen)
DISPLAY 0
WHILE 1
WAIT 1
TOUCH OUT TM,TX,TY
IF TX<101 AND TX>49 AND TY<101 AND TY>49 AND TM<2 THEN 'It may look weird, but putting nothing after THEN is absolutely fine
PRINT "Would you like to save?"
ENDIF
WEND
This will print "Would you like to save?" on the top screen when you touch the red box on the bottom screen with your stylus. You can just replace that code with whatever you want and it should work fine.
I can't test it right now, but let me know if it works or not and I'll see if I can fix it. Also, if you want more touch screen examples just ask me :)
Thx, but I am planning on making the touch screen for different things. Same with the other buttons, so I won't use that for my game. I will test it though.
EDIT: I tested it, and it worked pretty good with a few changes I made, like I put a CLS at the beginning of the loop and changed the PRINT to an INPUT. So it works pretty good, but I dont plan to use it.
Posted
Edited
by rando
#9✎ 131raimondzFirst WeekJoined in the very first week of SmileBASIC SourceWebsiteExpert ProgrammerProgramming no longer gives me any trouble. Come to me for help, if you like!Programming StrengthNight PersonI like the quiet night and sleep late.Express YourselfI also made a similar game, but never finished it because I had problems saving the state of the world, the hitbox of the weapons and, mostly, time to code the game. However, I implemented the following features:
- Chest state.
- Enemies.
- Map transition.
- Attacks. This part is tricky since I used data to store the animation and the collision box during the animation.
- Map editor
I didn't upload the key but if you want to take a look on the code, then I can upload it later.
Also, please make your game compatible with old 3ds.
Posted
#10✎ 1558randoIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthThird YearMy account is over 3 years oldWebsiteAvatar TabooI didn't change my avatar for 180 daysWebsite
I also made a similar game, but never finished it because I had problems saving the state of the world, the hitbox of the weapons and, mostly, time to code the game. However, I implemented the following features:
- Chest state.
- Enemies.
- Map transition.
- Attacks. This part is tricky since I used data to store the animation and the collision box during the animation.
- Map editor
I didn't upload the key but if you want to take a look on the code, then I can upload it later.
Also, please make your game compatible with old 3ds.
Ok, i can make something else saving. I dont know if I can use the start button, I tried using IF BUTTON()==1024 THEN BEEP
in a loop, but it didn't work. It did nothing unless I held it, when I held it it stopped the program. If I can use the start button, let me know how, but I think L and R will work for now. Also, I want to see the program. And if you want to help, let me know.
Posted
#11✎ 1558randoIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthThird YearMy account is over 3 years oldWebsiteAvatar TabooI didn't change my avatar for 180 daysWebsitedevelopers and anyone else on this thread, if I do something that involves editing a post, look at the first post on this thread, as it may have new info. Also, if this is your first time fully reading this, look at the first post NOW!
Posted
#12✎ 1558randoIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthThird YearMy account is over 3 years oldWebsiteAvatar TabooI didn't change my avatar for 180 daysWebsiteOk, everyone, I have restarted work on the intro, because I am looking for a different beginning. yay.
Posted
#13✎ 131raimondzFirst WeekJoined in the very first week of SmileBASIC SourceWebsiteExpert ProgrammerProgramming no longer gives me any trouble. Come to me for help, if you like!Programming StrengthNight PersonI like the quiet night and sleep late.Express YourselfHere is the key: [4RY5A3J3].
Use .editor to launch the editor and .exec to launch the game. Some things are broken on the editor like the "Event selector".
Also, the project is done with lowerdash so the game is separate in a lot of files. From them:
- The files with prefix "_SC" contain the screens of the program.
- The ones with "__" at the begining are base files that I use on all my projects. They contain libraries to handle arrays, gameloops, data files and other stuff.
You can use the sprites if you want. They are from http://opengameart.org, but most of them were made by "charlesgabriel" https://opengameart.org/users/charlesgabriel. If you want to give credits to someone, then put him and the link of opengameart as well.
Posted
#14✎ 75GreedyGoat8Intermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthAvatar BlockI didn't change my avatar for 30 days.WebsiteDisguisedHiddenWebsiteRandom, cute cat.
Posted
#15✎ 1558randoIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthThird YearMy account is over 3 years oldWebsiteAvatar TabooI didn't change my avatar for 180 daysWebsite
Random, cute cat.
Thx, his name is Blue, because of his eyes.
Posted
#16✎ 1558randoIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthThird YearMy account is over 3 years oldWebsiteAvatar TabooI didn't change my avatar for 180 daysWebsiteOk, guys (um... I mean guy... there is only one developer who is not me... well I guess there are the readers of this thread... never mind.) We need to come up with a team name. If you have a suggestion, tell me on this thread and I will add it to a poll and post it on the votingsuggesting deadling (July 15th) and we can all vote. When voting, please don't vote for yourself and make 2 or 3 votes. The name with the most votes wins.
I would like to make a suggestion: Est Lorem dolor
It means The Elite Team according to google translate.
At the beginning when I sayed "voting deadline" I meant suggesting deadline. The voting deadline is the 17th.
Posted
Edited
by rando
#17✎ 40PlancakeIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthVideo GamesI like to play video games!HobbiesReadingI like to read books!HobbiesNot looking to join, because I'll probably have other things on hand on top of developing the game, but I will help out if you need any help.
Posted
#18✎ 1558randoIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthThird YearMy account is over 3 years oldWebsiteAvatar TabooI didn't change my avatar for 180 daysWebsite
Not looking to join, because I'll probably have other things on hand on top of developing the game, but I will help out if you need any help.
ok.
Posted
#19✎ 392CyberYoshi64Expert ProgrammerProgramming no longer gives me any trouble. Come to me for help, if you like!Programming StrengthGreat PageHiddenAchievementsNight PersonI like the quiet night and sleep late.Express YourselfI would like to help with UI interfaces (fonts, dialogs, etc.)
If you want me I can give you some dummy files to show, what I could do.
Posted
Edited
by CyberYoshi64
#20✎ 1558randoIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthThird YearMy account is over 3 years oldWebsiteAvatar TabooI didn't change my avatar for 180 daysWebsite
I would like to help with UI interfaces (fonts, dialogs, etc.)
If you want me I can give you some dummy files to show, what I could do.
I already have working text boxes, but fonts would be amazing. I will list you as a developer on the thread and in the credits. Also, I would like to see the files.
Posted
Edited
by rando