1
QB64 Discussion / Re: Star Wars Text
« on: March 28, 2019, 02:23:15 pm »Yep! Same cruddy results with scrolling text example:Code: QB64: [Select]
' Star Wars Episode V: The Empire Strikes Back opening crawl? ' http://www.galaxyfaraway.com/gfa/2006/02/what-is-the-text-of-the-star-wars-episode-v-the-empire-strikes-back-opening-crawl/ _DEST swt& sw$ = "It is a dark time for the Rebellion." + nl$ sw$ = sw$ + "Although the Death Star has been" + nl$ sw$ = sw$ + "destroyed, Imperial troops have driven" + nl$ sw$ = sw$ + "the Rebel forces from their hidden base" + nl$ sw$ = sw$ + "and pursued them across the galaxy." + nl$ sw$ = sw$ + nl$ + nl$ sw$ = sw$ + "Evading the dreaded Imperial Starfleet," + nl$ sw$ = sw$ + "a group of freedom fighters led by Luke" + nl$ sw$ = sw$ + "Skywalker has established a new secret" + nl$ sw$ = sw$ + "base on the remote ice world of Hoth." + nl$ sw$ = sw$ + nl$ + nl$ sw$ = sw$ + "The evil lord Darth Vader, obsessed with" + nl$ sw$ = sw$ + "finding young Skywalker, has dispatched" + nl$ sw$ = sw$ + "thousands of remote probes into the" + nl$ sw$ = sw$ + "far reaches of space.... " + nl$ PRINT sw$ _DEST 0 ' Disaster!!!!!!!!!!! '_MAPTRIANGLE [{_SEAMLESS}] (sx1, sy1)-(sx2, sy2)-(sx3, sy3), source& TO (dx1, dy1)-(dx2, dy2)-(dx3, dy3)[, destination&][{_SMOOTH|_SMOOTHSHRUNK|_SMOOTHSTRETCHED}]] _MAPTRIANGLE (319, y)-(0, y + 319)-(319, y + 319), swt& TO(449, 0)-(0, 699)-(799, 699), 0, _SMOOTHSHRUNK _LIMIT 15
maybe something along the lines of calling out the strings each seperatly like how you did there but instead of maptriangle a transitioning code.