Discuss Scratch
- Discussion Forums
- » Collaboration
- » Tairuahxe (Working Title) | RPG
- shoresbeep
- Scratcher
1000+ posts
Tairuahxe (Working Title) | RPG
I've found a few things and remixed to fix them. currently looking through the current version to see what can be improved btw.
- ScriptedAwesome
- Scratcher
1000+ posts
Tairuahxe (Working Title) | RPG
Yeah Should I share what I have so far?
- shoresbeep
- Scratcher
1000+ posts
Tairuahxe (Working Title) | RPG
in general though, you shouldn't use forever blocks.
- shoresbeep
- Scratcher
1000+ posts
Tairuahxe (Working Title) | RPG
It does work for the enemy, but not the player, working on that atm. Knockback doesn't work anymore
- shoresbeep
- Scratcher
1000+ posts
Tairuahxe (Working Title) | RPG
I think I fixed it. Knockback doesn't work anymore
- braxbroscratcher
- Scratcher
1000+ posts
Tairuahxe (Working Title) | RPG
Yeah, use repeat until not (while blocks) in general though, you shouldn't use forever blocks.
- shoresbeep
- Scratcher
1000+ posts
Tairuahxe (Working Title) | RPG
Going to start replacing them now.Yeah, use repeat until not (while blocks) in general though, you shouldn't use forever blocks.
- ScriptedAwesome
- Scratcher
1000+ posts
Tairuahxe (Working Title) | RPG
Use forever loops please, it's laggy.
- shoresbeep
- Scratcher
1000+ posts
Tairuahxe (Working Title) | RPG
forever loops aren't ever a good idea for that… Use forever loops please, it's laggy.
- ScriptedAwesome
- Scratcher
1000+ posts
Tairuahxe (Working Title) | RPG
Why not?forever loops aren't ever a good idea for that… Use forever loops please, it's laggy.
- shoresbeep
- Scratcher
1000+ posts
Tairuahxe (Working Title) | RPG
they don't allow for variability, so if you only want to run something until a certain point, you can't with forever blocks.Why not?forever loops aren't ever a good idea for that… Use forever loops please, it's laggy.
- ScriptedAwesome
- Scratcher
1000+ posts
Tairuahxe (Working Title) | RPG
they don't allow for variability, so if you only want to run something until a certain point, you can't with forever blocks.Why not?forever loops aren't ever a good idea for that… Use forever loops please, it's laggy.
forever
if <> then
stop [this script v]
end
end
- shoresbeep
- Scratcher
1000+ posts
Tairuahxe (Working Title) | RPG
The problem then becomes the memory allocation, with a max of 50 mBforever
if <> then
stop [this script v]
end
end
- braxbroscratcher
- Scratcher
1000+ posts
Tairuahxe (Working Title) | RPG
you also can't make a second thing happen separately afterwards. repeat until and repeat until not are betterThe problem then becomes the memory allocation, with a max of 50 mBforever
if <> then
stop [this script v]
end
end