Posted 04 May 2013 - 06:21 PM
How can I do a print code that stays forever on the screen? And how can I make it so the person can't do CTRL + T ?
Thanks for the help :D/>
Thanks for the help :D/>
OldPullEvent = os.pullEvent --backup the os.pullEvent
os.pullEventRaw -- override the os.pullEvent
--Put this code at the top of your program
--If you want to disable the anti-terminating, do this:
os.pullEvent = OldPullEvent
Second line should beWhat did you mean with "forever"?
the anti-terminate:OldPullEvent = os.pullEvent --backup the os.pullEvent os.pullEventRaw -- override the os.pullEvent --Put this code at the top of your program --If you want to disable the anti-terminating, do this: os.pullEvent = OldPullEvent
I hope It's helpfull for you :)/>/>
os.pullEvent = os.pullEventRaw
while true do
sleep(60)
end