Advertisement
BruceWplays

xpcall-test

Nov 9th, 2022
969
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.17 KB | None | 0 0
  1. function bad(b)
  2.     while true do
  3.         sleep(0)
  4.     end
  5. end
  6.  
  7. function myerrorhandler(err)
  8.     print( "ERROR:",err)
  9.  end
  10.  
  11.  
  12. xpcall(bad, myerrorhandler)
  13. print("good")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement