Using The Write Command


Twinbee

Tales From The Big Room
Joined
Jan 1, 2004
Messages
598
Age
37
Location
Essex, England
Website
Visit site
Ok... Really, really silly question here, again.

How can I get rid of something i've used the WRITE or WRITE_INT command with? using LET_ME_ALONE(); Doesn't seem to get rid of written text... :huh:
 
You can get the id number of the text this way:

textid=write(...);

and then get rid of it using this:

delete_text(textid);

It's that easy! :D (If I understood you right)

PD: and the let_me_alone()-style command for texts is just delete_text(all_text);
 
Back
Top