#81✎ 1571randoIntermediate 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
Anybody knows how to transfer a sprite from the upper screen to the lower screen like in GAME4SHOOTER?
one way is xscreen 4 upper and lower screen combined but the top screen gets as big as lower screen. 4 is what game4 uses.
Oh looks like i'll have to make separate sprites for both screens then
no, not with xscreen 4 when the sprite gets to bottom of top screen it moves to top of bottom screen if you use XSCREEN 4!!!!!
I know. you don't have to yell at me. :'(
I can't use XSCREEN 4 because i have already fully used the upper screen and i don't want to rebuild the code
oh sorry.
Posted
#82✎ 380ProKukuPokemon Is Awesome!I love Pokemon!Express YourselfNight PersonI like the quiet night and sleep late.Express YourselfQSP Contest 1 Contest ParticipantI participated in the first SmileBASIC Source QSP Contest!
so with the game I'm making there are lots of explosions and cutscenes so I was wondering if anyone had a good explosion effect I could use, I know how to make them but I was hoping someone had one I could use because mine would be pretty bad soinding probably.
If you mean sound effect, I think I might have something in this Japanese sound effect program. I’ll go check.
EDIT: I did find one, but it might not be to your taste, so just let me know if you want something different from this and I can look for another one.55L3NNQE
Posted
Edited
by ProKuku
#83✎ 380ProKukuPokemon Is Awesome!I love Pokemon!Express YourselfNight PersonI like the quiet night and sleep late.Express YourselfQSP Contest 1 Contest ParticipantI participated in the first SmileBASIC Source QSP Contest!
I see my mistake by making the last choice, so I’m going to try this again.
Posted
#84✎ 409SwanBotHalloween 2017 Contest Runner UpI placed 2nd in the SmileBASIC Source Halloween 2017 Contest!Programming ContestIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthFirst YearMy account is over 1 year oldWebsitehmm i think that will work fine kuku.. thanks!
oh and ive been tinkering with it and i made it a bit different for a few different things, like rocket launcher and sudden loss of conection
now to make stuff with stuff
Posted
Edited
by SwanBot
#85✎ 1571randoIntermediate 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, everybody, turns out im going to nevada on saturday, and coming back on tuesday. i wont be able to connect, but i will still be able to program. cheers!
Posted
#86✎ 1571randoIntermediate 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 daysWebsiteyet again im changing what im doing. im just gunna make it a seperate project. the new project is a secret.
Posted
#87✎ 178ChaseCZIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthVideo GamesI like to play video games!HobbiesZelda Is Awesome!I love The Legend Of Zelda!Express YourselfDoes anyone know how to make a falling/moving GLINEs? I'm trying to make snowflakes... If you need details then i need to make a random snowflake out of the screen and then make it fall down/right-down
Posted
#88✎ 114Autz64QSP Contest 1 WinnerI won the first SmileBASIC Source QSP Contest!Programming ContestEnd of 2017 Contest ParticipantI participated in the SmileBASIC Source End of 2017 Contest!Programming ContestDeep SleepHiddenWebsite
Does anyone know how to make a falling/moving GLINEs? I'm trying to make snowflakes... If you need details then i need to make a random snowflake out of the screen and then make it fall down/right-down
Use an Array. I assume you have something like this:
GLINE 10,10,10,20
GLINE 10,20,20,20
GLINE 20,20,20,10
GLINE 10,10,20,10
to move the snowflake, use offsets. Which are variables that are used to modify the coordinates without need to change the code itself:
GLINE 10+OFFSETX,10+OFFSETY,10+OFFSETX,20+OFFSETY
GLINE 10+OFFSETX,20+OFFSETY,20+OFFSETX,20+OFFSETY
GLINE 20+OFFSETX,20+OFFSETY,20+OFFSETX,10+OFFSETY
GLINE 10+OFFSETX,10+OFFSETY,20+OFFSETX,10+OFFSETY
And since graphic drawings are not sprites, you may want to use arrays to have control for each individual snowflake.
Posted
#89✎ 272TheV360Pokemon Is Awesome!I love Pokemon!Express YourselfFirst DayJoined on the very first day of SmileBASIC SourceWebsiteNight PersonI like the quiet night and sleep late.Express YourselfI'm making a puzzle/mystery game. You're a detective with an AI sidekick and you walk around, solve puzzles, and solve a mystery. I currently have one screen, though. I have "multitasking" "working" (it's a stack overflow waiting to happen) and a brand new text engine that is even more taped together than my first one! Soon I'll have to add an event engine...
Posted
#90✎ 114Autz64QSP Contest 1 WinnerI won the first SmileBASIC Source QSP Contest!Programming ContestEnd of 2017 Contest ParticipantI participated in the SmileBASIC Source End of 2017 Contest!Programming ContestDeep SleepHiddenWebsiteMenu is simple to make, well, in functionality. However, i want special effects! So, the most time-consuming part is going to be those effects, since I only have the bullet scorch when you shoot the background. Imagine you shoot an option (because that's how it works), that option will blow away with wood particles and such.
Still needs a lot of the planned detail...
Posted
#91✎ 380ProKukuPokemon Is Awesome!I love Pokemon!Express YourselfNight PersonI like the quiet night and sleep late.Express YourselfQSP Contest 1 Contest ParticipantI participated in the first SmileBASIC Source QSP Contest!
Menu is simple to make, well, in functionality. However, i want special effects! So, the most time-consuming part is going to be those effects, since I only have the bullet scorch when you shoot the background. Imagine you shoot an option (because that's how it works), that option will blow away with wood particles and such.
Still needs a lot of the planned detail...
That looks really nice already.
Posted
#92✎ 380ProKukuPokemon Is Awesome!I love Pokemon!Express YourselfNight PersonI like the quiet night and sleep late.Express YourselfQSP Contest 1 Contest ParticipantI participated in the first SmileBASIC Source QSP Contest!
#93✎ 114Autz64QSP Contest 1 WinnerI won the first SmileBASIC Source QSP Contest!Programming ContestEnd of 2017 Contest ParticipantI participated in the SmileBASIC Source End of 2017 Contest!Programming ContestDeep SleepHiddenWebsite
That looks really nice already.
Thanks! Imagine that, but with more detail (shadows, hanging buttons, actual music...). That is the result i have in mind. I'm going as fast as i can with the tech details, so i can have more time for the things i don't have experience with, like music.
Posted
#94✎ 1571randoIntermediate 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 daysWebsiteim going to kill your eyes with mine! except theres an epelipsi off button wait what?
Posted
#95✎ 114Autz64QSP Contest 1 WinnerI won the first SmileBASIC Source QSP Contest!Programming ContestEnd of 2017 Contest ParticipantI participated in the SmileBASIC Source End of 2017 Contest!Programming ContestDeep SleepHiddenWebsiteI rendered a new test scenario. Still looks grainy, but looks way better than the previous one:
Posted
#96✎ 188412Me21Syntax HighlighterReceived for creating the code syntax highlighter on SBSNight PersonI like the quiet night and sleep late.Express Yourself@Autz64
https://smilebasicsource.com/page?pid=728
Posted
#97✎ 114Autz64QSP Contest 1 WinnerI won the first SmileBASIC Source QSP Contest!Programming ContestEnd of 2017 Contest ParticipantI participated in the SmileBASIC Source End of 2017 Contest!Programming ContestDeep SleepHiddenWebsite
Thanks for such usefull tool! Now it looks more cleaner.
Posted
#98✎ 178ChaseCZIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming StrengthVideo GamesI like to play video games!HobbiesZelda Is Awesome!I love The Legend Of Zelda!Express YourselfAlright! Here are the first pictures of my game.
I got photos only of touch screen because i'm still working on first level and stuff on the upper screen.
And i haven't told you what do you excatly do in this game. So you're playing as santa that needs to grab all the presents in a house (5 per level) and put them back under the tree. Why are the presents in the houses will be told in in-game cutscene.
On the left is a timer (300 seconds per level) , on the right are lives/1UPs
The slot in the middle is for a present you're holding, on the bottom there are some hills (i hope they look alright) that are moving to the right (illusion of moving). And some clouds moving to the left because i wasn't able of making snowflakes.
This is how it looks like when you're holding a present.
And those little presents on the top middle are presents you have put under the tree
Posted
Edited
by ChaseCZ
#99✎ 341spaceturtlesVideo GamesI like to play video games!HobbiesAvatar BlockI didn't change my avatar for 30 days.WebsiteIntermediate ProgrammerI can make programs, but I still have trouble here and there. Programming Strength
Looks like it’s decided.
Looks like it's going to be a mysterious perfect minecraft clone.
Posted
#100✎ 272TheV360Pokemon Is Awesome!I love Pokemon!Express YourselfFirst DayJoined on the very first day of SmileBASIC SourceWebsiteNight PersonI like the quiet night and sleep late.Express YourselfOh, this is my hundredth post.
Anyway, my game is currently progressing nicely. I made an easter egg without actually making the engine yet. However, I got the story in place and more sound effects! Now to make the event engine.
I sorta just wanted an excuse to make a hundredth post...
Posted