Puzzling Posted January 10, 2025 Report Posted January 10, 2025 (edited) I LOVE the /fdo command. I am happy it finally got implemented. I think two small changes could make it even better! 1) Be able to manually make new lines instead of randomly doing it based on length so words do not get chopped off 2) Do not trim white spaces in the messages, that way we can format the text better with pricing, etc. --Example of point 1-- /fdo Yo this is a cool fdo! \n This is line two \n text @ 123-457 for more! Then it would output as follows: Yo this is a cool fdo! This is line two text @ 123-4567 --Example of point 2-- (Once you know how many characters can be on one line you can add spaces to make it go to new lines without the above, it would just make it easier) /fdo New Food Menu!! fries $1.00 hotdog $2.00 cheeseburger $3.00 New Food Menu!! fries $1.00 hotdog $2.00 cheeseburger $3.00 Right now it trims the spaces and would look like the following New Food Menu!! fri es $1.00 hotdog $2.0 0 cheeseburger $3.00 Edited January 10, 2025 by Puzzling Quote
Ash Posted January 10, 2025 Report Posted January 10, 2025 used to be able to use <br> or <br /> to line break an fdo, unsure if you still can. you can replicate the behaviour of point 2 using ~ instead of space, since it trims that trying to match color codes 1 Quote
SquirtleSquad Posted January 11, 2025 Report Posted January 11, 2025 15 hours ago, Ash said: used to be able to use <br> or <br /> to line break an fdo, unsure if you still can. you can replicate the behaviour of point 2 using ~ instead of space, since it trims that trying to match color codes You can. /fdo Test <br /> Line 2 /fdo Test<br />Line 2<br />Line3<br />Line 4 1 Quote
Puzzling Posted January 11, 2025 Author Report Posted January 11, 2025 :ooooo ty for this knowledge! Quote
Puzzling Posted January 15, 2025 Author Report Posted January 15, 2025 One thing I did notice while trying <br /> and <b> while they work, they add characters to the lines so the spacing is still really funky looking because it must count how many characters there are then split it before removing the break line and bold identifiers Once I get home from work ill post screenshots of the issue Quote