This post is by a banned member (Zentred) - Unhide
OP 22 August, 2022 - 01:31 PM
(This post was last modified: 22 August, 2022 - 01:31 PM by Zentred.)
Reply
https://prnt.sc/r122LRaIdeKS this is what i mean by UI
i know i can clear console and reprint it, but it causes flashing (and flashes are laggy when loaded big combo or high threads)
how to do this without clearing the console like? @ ANG you know this surely ?
This post is by a banned member (s0meh00ks) - Unhide
23 August, 2022 - 11:22 AM
Reply
(22 August, 2022 - 01:31 PM)Zentred Wrote: Show Morehttps://prnt.sc/r122LRaIdeKS this is what i mean by UI
i know i can clear console and reprint it, but it causes flashing (and flashes are laggy when loaded big combo or high threads)
how to do this without clearing the console like? @ ANG you know this surely ? flushing the text
This post is by a banned member (Zentred) - Unhide
OP 23 August, 2022 - 11:33 AM
Reply
(23 August, 2022 - 11:22 AM)s0meh00ks Wrote: Show More (22 August, 2022 - 01:31 PM)Zentred Wrote: Show Morehttps://prnt.sc/r122LRaIdeKS this is what i mean by UI
i know i can clear console and reprint it, but it causes flashing (and flashes are laggy when loaded big combo or high threads)
how to do this without clearing the console like? @ ANG you know this surely ? flushing the text
if you could explain what you mean by that
This post is by a banned member (s0meh00ks) - Unhide
23 August, 2022 - 12:12 PM
Reply
(23 August, 2022 - 11:33 AM)Zentred Wrote: Show More (23 August, 2022 - 11:22 AM)s0meh00ks Wrote: Show More (22 August, 2022 - 01:31 PM)Zentred Wrote: Show Morehttps://prnt.sc/r122LRaIdeKS this is what i mean by UI
i know i can clear console and reprint it, but it causes flashing (and flashes are laggy when loaded big combo or high threads)
how to do this without clearing the console like? @ ANG you know this surely ? flushing the text
if you could explain what you mean by that not gonna lie i know what flushing it but i never used it so i can't explain the syntax. It's like replacing the text u already have by another yk
This post is by a banned member (Zentred) - Unhide
OP 23 August, 2022 - 12:28 PM
Reply
(23 August, 2022 - 12:12 PM)s0meh00ks Wrote: Show More (23 August, 2022 - 11:33 AM)Zentred Wrote: Show More (23 August, 2022 - 11:22 AM)s0meh00ks Wrote: Show Moreflushing the text
if you could explain what you mean by that not gonna lie i know what flushing it but i never used it so i can't explain the syntax. It's like replacing the text u already have by another yk flushing can work, but i don't know how to make it work for multiple lines
same with carriage return, it just works for only 1 line
This post is by a banned member (sc3ntedfeet) - Unhide
26 August, 2022 - 12:17 AM
Reply
(22 August, 2022 - 01:31 PM)Zentred Wrote: Show Morehttps://prnt.sc/r122LRaIdeKS this is what i mean by UI
i know i can clear console and reprint it, but it causes flashing (and flashes are laggy when loaded big combo or high threads)
how to do this without clearing the console like? @ ANG you know this surely ?
print(variable_name, end='\r')
This post is by a banned member (Zentred) - Unhide
OP 26 August, 2022 - 12:47 AM
Reply
(26 August, 2022 - 12:17 AM)sc3ntedfeet Wrote: Show More (22 August, 2022 - 01:31 PM)Zentred Wrote: Show Morehttps://prnt.sc/r122LRaIdeKS this is what i mean by UI
i know i can clear console and reprint it, but it causes flashing (and flashes are laggy when loaded big combo or high threads)
how to do this without clearing the console like? @ ANG you know this surely ?
print(variable_name, end='\r')
this works for a single line, i am looking for multiple lines
This post is by a banned member (sc3ntedfeet) - Unhide
26 August, 2022 - 12:59 AM
(This post was last modified: 26 August, 2022 - 01:00 AM by sc3ntedfeet. Edited 1 time in total.)
Reply
(26 August, 2022 - 12:47 AM)Zentred Wrote: Show More (26 August, 2022 - 12:17 AM)sc3ntedfeet Wrote: Show More (22 August, 2022 - 01:31 PM)Zentred Wrote: Show Morehttps://prnt.sc/r122LRaIdeKS this is what i mean by UI
i know i can clear console and reprint it, but it causes flashing (and flashes are laggy when loaded big combo or high threads)
how to do this without clearing the console like? @ ANG you know this surely ?
print(variable_name, end='\r')
this works for a single line, i am looking for multiple lines
Include them all in one big string, or u can do the same thing but with
Code: flush=True
instead of
end = '\r'
|