Discuss Scratch

Creeperkid2006
Scratcher
10 posts

Undertale Battle Creator

What do you mean?

CREEPERPIG990 wrote:

if your the creator you can click 0 at any time to set the monsters HP and 7 at any time to take down 1 of YOUR hp. CLICK ALL THE NUMBERS
HolaImFredbear
Scratcher
15 posts

Undertale Battle Creator

Its a very minor feature, but could you add a transformation screen (the white square that covers the sreen slowly fading in, and then when you look at the enemy, they're different EX: Mettaton as hes turning into Mettaton EX)
NeilandNASA
Scratcher
34 posts

Undertale Battle Creator

can you just add boms in mettaon ex fight
when green flag clicked
say [plz] for (2) secs
CREEPERPIG990
Scratcher
18 posts

Undertale Battle Creator

Creeperkid2006 wrote:

What do you mean?

CREEPERPIG990 wrote:

if your the creator you can click 0 at any time to set the monsters HP and 7 at any time to take down 1 of YOUR hp. CLICK ALL THE NUMBERS
while you're playing your battle, if you're the creator, you can click the numbers on the keyboard to do stuff = like
when [0] key pressed
it allows you to temporarily set the monsters hp to anything you want!
SchmittieTheBoss
New Scratcher
1 post

Undertale Battle Creator

Please make Red's attack where she cuts the arena into 9 squares and throws a bomb into one of them! I love that attack! Also, I am very confused about how to make custom attacks. Finally, can we increase the number of attacks the boss has, or is it just 4? If it's just 4, please update it so that there are extra attacks that we can use if we want.

Last edited by SchmittieTheBoss (July 23, 2016 14:15:30)

CREEPERPIG990
Scratcher
18 posts

Undertale Battle Creator

SchmittieTheBoss wrote:

Please make Red's attack where she cuts the arena into 9 squares and throws a bomb into one of them! I love that attack! Also, I am very confused about how to make custom attacks. Finally, can we increase the number of attacks the boss has, or is it just 4? If it's just 4, please update it so that there are extra attacks that we can use if we want.
define ATTACK 1
set [ RANDOMATTK] to (pick random (1) to (3))
if <(RANDOMATTK) = [1]> then
attack
if <(RANDOMATTK) = [2]> then
attack2
end
pococikapusta
Scratcher
38 posts

Undertale Battle Creator

CREEPERPIG990 wrote:

SchmittieTheBoss wrote:

Please make Red's attack where she cuts the arena into 9 squares and throws a bomb into one of them! I love that attack! Also, I am very confused about how to make custom attacks. Finally, can we increase the number of attacks the boss has, or is it just 4? If it's just 4, please update it so that there are extra attacks that we can use if we want.
define ATTACK 1
set [ RANDOMATTK] to (pick random (1) to (2))
if <(RANDOMATTK) = [1]> then
attack
end
if <(RANDOMATTK) = [2]> then
attack2
end
(modified it a bit because it wouldn't work)
Or something like this:
define Put attack 1 here!
if <(pick random (1) to (2))=(1)> then
attack 1::custom
else
attack 2::custom
end
CREEPERPIG990
Scratcher
18 posts

Undertale Battle Creator

trollikapusta wrote:

CREEPERPIG990 wrote:

SchmittieTheTroll wrote:

Please make Red's attack where she cuts the arena into 9 squares and throws a bomb into one of them! I love that attack! Also, I am very confused about how to make custom attacks. Finally, can we increase the number of attacks the boss has, or is it just 4? If it's just 4, please update it so that there are extra attacks that we can use if we want.
define ATTACK 1
set [ RANDOMATTK] to (pick random (1) to (2))
if <(RANDOMATTK) = [1]> then
attack
end
if <(RANDOMATTK) = [2]> then
attack2
end
(modified it a bit because it wouldn't work)
Or something like this:
define Put attack 1 here!
if <(pick random (1) to (2))=(1)> then
attack 1::custom
else
attack 2::custom
end
oops lol i was just doing it simply!
Meeperstein101
Scratcher
77 posts

Undertale Battle Creator

I kinda made the first attack from sans, if you wish to use it

https://scratch.mit.edu/projects/116879015/

lol
SawnyuedGordon
Scratcher
6 posts

Undertale Battle Creator

How about a guide to make custom attacks???
ahhsomeone
Scratcher
18 posts

Undertale Battle Creator

I think I (almost) fixed the text bug
Mine doesn't quite work
But I think I am headed in the right direction.
Try having variables for the brightness/color effect, then having the clone use those.
pococikapusta
Scratcher
38 posts

Undertale Battle Creator

ahhsomeone wrote:

I think I (almost) fixed the text bug
Mine doesn't quite work
But I think I am headed in the right direction.
Try having variables for the brightness/color effect, then having the clone use those.
It's not possible to fix. You see, Scratch actually has 2 different project players: normal player and stage3D player. The stage3D player uses hardware acceleration for some graphical effects, as they don't work well on the CPU. Only graphical effects that run fine on the CPU are brightness and ghost, so if project doesn't contain any other effects than those, normal player is used. What's the problem here? Well, it turns out brightness effect works differently on the stage3D player, and doesn't make sprites white with max brightness, while normal player does. So since it's a bug in Scratch itself, nothing can be done about it. You might be wondering why it didn't affect somr people, right? Some computers can't use the stage3D player because of old GPUs, and normal player is used then. So ironically, the worse computer someone has, the smaller chances for encountering the bug.

So current solution, which is having white and red fonts separately, seems to be the only one.
Flenguhunt
Scratcher
3 posts

Undertale Battle Creator

can you make a sprite where all the boss monsters are in one group, or make an attack where friendliness pellets fall from the sky?? or could you make a thing where there is not 4 attacks but 5? thx!
AsrielDreemur228
Scratcher
4 posts

Undertale Battle Creator

How Do You Create Custom Attacks
Electrominer101
Scratcher
55 posts

Undertale Battle Creator

Can you add either spare button removal, or sparing repetely to spare?
when I receive [Scratch]
forever
set [Creations] to [Amazing]
end
noighttoim12
Scratcher
2 posts

Undertale Battle Creator

Hello guys so i need hepl with the custom music im a begginer and i want to know how to put custom music
Electrominer101
Scratcher
55 posts

Undertale Battle Creator

noighttoim12 wrote:

Hello guys so i need hepl with the custom music im a begginer and i want to know how to put custom music
Go int custom music and go into sounds.
Then put desired music into the sounds tap.
Hit flag twice.
Enjoy
CREEPERPIG990
Scratcher
18 posts

Undertale Battle Creator

pococikapusta wrote:

ahhsomeone wrote:

I think I (almost) fixed the text bug
Mine doesn't quite work
But I think I am headed in the right direction.
Try having variables for the brightness/color effect, then having the clone use those.
It's not possible to fix. You see, Scratch actually has 2 different project players: normal player and stage3D player. The stage3D player uses hardware acceleration for some graphical effects, as they don't work well on the CPU. Only graphical effects that run fine on the CPU are brightness and ghost, so if project doesn't contain any other effects than those, normal player is used. What's the problem here? Well, it turns out brightness effect works differently on the stage3D player, and doesn't make sprites white with max brightness, while normal player does. So since it's a bug in Scratch itself, nothing can be done about it. You might be wondering why it didn't affect somr people, right? Some computers can't use the stage3D player because of old GPUs, and normal player is used then. So ironically, the worse computer someone has, the smaller chances for encountering the bug.

So current solution, which is having white and red fonts separately, seems to be the only one.
WELL lets wait for scratch to fix bug
IvanStdio
Scratcher
96 posts

Undertale Battle Creator

SO.
When I was without WI-FI, you create many updates.
Now it have many cool things, like adv. attacks.
Awesome. Now my notebook can't open this, it's lagging like *inaudible*.
I'm really striked down.
SawnyuedGordon
Scratcher
6 posts

Undertale Battle Creator

https://scratch.mit.edu/projects/117828637/

ad this into notes and credits

Powered by DjangoBB