Oml thank you!!! You saved me a lot of wrist-breaking! Let me know if you need anything
I just copied and pasted it. Nothing much.
Ooh I’ll have to test that out! Copying pixel by pixel is a pain!
I wasn’t aware you could copy and paste… I wish I did! Lol
I just wish there was an easier way to flip it.
Yes! A 90 degree flip in editor would be amazing
You can do flips across an axis easily in code with one block (blocks) or one line (JavaScript). For rotations, use an index loop for each pixel into a new image.
Rotate 90 degrees - (x, y) to (-y, x)
I’ll send the code (it is there now).
you can use that square tool that you use to move the sprite and just ctrl + c than when you are in a different sprite just ctrl + v
Quick question: When you use "ask for a string “name” ", how do you make it so whenever a npc refers to the player they use the entered string?
I would store the output from ask for string
in a variable, probably save it with the settings extension too, and just concatenate the variable with the text. Like instead of Hello there, person!
, you would do join("Hello there, ", name, "!")
How would I do this part?
Like the new Halloween-themed PHP!
OMG, that was almost at the exact same time!
Wow we replied at the same time.
And again.
I used Google Spreadsheets to flip an image from right to left.
- Copy the image code in the ‘javascript’ view of your code – the stuff between ` marks.
- Start a new google spreadsheet by going to http://spreadsheet.new
- Paste into cell A1. It should full up a few rows with characters, one per pixel of your image.
- Paste this code into cell B1:
=ArrayFormula(IFERROR(PROPER(CONCATENATE(MID(A2,LEN(A2)-ROW(INDIRECT(“1:”&LEN(A2)))+1,1))),""))
That should do it. Copy everything from column B, and paste it back into your ‘javascript’ view of your code, replacing the original with this new flipped version.
This doesn’t seem to work for me, but if it works for you, could you do it for this?: