トピック
debugþ TheRealJoeCool

Rpg stuffs with da helpings.

I need help making da Rpg, bruhs. No keys, and dun't ask why. Cumment if you can help, not to ask da questins.
4そうだね
プレイ済み
返信[1]
親投稿
Oscar PwnageBlock
Sure, I could answer specific questions.
0そうだね
プレイ済み
返信[2]
親投稿
debugþ TheRealJoeCool
Yey! Can you help with making animated sprites that move to the control pad?
0そうだね
プレイ済み
返信[3]
親投稿
komodo † 406mario
here is the beginning of it.bgfill fills the screen with the grass sprite.spset sets the sprite to the specified management number (for now on mn). the button command looks if a certain button is being pressed. put that in a if then loop so if this button is pushed then goto this line of code.the spofs command moves the specified sprite to the x and y positions that you want.
1そうだね
プレイ済み
返信[4]
親投稿
komodo † 406mario
the anim is a array that tells how many "frames" goes by and to change the sprite based on how long the button is pressed down. spchr is a command to change the sprite to the one you want so thing like anamation can take place.vsync waits the specified frames in this case 1 before going to the next line.here the x concordinent is add by one to move the sprite up the screen becase of spofs x,y.
0そうだね
プレイ済み
返信[5]
親投稿
komodo † 406mario
y not x anc subtracted not added whoops lol.
0そうだね
プレイ済み
返信[6]
親投稿
komodo † 406mario
here is the rest whitch is the same as the @loop basically. oh and the xmax and ymax arrays make it so the sprite will not go off screen.
0そうだね
プレイ済み
返信[7]
親投稿
debugþ TheRealJoeCool
How can you make it so that the sprite can't move off the screen?
0そうだね
プレイ済み
返信[8]
親投稿
BOTW Chris weslee2004
I'm not good at coding, could i make the sprites?
0そうだね
プレイ済み
返信[9]
親投稿
debugþ TheRealJoeCool
Umm. I guess. You could you be the publisher, if you'd like.
0そうだね
プレイ済み
返信[10]
親投稿
komodo † 406mario
i told you by the xmax and ymax arrays aswell as saying if x<0 then x=0 and if y<0 then y=0 if y>ymax then y=ymax and vice versa.
0そうだね
プレイ済み
返信[11]
親投稿
Lacks DHaze420
Basically you have to define the area the character can't pass.
0そうだね
プレイ済み
返信[12]
親投稿
debugþ TheRealJoeCool
What is my error?
0そうだね
プレイ済み
返信[13]
親投稿
Clepto Clepto2.0
That depends on if you're using goto or gosub to get to @down and the others
0そうだね
プレイ済み
返信[14]
親投稿
komodo † 406mario
you used goto instead of return.
0そうだね
プレイ済み
返信[15]
親投稿
Stewart segludian
You are updating x, and y variables but not using spofs to update the sprite's position onscreen. If you are getting a syntax error, please tell us the line number and error message.
0そうだね
プレイ済み
返信[16]
親投稿
Stewart segludian
Disregard my previous message. I didn't compare it to the original. It is the goto instead of return calls as stated earlier.
0そうだね
プレイ済み