If Facebook, Myspace, Twitter, Instagram, and Snapchat were all destroyed, 90% of teens would go insane. If you're one of the 10% that would be laughing at them, copy & paste this into your signature and hope it happens.
since gimmemorecoinz left and probably wont finish petit smash bros i decided to make pokemon smash bros which is basically smash bros but with pokemon characters :3 http://petitcomputer.wikia.com/wiki/Pokemon_Smash_Brothers
it has 40 qr codes though
theres 4 characters (2 secret) 3 stages (1 not finished) 2 modes (singleplayer/multiplayer) you can change the amount of lives in a battle theres 4 generic attacks theres a working shield and im working on special moves dodging and grabbing and the enemy ai is kinda slow when its moving but nethertheless its still a decent opponent
also this is my first time using bg tiles so please let me know how i did
How can I find the absolute value of something. I want to do something like this:
IF THE ABSOLUTE VALUE OF VARIABLE1 AND VARIABLE2 > VARIABLE3 THEN DO STUFF
I found some sort of ABS command, but I want something I can use in an IF statement, and I'm not completely sure how to use ABS, even after looking in the manual.
How can I find the absolute value of something. I want to do something like this:
IF THE ABSOLUTE VALUE OF VARIABLE1 AND VARIABLE2 > VARIABLE3 THEN DO STUFF
I found some sort of ABS command, but I want something I can use in an IF statement, and I'm not completely sure how to use ABS, even after looking in the manual.
IF ABS(VARONE)>VARTWO THEN do stuff here
If Facebook, Myspace, Twitter, Instagram, and Snapchat were all destroyed, 90% of teens would go insane. If you're one of the 10% that would be laughing at them, copy & paste this into your signature and hope it happens.
Wait, I don't think that's what I want. I need the absolute value of two numbers, like how the absolute value of 1 and 4 is 3. I then just need to see weather or not it's greater/smaller than something else. The program needs to be something like this:
IF absolute value of VAR1 and VAR2> VAR3 THEN stuffs
Does absolute value mean something different in programming than it does in algebra?
I need the absolute value of two numbers, like how the absolute value of 1 and 4 is 3. I then just need to see weather or not it's greater/smaller than something else. The program needs to be something like this:
IF absolute value of VAR1 and VAR2> VAR3 THEN stuffs
Does absolute value mean something different in programming than it does in algebra?
I'm not exactly sure what you mean. Do you mean the absolute value of 1-4 instead of 1 and 4?
If Facebook, Myspace, Twitter, Instagram, and Snapchat were all destroyed, 90% of teens would go insane. If you're one of the 10% that would be laughing at them, copy & paste this into your signature and hope it happens.
Last year in my Algebra I learned about absolute value, at least that's what I think it was called. It was like 1|4 was three, and all you had to do to find the answer was subtract the numbers and remove the negative if there was one. That's what I need to do here.
Last year in my Algebra I learned about absolute value, at least that's what I think it was called. It was like 1|4 was three, and all you had to do to find the answer was subtract the numbers and remove the negative if there was one. That's what I need to do here.
i don't think that's absolute value
absolute value is like the distance from zero it basically just turns negative numbers positive
|3|=|-3|
@IAmAPerson can you post a SimpleC video tutorial? I've been waiting forever to understand how to use it.
If Facebook, Myspace, Twitter, Instagram, and Snapchat were all destroyed, 90% of teens would go insane. If you're one of the 10% that would be laughing at them, copy & paste this into your signature and hope it happens. Wait was that just a joke?
@IAmAPerson OK, here's that song I told you I'd make (a while back):
If anybody else wants it, please feel free to use it. Original song composed by C418. I did not come up with this song, I only ported it (by hand, I might add). The song is from Minecraft, if you didn't know already.
How could I check for collision? I want to make simple physics for a platforming game, but I want the character to fall downwards if he is in the air. Any ideas?
How could I check for collision? I want to make simple physics for a platforming game, but I want the character to fall downwards if he is in the air. Any ideas?
@LOOP
IF BTRIG() AND 32 THEN GOSUB @JUMP
IF AIR THEN Y=Y+V:V=V+0.15
IF Y>100 THEN Y=100:AIR=FALSE:V=0
VSYNC 1
GOTO @LOOP @JUMP
IF AIR THEN RETURN
V=-4:BEEP 8:AIR=TRUE
RETURN
in the future you'll probably want more advanced collision detection
How could I check for collision? I want to make simple physics for a platforming game, but I want the character to fall downwards if he is in the air. Any ideas?
@LOOP
IF BTRIG() AND 32 THEN GOSUB @JUMP
IF AIR THEN Y=Y+V:V=V+0.15
IF Y>100 THEN Y=100:AIR=FALSE:V=0
VSYNC 1
GOTO @LOOP @JUMP
IF AIR THEN RETURN
V=-4:BEEP 8:AIR=TRUE
RETURN
in the future you'll probably want more advanced collision detection
I see how this would work. However, during my init of my program, what should I set those variables as? By the way, you seem like a great and fast programmer.
How could I check for collision? I want to make simple physics for a platforming game, but I want the character to fall downwards if he is in the air. Any ideas?
<snip>
I see how this would work. However, during my init of my program, what should I set those variables as? By the way, you seem like a great and fast programmer.
thanks do this for init @INIT
ACLS:CLEAR:X=100:Y=50:AIR=TRUE:V=0
then use spset and spofs to put a sprite
also V means velocity
How could I check for collision? I want to make simple physics for a platforming game, but I want the character to fall downwards if he is in the air. Any ideas?
<snip>
I see how this would work. However, during my init of my program, what should I set those variables as? By the way, you seem like a great and fast programmer.
thanks do this for init @INIT
ACLS:CLEAR:X=100:Y=50:AIR=TRUE:V=0
then use spset and spofs to put a sprite
also V means velocity
Sorry I don't know much. This is all making sense, but how would I actually make it affect the character itself? and, how would I specify if something is air, and if something is not? Thanks for the help c:
How could I check for collision? I want to make simple physics for a platforming game, but I want the character to fall downwards if he is in the air. Any ideas?
<snip>
I see how this would work. However, during my init of my program, what should I set those variables as? By the way, you seem like a great and fast programmer.
thanks do this for init @INIT
ACLS:CLEAR:X=100:Y=50:AIR=TRUE:V=0
then use spset and spofs to put a sprite
also V means velocity
Sorry I don't know much. This is all making sense, but how would I actually make it affect the character itself? and, how would I specify if something is air, and if something is not? Thanks for the help c:
sorry i dont know how to do very advanced collision detection but try doing this for a sprite @INIT
<insert code>
SPSET 0,64,0,0,0,1 @LOOP
SPOFS 0,X,Y
<insert code>
VSYNC 1
GOTO @LOOP
also the AIR variable just checks if you're in the air
sorry i dont know how to do very advanced collision detection but try doing this for a sprite @INIT
<insert code>
SPSET 0,64,0,0,0,1 @LOOP
SPOFS 0,X,Y
<insert code>
VSYNC 1
GOTO @LOOP
also the AIR variable just checks if you're in the air
aha, that was easy, can't believe I didn't think of that
sorry i dont know how to do very advanced collision detection but try doing this for a sprite @INIT
<insert code>
SPSET 0,64,0,0,0,1 @LOOP
SPOFS 0,X,Y
<insert code>
VSYNC 1
GOTO @LOOP
also the AIR variable just checks if you're in the air
aha, that was easy, can't believe I didn't think of that
EDIT: This isn't anything important, but TRUE and FALSE work with variables right? are there any other words that you can use, without making it into a string? Just curious.
Forums
Topic: Petit Computer
Posts 7,441 to 7,460 of 9,618
Sorry, this topic has been locked.